/* ==========================================================================
   Footy Breakdown Daily — shared stylesheet
   Consolidated from 37 previously-duplicated inline <style> blocks
   (index.html, world-cup.html, articles.html, contact.html, terms.html,
   privacy.html, and 33 article pages under /articles/).

   Token note: the site previously had THREE slightly-drifted token
   vocabularies (main pages, article template, legal pages) using different
   variable names and, in a couple of cases, different hex values for the
   same intended color (e.g. --navy-card #0B2142 vs --navy-panel #0A2238;
   pure #FFFFFF vs the documented brand white #F7FAFD). This file defines one
   canonical set and aliases the legacy names to it, so every page renders
   from the same values with zero drift going forward.
   ========================================================================== */

:root {
  /* Canonical brand tokens */
  --navy-night: #03132A;
  --navy-panel: #0A2238;
  --panel: #102C46;
  --panel-line: #1C3C58;
  --floodlight: #F7FAFD;
  --muted: #7E93AC;
  --green: #6CC03A;
  --glow: #5FA8E0;
  --crimson: #E33C4E;
  --gold: #F5C518;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-head: 'Big Shoulders', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --maxw: 1180px;
  --radius: 6px;

  /* z-index scale */
  --z-sticky: 40;
  --z-header: 50;

  /* Legacy aliases (article template + legal pages previously used these
     names). Kept so existing component CSS below doesn't need a mass
     var()-rename across markup; all resolve to the canonical tokens above. */
  --navy: var(--navy-night);
  --navy-card: var(--navy-panel);
  --navy-card-2: var(--panel);
  --blue: var(--glow);
  --white: var(--floodlight);
  --dim: rgba(247, 250, 253, 0.62);
  --dim-2: rgba(247, 250, 253, 0.34);
  --hairline: rgba(247, 250, 253, 0.10);
  --font-sub: var(--font-head);
}

/* ── Reset & base ─────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--navy-night);
  color: var(--floodlight);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--glow); text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(108,192,58,0.06), transparent 60%),
    radial-gradient(ellipse 900px 500px at 110% 10%, rgba(95,168,224,0.05), transparent 60%);
  z-index: 0;
}

/* ── Eyebrow ──────────────────────────────────────────────────────────────
   Reserved for the 1-2 spots on the whole site where a tracked-caps kicker
   earns its place (see index.html hero-tag, world-cup.html page header) —
   not universal section scaffolding. Most section-heads now go headline-only.
   ────────────────────────────────────────────────────────────────────── */
.eyebrow, .legal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tick-color, var(--glow));
  flex-shrink: 0;
}
.eyebrow--green { --tick-color: var(--green); color: #BCE3A0; }
.eyebrow--crimson { --tick-color: var(--crimson); color: #E0A2AA; }
.eyebrow--glow { --tick-color: var(--glow); color: #BBD9F2; }

/* ── Header / nav (index, world-cup, articles, contact) ──────────────── */
header.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(11,15,13,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-line);
}
nav.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.logo img { width: 38px; height: 38px; border-radius: 50%; display: block; object-fit: cover; object-position: center 25%; }
.logo span.full-name { display: none; }
@media (min-width: 540px) {
  .logo span.full-name { display: inline; color: var(--muted); font-size: 14px; font-family: var(--font-head); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
}
.nav-links {
  display: none;
  gap: 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links a { color: var(--muted); transition: color .15s ease; }
.nav-links a:hover { color: var(--floodlight); }
@media (min-width: 760px) { .nav-links { display: flex; } }
.nav-right { display: flex; align-items: center; gap: 10px; }

.live-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-night);
  background: var(--green);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--navy-night);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.live-pill--next {
  background: var(--navy-panel);
  color: var(--muted);
  border: 1px solid var(--panel-line);
}
.live-pill--next .dot { display: none; }

/* Article-page live-pill sits inline in a dark hero; slightly different
   base colors than the main-site pill, same states/behavior. */
.article-hero .live-pill {
  color: var(--navy);
  margin-left: 12px;
  vertical-align: middle;
}
.article-hero .live-pill .dot { background: var(--navy); }
.article-hero .live-pill--next {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Mobile menu toggle — 44x44 touch target (was 36x36) */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--floodlight); }
@media (min-width: 760px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-panel);
  border-bottom: 1px solid var(--panel-line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 20px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--panel-line);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.mobile-menu a:last-child { border-bottom: none; }
@media (min-width: 760px) { .mobile-menu { display: none !important; } }

.ticker-bar {
  background: var(--navy-panel);
  border-bottom: 1px solid var(--panel-line);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker-scroll 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}
.ticker-track span.tag {
  color: var(--crimson);
  font-weight: 600;
  margin-right: 8px;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ── Shared footer (index, world-cup, articles, contact) ─────────────── */
footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--panel-line);
}
footer .logo { margin-bottom: 10px; }
footer .foot-links { display: flex; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
footer .foot-links a { min-height: 44px; display: inline-flex; align-items: center; }

/* Page header used by articles.html / world-cup.html / contact.html */
.page-head, .page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--panel-line);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 56px);
  margin: 10px 0 8px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.page-dek {
  color: var(--muted);
  font-size: 15px;
  max-width: 50ch;
}

@media (max-width: 480px) {
  .page-head, .page-header { padding: 32px 0 24px; }
  .wrap { padding: 0 16px; }
}

/* ==========================================================================
   HOME (index.html)
   ========================================================================== */
.hero {
  position: relative;
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--panel-line);
}
.hero-grid { display: block; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  font-size: clamp(40px, 7vw, 72px);
  margin: 14px 0 12px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-dek {
  color: var(--muted);
  font-size: 16px;
  max-width: 46ch;
  margin-bottom: 20px;
}
.scorebug {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-family: var(--font-mono);
  margin-bottom: 24px;
}
.scorebug .team { font-weight: 600; font-size: 14px; }
.scorebug .score { font-size: 18px; font-weight: 600; color: var(--green); }
.scorebug .status { font-size: 11px; color: var(--glow); letter-spacing: 0.06em; }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--navy-night);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform .12s ease;
}
.cta:hover { transform: translateY(-1px); }

.section { padding: 48px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  margin: 6px 0 0;
  text-wrap: balance;
}
.section-link {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--glow);
  white-space: nowrap;
}

.latest-grid { display: grid; gap: 22px; }
@media (min-width: 860px) { .latest-grid { grid-template-columns: 1.4fr 1fr; } }
.feature-card {
  background: var(--navy-panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 8px;
  line-height: 1.1;
}
.feature-card p { color: var(--muted); margin: 0; font-size: 14.5px; }

.latest-list { display: flex; flex-direction: column; gap: 0; }
.latest-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--panel-line);
  align-items: flex-start;
}
.latest-row:first-child { padding-top: 0; }
.latest-row .thumb {
  width: 64px; height: 64px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #16304a, #03101F);
  border: 1px solid var(--panel-line);
}
.latest-row h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  margin: 0 0 6px;
  line-height: 1.25;
}
.latest-row time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.score-strip-wrap { overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.score-strip { display: flex; gap: 14px; }
.match-card {
  flex: 0 0 200px;
  background: var(--navy-panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 14px;
}
.match-card .status-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.match-card .status { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; padding: 3px 7px; border-radius: 4px; }
.status.live { background: rgba(108,192,58,0.15); color: var(--green); }
.status.ft { background: rgba(154,163,158,0.12); color: var(--muted); }
.status.upcoming { background: rgba(95,168,224,0.12); color: var(--glow); }
.match-card .teams { font-family: var(--font-mono); font-size: 14px; }
.match-card .team-row { display: flex; justify-content: space-between; padding: 3px 0; }
.match-card .team-row .sc { font-weight: 600; color: var(--floodlight); }
.match-card .comp { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }

@keyframes goalFlash {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(108,192,58,0); }
  30% { transform: scale(1.04); box-shadow: 0 0 24px 6px rgba(108,192,58,0.6); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(108,192,58,0); }
}
.match-card.goal-flash { animation: goalFlash 1.6s ease-out; }
@media (prefers-reduced-motion: reduce) { .match-card.goal-flash { animation: none; } }

.trend-list { display: flex; flex-direction: column; }
.trend-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--panel-line);
}
.trend-row:first-child { padding-top: 0; }
.trend-rank { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--panel-line); }
.trend-row h4 { font-family: var(--font-head); font-weight: 600; font-size: 16px; margin: 0; }
.heat-bar { width: 70px; height: 5px; background: var(--panel-line); border-radius: 3px; overflow: hidden; }
.heat-bar i { display: block; height: 100%; background: var(--crimson); }

.transfer-band {
  background: var(--navy-panel);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  padding: 14px 0;
  overflow: hidden;
}
.transfer-label {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--navy-night);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  margin: 0 20px 10px;
}
.marquee-wrap { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: ticker-scroll 70s linear infinite;
  font-family: var(--font-mono);
  font-size: 13.5px;
}
.marquee-track .arrow { color: var(--glow); margin: 0 8px; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

.wc-stats-header { margin-bottom: 14px; }
.wc-stats-header h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 4px 0 0; color: var(--floodlight); }
.wc-section-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin: 12px 0 6px;
}
.wc-scorer-row {
  display: grid; grid-template-columns: 18px 1fr auto auto; align-items: center; gap: 8px;
  padding: 5px 0; border-bottom: 1px solid var(--panel-line); font-size: 12.5px;
}
.wc-scorer-row:last-child { border-bottom: none; }
.wc-scorer-rank { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.wc-scorer-name { font-family: var(--font-head); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wc-scorer-team { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.wc-scorer-val { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--green); min-width: 18px; text-align: right; }
.wc-scorer-val.wc-val-assists { color: var(--glow); }
.wc-totals { display: flex; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--panel-line); }
.wc-total-item { flex: 1; background: rgba(255,255,255,0.04); border-radius: 6px; padding: 10px; text-align: center; }
.wc-total-num { display: block; font-family: var(--font-mono); font-weight: 700; font-size: 22px; color: var(--green); }
.wc-total-label { display: block; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }
.wc-next-line { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--panel-line); }
.wc-next-line b { color: var(--floodlight); }
.wc-hub-link { display: block; margin-top: 10px; font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--glow); letter-spacing: 0.03em; }
.wc-hub-link:hover { color: var(--floodlight); }
.wc-stat-loading { color: var(--muted); font-size: 13px; }

.wc-bk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.wc-bk-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--panel-line);
  border-radius: 6px; padding: 9px 10px; text-decoration: none; display: block;
  transition: border-color .15s;
}
.wc-bk-card:hover { border-color: var(--glow); }
.wc-bk-card-meta {
  font-family: var(--font-mono); font-size: 9px; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 7px;
}
.wc-bk-row { display: flex; align-items: center; gap: 5px; padding: 3px 0; border-bottom: 1px solid var(--panel-line); }
.wc-bk-row:last-of-type { border-bottom: none; }
.wc-bk-flag { font-size: 13px; flex-shrink: 0; }
.wc-bk-name { flex: 1; font-family: var(--font-head); font-weight: 600; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wc-bk-sc { font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--floodlight); }
.wc-bk-row--win .wc-bk-name { color: var(--green); }
.wc-bk-row--win .wc-bk-sc { color: var(--green); }
.wc-bk-row--dim .wc-bk-name { color: var(--muted); }
.wc-bk-badge { margin-top: 6px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.04em; padding: 2px 6px; border-radius: 3px; display: inline-block; }
.wc-bk-badge--ft { background: rgba(154,163,158,0.12); color: var(--muted); }
.wc-bk-badge--pens { background: rgba(95,168,224,0.12); color: var(--glow); }
.wc-bk-badge--upcoming { background: rgba(95,168,224,0.12); color: var(--glow); }

.mini-bracket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.mbk-card { background: var(--navy-panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 12px; }
.mbk-round { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.mbk-team { display: flex; align-items: center; gap: 7px; padding: 4px 0; font-size: 13px; border-bottom: 1px solid var(--panel-line); }
.mbk-team:last-of-type { border-bottom: none; }
.mbk-flag { font-size: 14px; flex-shrink: 0; width: 20px; }
.mbk-name { flex: 1; font-family: var(--font-head); font-weight: 600; font-size: 13px; }
.mbk-score { font-family: var(--font-mono); font-weight: 700; font-size: 13px; }
.mbk-team--winner .mbk-name { color: var(--green); }
.mbk-team--winner .mbk-score { color: var(--green); }
.mbk-team--tbd .mbk-name { color: var(--muted); }
.mbk-badge { margin-top: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; padding: 2px 7px; border-radius: 3px; display: inline-block; }
.mbk-badge--ft { background: rgba(154,163,158,0.12); color: var(--muted); }
.mbk-badge--pens { background: rgba(95,168,224,0.12); color: var(--glow); }
.mbk-badge--upcoming { background: rgba(95,168,224,0.12); color: var(--glow); }
.mbk-badge--tbd { background: rgba(255,255,255,0.05); color: var(--muted); }

@media (max-width: 480px) {
  .hero { padding: 32px 0 28px; }
  .section { padding: 32px 0; }
}

/* ==========================================================================
   ARTICLES INDEX (articles.html)
   ========================================================================== */
.article-list { padding: 32px 0 60px; }
.article-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--panel-line);
  align-items: flex-start;
}
.article-row:first-child { padding-top: 0; }
.article-row .thumb {
  width: 88px; height: 88px;
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #16304a, #03101F);
  border: 1px solid var(--panel-line);
}
.article-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-row .tag-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--glow);
  background: rgba(95,168,224,0.12);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.article-row .tag-pill.transfer { color: var(--crimson); background: rgba(227,60,78,0.12); }
.article-row h3 { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin: 0 0 6px; line-height: 1.2; }
.article-row p { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.article-row time { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

@media (max-width: 480px) {
  .article-row .thumb { width: 64px; height: 64px; }
}

/* ==========================================================================
   CONTACT (contact.html)
   ========================================================================== */
.contact-section { padding: 48px 0 80px; }
.contact-form-wrap { max-width: 600px; }
.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--floodlight);
}
.form-label .required-mark { color: var(--crimson); margin-left: 4px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  background: var(--navy-panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color .15s ease;
}
.radio-option:hover { border-color: var(--glow); }
.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--panel-line);
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.radio-option input[type="radio"]:checked {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 3px var(--navy-panel);
}
.radio-option input[type="radio"]:checked + span { color: var(--floodlight); }
.radio-option span { font-family: var(--font-body); font-size: 14.5px; color: var(--muted); transition: color .15s ease; }
.text-input {
  width: 100%;
  background: var(--navy-panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--floodlight);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease;
}
.text-input:focus { border-color: var(--glow); }
.text-input::placeholder { color: var(--muted); }
textarea.text-input { resize: vertical; min-height: 140px; }
.success-msg {
  display: none;
  background: rgba(108,192,58,0.1);
  border: 1px solid rgba(108,192,58,0.35);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #BCE3A0;
  font-size: 15px;
  margin-top: 24px;
}

@media (max-width: 480px) {
  .contact-section { padding: 32px 0 60px; }
}

/* ==========================================================================
   LEGAL PAGES (terms.html, privacy.html)
   ========================================================================== */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  margin-bottom: 10px;
  text-wrap: balance;
}
.legal-updated { font-family: var(--font-mono); font-size: 12px; color: var(--dim); margin-bottom: 40px; }
.legal-intro {
  font-size: 17px; line-height: 1.7; color: rgba(247,250,253,0.88); margin-bottom: 40px;
  padding: 20px 24px; background: var(--panel); border: 1px solid var(--hairline); border-radius: 8px;
}
.legal-section { margin-bottom: 36px; }
.legal-section h2 {
  font-family: var(--font-sub); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline);
}
.legal-section p { font-size: 16px; line-height: 1.72; color: rgba(247,250,253,0.85); margin-bottom: 14px; text-wrap: pretty; }
.legal-section ul { padding-left: 20px; margin-bottom: 14px; }
.legal-section li { font-size: 16px; line-height: 1.72; color: rgba(247,250,253,0.85); margin-bottom: 8px; }
.ai-callout { background: rgba(108,192,58,0.08); border: 1px solid rgba(108,192,58,0.25); border-radius: 10px; padding: 18px 22px; margin-bottom: 16px; }
.ai-callout p { color: rgba(247,250,253,0.9); font-size: 15.5px; margin: 0; }
.ai-callout strong { color: var(--green); }
.data-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 14.5px; }
.data-table th { text-align: left; font-family: var(--font-sub); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); padding: 10px 14px; border-bottom: 1px solid var(--hairline); }
.data-table td { padding: 12px 14px; border-bottom: 1px solid rgba(247,250,253,0.06); color: rgba(247,250,253,0.82); vertical-align: top; line-height: 1.5; }
.data-table tr:last-child td { border-bottom: none; }
.legal-footer { border-top: 1px solid var(--hairline); margin-top: 60px; padding-top: 32px; display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.legal-footer a { font-family: var(--font-sub); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); min-height: 44px; display: inline-flex; align-items: center; }
.legal-footer a:hover { color: var(--blue); text-decoration: none; }
.legal-footer .copy { font-size: 12px; color: var(--dim); opacity: .6; margin-left: auto; }

nav.legal-nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; border-bottom: 1px solid var(--hairline); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-sub); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; color: var(--white); text-transform: uppercase; }
.nav-logo img { width: 36px; height: 36px; }
.nav-back { font-family: var(--font-sub); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); min-height: 44px; display: inline-flex; align-items: center; }
.nav-back:hover { color: var(--blue); text-decoration: none; }

/* ==========================================================================
   WORLD CUP HUB (world-cup.html)
   ========================================================================== */
.date-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--floodlight);
  margin: 0 0 14px;
  padding-top: 28px;
}
.date-heading:first-child { padding-top: 0; }

.match-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.empty-state { color: var(--muted); font-family: var(--font-mono); font-size: 14px; padding: 20px 0; }

/* Standings — overflow-safe on narrow viewports (mirrors the .hist-table
   column-hiding pattern below, since this table has no room to hide columns) */
.standings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.standings-group { background: var(--navy-panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 16px; }
.standings-group h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 15px; margin: 0 0 10px;
  color: var(--green); text-transform: uppercase; letter-spacing: 0.04em;
}
.standings-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.standings-table { width: 100%; min-width: 260px; border-collapse: collapse; font-family: var(--font-mono); font-size: 12.5px; }
table.standings-table th { text-align: left; color: var(--muted); font-weight: 500; padding: 4px 6px; border-bottom: 1px solid var(--panel-line); white-space: nowrap; }
table.standings-table td { padding: 5px 6px; border-bottom: 1px solid var(--panel-line); }
table.standings-table td.team-name { font-family: var(--font-body); font-weight: 500; }
table.standings-table td.pts { font-weight: 700; color: var(--floodlight); }

/* ── Knockout bracket ─────────────────────────────────────────────────── */
.bracket-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.bk-tab {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 16px; min-height: 44px;
  border-radius: 4px; border: 1px solid var(--panel-line);
  background: transparent; color: var(--muted); cursor: pointer;
  transition: all .15s;
}
.bk-tab:hover:not(:disabled) { color: var(--floodlight); border-color: var(--glow); }
.bk-tab.active, .bk-tab[aria-selected="true"] { background: var(--green); border-color: var(--green); color: var(--navy-panel); }
.bk-tab:disabled { opacity: 0.35; cursor: not-allowed; }
.bk-tab:focus-visible { outline: 2px solid var(--glow); outline-offset: 2px; }

.bracket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.bk-card { background: var(--navy-panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 14px; position: relative; }
.bk-card--live { border-color: var(--green); }
.bk-meta { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; display: flex; justify-content: space-between; }
.bk-meta .bk-date { color: var(--glow); }
.bk-team { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-family: var(--font-mono); font-size: 14px; border-bottom: 1px solid var(--panel-line); }
.bk-team:last-of-type { border-bottom: none; }
.bk-flag { font-size: 16px; flex-shrink: 0; width: 22px; }
.bk-name { flex: 1; font-weight: 600; font-size: 13px; font-family: var(--font-head); }
.bk-score { font-weight: 700; font-size: 15px; color: var(--floodlight); min-width: 14px; text-align: right; }
.bk-team--winner .bk-name { color: var(--green); }
.bk-team--winner .bk-score { color: var(--green); }
.bk-team--tbd .bk-name { color: var(--muted); }
.bk-status { margin-top: 10px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 4px; display: inline-block; }
.bk-status--ft { background: rgba(154,163,158,0.12); color: var(--muted); }
.bk-status--pens { background: rgba(95,168,224,0.12); color: var(--glow); }
.bk-status--upcoming { background: rgba(95,168,224,0.12); color: var(--glow); }
.bk-status--live { background: rgba(108,192,58,0.15); color: var(--green); }
.bk-status--tbd { background: rgba(255,255,255,0.05); color: var(--muted); }
.bk-venue { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 5px; }
.bk-date-row {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding-bottom: 10px; margin-bottom: 14px; border-bottom: 1px solid var(--panel-line);
}

/* ── WC History ───────────────────────────────────────────────────────── */
.hist-section { padding: 48px 0 60px; border-top: 1px solid var(--panel-line); }
.hist-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.hist-tab {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 18px; min-height: 44px;
  border-radius: 4px; border: 1px solid var(--panel-line);
  background: transparent; color: var(--muted); cursor: pointer; transition: all .15s;
}
.hist-tab:hover { color: var(--floodlight); border-color: var(--glow); }
.hist-tab.active, .hist-tab[aria-selected="true"] { background: var(--glow); border-color: var(--glow); color: var(--navy-night); }
.hist-tab:focus-visible { outline: 2px solid var(--glow); outline-offset: 2px; }
.hist-pane { display: none; }
.hist-pane.active { display: block; }
.hist-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.hist-table { width: 100%; min-width: 480px; border-collapse: collapse; }
.hist-table thead th {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); padding: 8px 12px; border-bottom: 2px solid var(--panel-line); text-align: left; white-space: nowrap;
}
.hist-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background .1s; }
.hist-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.hist-table tbody td { padding: 11px 12px; vertical-align: middle; }
.hist-table .year-cell { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--glow); white-space: nowrap; }
.hist-table .host-cell { font-size: 13px; color: var(--muted); }
.hist-table .champ-cell { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--green); white-space: nowrap; }
.hist-table .runner-cell { font-size: 14px; color: rgba(255,255,255,0.7); white-space: nowrap; }
.hist-table .score-cell { font-family: var(--font-mono); font-size: 12.5px; white-space: nowrap; color: rgba(255,255,255,0.55); }
.hist-table .boot-cell { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.7); }
.hist-table .rank-cell { font-family: var(--font-mono); font-size: 13px; color: var(--muted); padding-right: 4px; }
.hist-table .player-cell { font-family: var(--font-head); font-weight: 700; font-size: 15px; white-space: nowrap; }
.hist-table .nat-cell { font-size: 13px; color: var(--muted); white-space: nowrap; }
.hist-table .goals-cell { font-family: var(--font-mono); font-weight: 700; font-size: 22px; color: var(--green); }
.hist-table .tourn-cell { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.record-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.record-card { background: var(--navy-panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 18px 20px; }
.record-card .rec-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.record-card .rec-value { font-family: var(--font-display); font-weight: 900; font-size: 32px; color: var(--green); line-height: 1; margin-bottom: 5px; }
.record-card .rec-detail { font-size: 13.5px; color: var(--floodlight); font-weight: 500; }
.record-card .rec-sub { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.hist-note { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-bottom: 16px; letter-spacing: 0.04em; }
@media (max-width: 640px) {
  .hist-table .host-cell, .hist-table .boot-cell, .hist-table .tourn-cell { display: none; }
}

/* Golden Ball — now tokenized via --gold instead of hardcoded #F5C518 */
.golden-ball-section { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--panel-line); }
.golden-ball-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.golden-ball-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(22px,3.5vw,30px); color: var(--gold); line-height: 1; }
.golden-ball-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.golden-ball-spotlights { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 12px; margin-bottom: 28px; }
.golden-ball-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--panel-line);
  border-radius: 12px; padding: 18px 20px;
}
.golden-ball-card--top {
  background: linear-gradient(135deg, rgba(245,197,24,0.13), rgba(245,197,24,0.04));
  border-color: rgba(245,197,24,0.28);
}
.golden-ball-card .gb-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.golden-ball-card--top .gb-label { color: rgba(245,197,24,0.55); }
.golden-ball-card .gb-name { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--floodlight); }
.golden-ball-card--top .gb-name { color: var(--gold); }
.golden-ball-card .gb-detail { font-size: 13px; color: var(--muted); margin-top: 4px; }
.gb-champion { color: var(--green); font-family: var(--font-mono); font-size: 12px; font-weight: 600; }
.gb-row--champion { background: rgba(245,197,24,0.07); }
.gb-row--champion .year-cell, .gb-row--champion .player-cell { color: var(--gold); }

/* ── Page-level tab bar ───────────────────────────────────────────────── */
.page-tabs-bar {
  position: sticky;
  top: 57px;
  z-index: var(--z-sticky);
  background: rgba(3,19,42,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-line);
}
.page-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.page-tabs::-webkit-scrollbar { display: none; }
.page-tab {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 18px;
  min-height: 44px;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.page-tab:hover { color: var(--floodlight); }
.page-tab.active, .page-tab[aria-selected="true"] { color: var(--green); border-bottom-color: var(--green); }
.page-tab:focus-visible { outline: 2px solid var(--glow); outline-offset: -2px; }
.page-pane { display: none; }
.page-pane.active { display: block; }

/* ==========================================================================
   ARTICLE TEMPLATE (33 pages under /articles/)
   Previously duplicated verbatim per file; the hero-glow tint is now a
   modifier class (default = recap/green, --feature = blue, --transfer = red)
   set on the markup instead of being hardcoded per article's inline style.
   ========================================================================== */
.article-hero { position: relative; overflow: hidden; padding-bottom: 46px; }
.hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 480px;
  background: radial-gradient(ellipse at center, rgba(108,192,58,0.26) 0%, rgba(108,192,58,0) 68%);
  pointer-events: none;
}
.hero-glow--blue { background: radial-gradient(ellipse at center, rgba(95,168,224,0.22) 0%, rgba(95,168,224,0) 68%); }
.hero-glow--crimson { background: radial-gradient(ellipse at center, rgba(227,60,78,0.26) 0%, rgba(227,60,78,0) 68%); }
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 28px 24px 0; }
.back-link { font-family: var(--font-sub); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); min-height: 44px; display: inline-flex; align-items: center; }
.back-link:hover { color: var(--blue); }
.hero-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin: 36px 0 18px; }
.hero-meta--blue { color: var(--blue); }
.hero-meta--crimson { color: var(--crimson); }
.hero-headline {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 5vw, 46px);
  line-height: 1.05; margin: 0; max-width: 680px; text-wrap: balance;
}

.scoreboard {
  display: grid; grid-template-columns: 1fr auto auto auto 1fr; align-items: center; gap: 14px;
  padding: 26px 22px; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline); border-radius: 14px;
}
.scoreboard .team { font-family: var(--font-display); font-weight: 800; font-size: clamp(16px, 3.2vw, 26px); line-height: 1; }
.scoreboard .team.home { text-align: right; }
.scoreboard .team.away { text-align: left; }
.scoreboard .score {
  font-family: var(--font-mono); font-weight: 700; font-size: clamp(34px, 7vw, 54px);
  color: var(--green); line-height: 1; text-shadow: 0 0 18px rgba(108,192,58,0.55);
  animation: score-flicker-in 1.1s ease-out 1;
}
.scoreboard .score--blue { color: var(--blue); text-shadow: 0 0 18px rgba(95,168,224,0.55); }
.scoreboard .dash { font-family: var(--font-mono); font-size: 22px; color: var(--dim-2); }
.scoreboard .aet, .scoreboard-sub {
  font-family: var(--font-mono); font-size: 12px; color: var(--dim-2); text-align: center;
  margin-top: 10px; letter-spacing: 0.06em; text-transform: uppercase; grid-column: 1 / -1;
}
@keyframes score-flicker-in {
  0% { opacity: 0; text-shadow: none; }
  40% { opacity: 1; }
  70% { text-shadow: 0 0 26px rgba(108,192,58,0.8); }
  100% { text-shadow: 0 0 18px rgba(108,192,58,0.55); }
}
@media (prefers-reduced-motion: reduce) { .scoreboard .score { animation: none; } }
@media (max-width: 480px) {
  .scoreboard { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .scoreboard .team.home, .scoreboard .team.away { text-align: center; }
  .scoreboard .dash { display: none; }
}

.article-body { max-width: 700px; margin: 0 auto; padding: 38px 24px 10px; }
.tag {
  display: inline-block; font-family: var(--font-sub); font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: 5px; margin-bottom: 16px;
}
.tag--recap, .tag--world-cup { background: rgba(108,192,58,0.14); color: var(--green); }
.tag--feature { background: rgba(95,168,224,0.14); color: var(--blue); }
.tag--transfer, .tag--news { background: rgba(227,60,78,0.14); color: var(--crimson); }

.headline { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4.6vw, 44px); line-height: 1.08; margin: 0 0 16px; text-wrap: balance; }
.dek { font-size: 18px; line-height: 1.55; color: var(--dim); margin: 0 0 20px; text-wrap: pretty; }
.byline { font-family: var(--font-mono); font-size: 12.5px; color: var(--dim); margin-bottom: 26px; }
.byline time { color: var(--dim-2); }

.offside-divider { position: relative; height: 2px; background: var(--hairline); margin: 0 0 30px; border-radius: 2px; overflow: hidden; }
.offside-divider::after {
  content: ""; position: absolute; top: -3px; left: -2%; width: 8px; height: 8px; border-radius: 50%;
  background: var(--white); box-shadow: 0 0 10px 3px rgba(255,255,255,0.85); animation: sweep 3.4s linear infinite;
}
@keyframes sweep { 0% { left: -2%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .offside-divider::after { animation: none; left: 50%; opacity: 0.6; } }

.article-body p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.92); margin: 0 0 22px; text-wrap: pretty; }
.article-body h2 {
  font-family: var(--font-sub); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim); margin: 38px 0 18px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline);
}

.hero-banner { margin: 0 0 32px; }
.hero-banner img { width: 100%; display: block; border-radius: 12px; border: 1px solid var(--hairline); }
.hero-banner-caption { font-family: var(--font-mono); font-size: 11.5px; color: var(--dim-2); margin-top: 8px; }

/* stat-callout / pull-quote — full-border card instead of the banned
   colored border-left "side-stripe" accent; the stat-number/quote mark
   already carries the color emphasis, so the border stays neutral. */
.stat-callout {
  display: flex; align-items: center; gap: 20px; background: var(--navy-card);
  border: 1px solid var(--hairline); border-radius: 10px; padding: 20px 22px; margin: 28px 0 30px;
}
.stat-number { font-family: var(--font-mono); font-weight: 700; font-size: 42px; color: var(--green); line-height: 1; flex: 0 0 auto; }
.stat-callout--blue .stat-number { color: var(--blue); }
.stat-label { font-size: 14.5px; line-height: 1.5; color: var(--dim); }

.pull-quote {
  background: var(--navy-card); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 24px 26px; margin: 28px 0 30px; position: relative;
}
.pull-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.pull-quote--blue::before { color: var(--blue); }
.pull-quote--crimson::before { color: var(--crimson); }
.pull-quote p {
  font-family: var(--font-sub); font-style: italic; font-weight: 600; font-size: 19px;
  line-height: 1.5; color: var(--white); margin: 0 0 10px;
}
.pull-quote cite { font-family: var(--font-mono); font-size: 12px; color: var(--dim-2); font-style: normal; }

.key-section { margin: 36px 0; }
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 10px 0;
  border-bottom: 1px solid var(--hairline); font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.88);
}
.timeline li:last-child { border-bottom: none; }
.timeline .minute { font-family: var(--font-mono); font-weight: 700; color: var(--green); }
.timeline--blue .minute { color: var(--blue); }

.article-footer { max-width: 700px; margin: 10px auto 60px; padding: 28px 24px 0; border-top: 1px solid var(--hairline); }
.btn-home {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: var(--font-sub); font-weight: 700; font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--navy); background: var(--green); padding: 12px 22px; border-radius: 8px;
}
.btn-home:hover { filter: brightness(1.08); }

/* Article-page component extras (bid trackers, player cards, tactics
   comparisons, transfer wire) — each used across several articles. */
.bid-tracker { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-top: 4px; }
.bid-card { background: var(--navy-card); border-radius: 10px; padding: 18px 20px; }
.bid-club { font-family: var(--font-sub); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.bid-amount { font-family: var(--font-mono); font-weight: 700; font-size: 26px; color: var(--green); line-height: 1; }
.bid-status { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--crimson); margin-top: 8px; }

.player-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-top: 4px; }
.player-card { display: flex; align-items: center; gap: 14px; background: var(--navy-card); border-radius: 10px; padding: 16px 18px; }
.player-card:not(:has(.player-number)) { display: block; }
.player-number {
  font-family: var(--font-mono); font-weight: 700; font-size: 24px; color: var(--blue);
  background: rgba(95,168,224,0.12); width: 44px; height: 44px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center; border-radius: 8px;
}
.player-name { font-family: var(--font-sub); font-weight: 700; font-size: 15px; }
.player-role { font-size: 12px; color: var(--dim-2); margin: 2px 0; }
.player-line { font-family: var(--font-mono); font-size: 12px; color: var(--green); }
.player-card p { font-size: 14px; line-height: 1.6; color: var(--dim); margin: 0; }

.tactics-compare {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: start;
  background: var(--navy-card); border-radius: 12px; padding: 22px; margin: 18px 0;
}
.tactics-team { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.tactics-formation { font-family: var(--font-mono); color: var(--green); font-size: 13px; margin: 4px 0 10px; }
.tactics-points { margin: 0; padding-left: 18px; font-size: 13.5px; line-height: 1.6; color: var(--dim); }
.tactics-vs { font-family: var(--font-mono); color: var(--dim-2); font-size: 12px; align-self: center; }
.tactics-verdict { font-size: 15px; color: rgba(255,255,255,0.92); }
@media (max-width: 480px) { .tactics-compare { grid-template-columns: 1fr; } .tactics-vs { text-align: center; } }

.stats-table, .streak-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-family: var(--font-mono); font-size: 13px; }
.stats-table th, .stats-table td, .streak-table th, .streak-table td { padding: 10px 8px; text-align: left; border-bottom: 1px solid var(--hairline); }
.stats-table th, .streak-table th { color: var(--dim-2); font-weight: 600; text-transform: uppercase; font-size: 11px; letter-spacing: 0.05em; }
.stats-table td:not(:first-child), .stats-table th:not(:first-child) { text-align: center; }
.streak-table td:last-child { color: var(--green); font-weight: 700; text-align: right; }

.moments-list { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.moments-list li { display: flex; gap: 16px; align-items: baseline; font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,0.88); }
.moment-time { font-family: var(--font-mono); font-weight: 600; color: var(--blue); flex: 0 0 38px; }

.group-results { display: flex; flex-direction: column; gap: 8px; margin: 18px 0 28px; }
.result-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; background: var(--navy-card); border-radius: 8px; padding: 12px 16px; }
.result-match { font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.result-score { font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: var(--blue); }
.result-score.draw { color: var(--dim); }

.transfer-wire { padding: 30px 22px; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid var(--hairline); border-radius: 14px; text-align: center; }
.transfer-player { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4.5vw, 38px); margin-bottom: 10px; }
.transfer-route { display: flex; align-items: center; justify-content: center; gap: 16px; font-family: var(--font-mono); font-size: 14px; flex-wrap: wrap; color: var(--dim); }
.story-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--crimson); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 18px; }
.article-body h2.h2--news { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin: 46px 0 6px; line-height: 1.15; text-transform: none; letter-spacing: normal; color: var(--white); border-bottom: none; padding-bottom: 0; }
.numbers-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0 30px; }
.numbers-item { background: var(--navy-card); border-radius: 10px; padding: 16px 8px; text-align: center; }
.numbers-value { font-family: var(--font-mono); font-weight: 700; font-size: 19px; color: var(--crimson); }
.numbers-label { font-family: var(--font-sub); font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dim-2); margin-top: 4px; }
.pull-note { background: var(--navy-card-2); border-radius: 10px; padding: 16px 20px; margin: 24px 0; font-size: 14.5px; line-height: 1.6; color: var(--dim); }
.pull-note strong { color: rgba(255,255,255,0.9); }
