:root {
  --bg: #090909;
  --surface: #111112;
  --surface-raised: #171718;
  --text: #ffffff;
  --muted: #b3b3b3;
  --dim: #77777a;
  --accent: #ff2d8f;
  --accent-soft: rgba(255, 45, 143, 0.13);
  --border: rgba(255, 45, 143, 0.62);
  --radius: 18px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  --glow: 0 0 0 1px rgba(255, 45, 143, 0.22), 0 8px 24px rgba(255, 45, 143, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link { position: fixed; z-index: 10; top: -50px; left: 16px; padding: 10px 14px; border-radius: 10px; background: var(--text); color: var(--bg); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }
.page-shell { width: min(100%, 520px); margin: 0 auto; padding: 48px 20px 32px; }
.site-header { display: grid; justify-items: center; text-align: center; margin-bottom: 40px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: min(280px, 78vw); height: auto; }
.tagline { margin: 10px 0 0; color: var(--muted); font-size: .8125rem; }
.quick-links, .news-list { display: grid; gap: 12px; }
.quick-card { display: grid; grid-template-columns: 44px minmax(0, 1fr) 24px; align-items: center; gap: 14px; min-height: 88px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,.025); box-shadow: var(--shadow), 0 0 18px rgba(255,45,143,.05); transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease; }
.quick-card:hover { transform: translateY(-3px); background: var(--surface-raised); box-shadow: var(--shadow), var(--glow); }
.quick-card:focus-visible, .button:focus-visible, .article-link:focus-visible, .social-links a:focus-visible, .legal-links a:focus-visible, .view-all:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }
.card-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; color: var(--accent); background: var(--accent-soft); }
.card-icon svg { width: 22px; height: 22px; }
.card-copy { display: grid; gap: 4px; }
.card-copy strong { font-size: .9375rem; line-height: 1.25; }
.card-copy small { color: var(--muted); font-size: .75rem; line-height: 1.35; }
.arrow { color: var(--muted); transition: transform .25s ease, color .25s ease; }
.arrow svg, .article-link svg { width: 20px; height: 20px; }
.quick-card:hover .arrow { color: var(--accent); transform: translateX(3px); }
.action-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 56px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; border: 1px solid var(--accent); border-radius: 16px; font-size: .8125rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease; }
.button:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.button-outline { background: #050505; }
.button-primary { background: var(--accent); border-color: var(--accent); }
.button-primary:hover { background: #ff479d; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 16px; }
.eyebrow { margin: 0 0 4px; color: var(--accent); font-size: .6875rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: 1.25rem; letter-spacing: -.025em; }
.view-all { flex: 0 0 auto; color: var(--muted); font-size: .75rem; font-weight: 700; white-space: nowrap; transition: color .2s; }
.view-all:hover { color: var(--accent); }
.view-all span { color: var(--accent); font-size: 1rem; }
.article-card { display: grid; grid-template-columns: 92px minmax(0, 1fr) 24px; gap: 12px; align-items: center; padding: 10px; min-height: 112px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); transition: border-color .22s ease, transform .22s ease; }
.article-card:hover { transform: translateY(-2px); border-color: rgba(255,45,143,.48); }
.article-card img { width: 92px; height: 92px; border-radius: 11px; object-fit: cover; background: #222; }
.article-content { min-width: 0; }
.article-date { margin-bottom: 5px; color: var(--dim); font-size: .6875rem; font-weight: 600; }
.article-content h2 { margin-bottom: 5px; font-size: .875rem; line-height: 1.3; }
.article-content > p:last-child { display: -webkit-box; overflow: hidden; margin-bottom: 0; color: var(--muted); font-size: .6875rem; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.article-link { display: grid; place-items: center; width: 28px; height: 36px; border-radius: 9px; color: var(--muted); transition: color .2s, background-color .2s, transform .2s; }
.article-link:hover { color: var(--accent); background: var(--accent-soft); transform: translateX(2px); }
.site-footer { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); text-align: center; }
.social-links, .legal-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 20px; }
.social-links a, .legal-links a { color: var(--muted); font-size: .75rem; transition: color .2s; }
.social-links a:hover, .legal-links a:hover { color: var(--accent); }
.legal-links { margin-top: 20px; gap: 10px 16px; }
.site-footer p { margin: 16px 0 0; color: var(--dim); font-size: .6875rem; }
.toast { position: fixed; z-index: 5; bottom: 18px; left: 50%; width: max-content; max-width: calc(100% - 32px); padding: 10px 14px; border: 1px solid rgba(255,45,143,.6); border-radius: 12px; background: #151515; box-shadow: var(--glow); color: var(--text); font-size: .75rem; opacity: 0; pointer-events: none; transform: translate(-50%, 12px); transition: opacity .2s, transform .2s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 640px) { .page-shell { padding-top: 64px; padding-bottom: 48px; } .site-header { margin-bottom: 48px; } .quick-card { min-height: 94px; } .article-card { grid-template-columns: 108px minmax(0, 1fr) 28px; } .article-card img { width: 108px; height: 92px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }
