/* =========================================================================
   DRC LEOPARDS — site styles
   ========================================================================= */

html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(1200px 700px at 75% -10%, rgba(0,163,224,0.10), transparent 60%),
    radial-gradient(900px 600px at 10% 5%, rgba(225,29,42,0.06), transparent 55%),
    var(--bg-deep);
  color: var(--fg-primary);
  overflow-x: hidden;
}

/* leopard-spot texture utility */
.spots::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, var(--spot) 0 7px, transparent 8px),
    radial-gradient(circle at 28% 64%, var(--spot) 0 5px, transparent 6px),
    radial-gradient(circle at 47% 18%, var(--spot) 0 9px, transparent 10px),
    radial-gradient(circle at 63% 78%, var(--spot) 0 6px, transparent 7px),
    radial-gradient(circle at 82% 36%, var(--spot) 0 8px, transparent 9px),
    radial-gradient(circle at 91% 71%, var(--spot) 0 5px, transparent 6px),
    radial-gradient(circle at 38% 90%, var(--spot) 0 7px, transparent 8px),
    radial-gradient(circle at 73% 9%,  var(--spot) 0 6px, transparent 7px);
  background-size: 340px 340px;
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }

section { position: relative; }

/* ---- section eyebrow + heading --------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ms-font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--drc-blue-400);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--drc-blue-500);
}
.eyebrow.gold { color: var(--drc-gold-500); }
.eyebrow.gold::before { background: var(--drc-gold-500); }
.eyebrow.red { color: var(--drc-red-400); }
.eyebrow.red::before { background: var(--drc-red-500); }

.section-title {
  font-family: var(--ms-font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: var(--ls-tightest);
  margin: 0 0 18px;
}
.section-lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--fg-secondary);
  max-width: 64ch;
}
.section-pad { padding: clamp(72px, 11vw, 150px) 0; }

mark, .hl-blue { background: none; color: var(--drc-blue-400); }
.hl-gold { color: var(--drc-gold-500); }
.hl-red  { color: var(--drc-red-400); }

/* ====================================================================== */
/* NAV                                                                    */
/* ====================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-sticky);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  background: color-mix(in oklab, var(--bg-deep) 78%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand .star {
  width: 22px; height: 22px; color: var(--drc-gold-500);
  filter: drop-shadow(0 0 8px rgba(244,204,0,0.4));
}
.brand b {
  font-family: var(--ms-font-display);
  font-weight: 800; letter-spacing: 0.06em; font-size: 15px;
  text-transform: uppercase;
}
.brand span { color: var(--drc-blue-400); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: var(--fs-sm); font-weight: 600; color: var(--fg-tertiary);
  padding: 8px 13px; border-radius: var(--r-sm); white-space: nowrap;
  text-decoration: none; transition: all var(--dur-quick) var(--ease-out);
}
.brand b { white-space: nowrap; }
.nav-links a:hover { color: var(--fg-primary); background: rgba(255,255,255,0.05); text-decoration: none; }
.nav-cta {
  background: var(--drc-blue-500); color: #04141d !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--drc-blue-400) !important; }
@media (max-width: 820px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ====================================================================== */
/* HERO                                                                   */
/* ====================================================================== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ms-font-mono); font-size: var(--fs-sm);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--drc-gold-500);
  margin-bottom: 26px;
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--drc-red-500);
  box-shadow: 0 0 12px var(--drc-red-500); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero h1 {
  font-family: var(--ms-font-display);
  font-weight: 800;
  font-size: clamp(52px, 9.5vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero h1 .l2 { color: var(--drc-blue-500); display: block; }
.hero h1 .l2 em { font-style: normal; color: var(--drc-gold-500); }
.hero p.lede {
  font-size: clamp(16px, 2vw, 21px); line-height: 1.5; color: var(--fg-secondary);
  max-width: 52ch; margin: 0 0 32px;
}
.hero p.lede strong { color: var(--fg-primary); font-weight: 600; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ms-font-sans); font-weight: 700; font-size: var(--fs-base);
  padding: 13px 22px; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: all var(--dur-quick) var(--ease-out);
}
.btn-primary { background: var(--drc-blue-500); color: #04141d; box-shadow: var(--glow-blue); }
.btn-primary:hover { background: var(--drc-blue-400); text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg-primary); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--drc-blue-500); color: var(--drc-blue-400); text-decoration: none; }

/* the qualifying scorecard */
.scorecard {
  position: relative;
  background: linear-gradient(160deg, var(--bg-panel), #0c1626);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.scorecard::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(420px 200px at 80% 0%, rgba(0,163,224,0.18), transparent 70%);
  pointer-events: none;
}
.sc-top { display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ms-font-mono); font-size: var(--fs-2xs); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-tertiary); margin-bottom: 22px; }
.sc-live { color: var(--drc-gold-500); display: inline-flex; gap: 7px; align-items: center; }
.sc-live::before { content: "★"; }
.sc-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
.sc-team { text-align: center; }
.sc-flag {
  width: 56px; height: 56px; margin: 0 auto 12px; border-radius: var(--r-sm);
  display: grid; place-items: center; font-family: var(--ms-font-mono); font-weight: 700;
  font-size: 17px; letter-spacing: 0.04em; position: relative; overflow: hidden;
}
.sc-flag.cod { background: var(--drc-blue-600); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.sc-flag.cod .st { position: absolute; top: 5px; left: 6px; color: var(--drc-gold-500); font-size: 11px; }
.sc-flag.jam { background: #0a3d1f; color: var(--drc-gold-500); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.sc-team .nm { font-family: var(--ms-font-mono); font-size: var(--fs-xs); color: var(--fg-secondary); letter-spacing: 0.05em; }
.sc-score { font-family: var(--ms-font-mono); font-weight: 700; font-size: 56px; line-height: 1;
  font-variant-numeric: tabular-nums; color: var(--fg-primary); }
.sc-score .x { color: var(--fg-muted); font-size: 30px; vertical-align: middle; margin: 0 4px; }
.sc-meta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 8px; }
.sc-scorer { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); color: var(--fg-secondary); }
.sc-scorer b { color: var(--drc-gold-500); font-family: var(--ms-font-mono); }
.sc-scorer .min { font-family: var(--ms-font-mono); color: var(--drc-blue-400); font-weight: 700; }

/* ====================================================================== */
/* STAT TICKER BAND                                                       */
/* ====================================================================== */
.band {
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(var(--bg-panel), #0a1322);
  position: relative;
}
.band .drc-diagonal { position: absolute; inset: 0; opacity: 0.08; }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
@media (max-width: 760px) { .band-grid { grid-template-columns: repeat(2, 1fr); } }
.band-cell { padding: 30px 26px; border-left: 1px solid var(--border-subtle); }
.band-cell:first-child { border-left: none; }
.band-cell .n { font-family: var(--ms-font-mono); font-weight: 700; font-size: clamp(34px, 5vw, 52px);
  line-height: 1; color: var(--drc-gold-500); font-variant-numeric: tabular-nums; }
.band-cell .n.blue { color: var(--drc-blue-400); }
.band-cell .lbl { margin-top: 10px; font-size: var(--fs-xs); color: var(--fg-tertiary);
  text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4; }

/* ====================================================================== */
/* JOURNEY TIMELINE                                                       */
/* ====================================================================== */
.chapter { margin-top: 56px; }
.chapter:first-of-type { margin-top: 44px; }
.chapter-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.chapter-tag {
  font-family: var(--ms-font-mono); font-size: var(--fs-2xs); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-sm);
}
.tag-group { background: rgba(0,163,224,0.14); color: var(--drc-blue-400); border: 1px solid rgba(0,163,224,0.3); }
.tag-round { background: rgba(225,29,42,0.14); color: var(--drc-red-400); border: 1px solid rgba(225,29,42,0.3); }
.tag-playoff { background: rgba(244,204,0,0.14); color: var(--drc-gold-500); border: 1px solid rgba(244,204,0,0.3); }
.tag-afcon { background: rgba(148,163,184,0.14); color: var(--fg-secondary); border: 1px solid var(--border-default); }
.chapter-head h3 { font-family: var(--ms-font-display); font-weight: 700; font-size: var(--fs-2xl); margin: 0; }
.chapter-head .sub { font-size: var(--fs-sm); color: var(--fg-tertiary); font-family: var(--ms-font-mono); }

.matches { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.match {
  background: var(--bg-panel); border: 1px solid var(--border-subtle); border-radius: var(--r-md);
  padding: 16px 18px; transition: all var(--dur-base) var(--ease-out); position: relative; overflow: hidden;
}
.match:hover { border-color: var(--border-strong); transform: translateY(-2px); background: #131e30; }
.match .res-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.res-w .res-bar { background: var(--drc-blue-500); }
.res-d .res-bar { background: var(--drc-gold-500); }
.res-l .res-bar { background: var(--drc-red-500); }
.match-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.match-date { font-family: var(--ms-font-mono); font-size: var(--fs-2xs); color: var(--fg-tertiary); letter-spacing: 0.05em; }
.match-badge { font-family: var(--ms-font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 3px; }
.b-w { background: rgba(0,163,224,0.16); color: var(--drc-blue-400); }
.b-d { background: rgba(244,204,0,0.16); color: var(--drc-gold-500); }
.b-l { background: rgba(225,29,42,0.16); color: var(--drc-red-400); }
.match-fixture { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mf-side { flex: 1; display: flex; align-items: center; gap: 9px; min-width: 0; }
.mf-side.away { flex-direction: row-reverse; text-align: right; }
.mf-code { width: 30px; height: 30px; border-radius: 4px; display: grid; place-items: center; flex: none;
  font-family: var(--ms-font-mono); font-size: 11px; font-weight: 700; }
.mf-name { font-size: var(--fs-sm); font-weight: 600; color: var(--fg-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mf-name.us { color: var(--fg-primary); }
.mf-score { font-family: var(--ms-font-mono); font-weight: 700; font-size: 22px; font-variant-numeric: tabular-nums;
  color: var(--fg-primary); flex: none; padding: 0 4px; }
.match-note { font-size: var(--fs-xs); line-height: 1.5; color: var(--fg-tertiary); }
.match-note .sc { color: var(--drc-gold-500); font-family: var(--ms-font-mono); }
.match-venue { margin-top: 9px; font-family: var(--ms-font-mono); font-size: 10px; color: var(--fg-muted);
  letter-spacing: 0.05em; text-transform: uppercase; }

/* ====================================================================== */
/* DEEP DIVES                                                             */
/* ====================================================================== */
.dives { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .dives { grid-template-columns: 1fr; } }
.dive {
  position: relative; border-radius: var(--r-lg); overflow: hidden; padding: 26px;
  background: linear-gradient(165deg, var(--bg-panel), #0a1220);
  border: 1px solid var(--border-default); min-height: 320px;
  display: flex; flex-direction: column;
}
.dive .num { font-family: var(--ms-font-mono); font-size: 13px; font-weight: 700; color: var(--drc-blue-600);
  letter-spacing: 0.1em; }
.dive h4 { font-family: var(--ms-font-display); font-weight: 800; font-size: 23px; margin: 14px 0 4px; line-height: 1.1; }
.dive .vs { font-family: var(--ms-font-mono); font-size: var(--fs-xs); color: var(--fg-tertiary); margin-bottom: 16px; letter-spacing: 0.06em; }
.dive .big-score { font-family: var(--ms-font-mono); font-weight: 700; font-size: 40px; color: var(--drc-gold-500);
  line-height: 1; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.dive .big-score small { font-size: 14px; color: var(--fg-tertiary); font-weight: 500; }
.dive p { font-size: var(--fs-sm); line-height: 1.55; color: var(--fg-secondary); margin: 14px 0 0; }
.dive .moment { margin-top: auto; padding-top: 18px; font-size: var(--fs-xs); color: var(--drc-blue-400);
  font-family: var(--ms-font-mono); display: flex; gap: 8px; align-items: center; }
.dive::before { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px;
  border-radius: 50%; opacity: 0.12; }
.dive.d1::before { background: var(--drc-red-500); }
.dive.d2::before { background: var(--drc-gold-500); }
.dive.d3::before { background: var(--drc-blue-500); box-shadow: var(--glow-blue); opacity: 0.18; }

/* ====================================================================== */
/* PLAYERS                                                                */
/* ====================================================================== */
.players-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .players-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .players-grid { grid-template-columns: 1fr; } }
.player {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: var(--bg-panel); border: 1px solid var(--border-subtle);
  transition: all var(--dur-base) var(--ease-out);
}
.player:hover { border-color: var(--drc-blue-600); transform: translateY(-3px); }
.player.feature { grid-column: span 2; grid-row: span 1; }
@media (max-width: 520px) { .player.feature { grid-column: span 1; } }
.portrait {
  aspect-ratio: 1 / 1; position: relative; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, var(--drc-blue-700), var(--drc-blue-900) 70%, #06121c);
  overflow: hidden;
}
.player.feature .portrait { aspect-ratio: 2 / 1; }
.portrait .mono-no {
  position: absolute; font-family: var(--ms-font-mono); font-weight: 700;
  font-size: clamp(90px, 16vw, 160px); color: rgba(255,255,255,0.06); line-height: 1;
}
.portrait .initials { position: relative; font-family: var(--ms-font-display); font-weight: 800;
  font-size: 44px; color: rgba(255,255,255,0.92); letter-spacing: -0.02em; z-index: 1; }
.portrait .ph-tag { position: absolute; bottom: 9px; left: 0; right: 0; text-align: center;
  font-family: var(--ms-font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); z-index: 1; }
.portrait.legend { background: radial-gradient(circle at 50% 30%, #4a3c08, #211a02 70%, #0d0a00); }
.portrait.legend .initials { color: var(--drc-gold-300); }
.pos-chip { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--ms-font-mono);
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em; padding: 3px 7px; border-radius: 3px;
  background: rgba(0,0,0,0.5); color: var(--fg-secondary); backdrop-filter: blur(4px); }
.legend-chip { position: absolute; top: 10px; right: 10px; z-index: 2; font-family: var(--ms-font-mono);
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em; padding: 3px 7px; border-radius: 3px;
  background: rgba(244,204,0,0.16); color: var(--drc-gold-500); }
.player-body { padding: 14px 15px 16px; }
.player-body .nm { font-family: var(--ms-font-display); font-weight: 700; font-size: var(--fs-lg); line-height: 1.1; }
.player-body .club { font-size: var(--fs-xs); color: var(--fg-tertiary); margin-top: 3px; }
.player-body .hype { font-size: var(--fs-sm); color: var(--fg-secondary); line-height: 1.45; margin-top: 11px; }
.player-stats { display: flex; gap: 18px; margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--border-subtle); }
.player-stats .s .v { font-family: var(--ms-font-mono); font-weight: 700; font-size: 19px; color: var(--drc-blue-400);
  font-variant-numeric: tabular-nums; }
.player-stats .s.gold .v { color: var(--drc-gold-500); }
.player-stats .s .k { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-top: 2px; }

.portrait .mono-no { z-index: 0; }
.pos-chip, .legend-chip { z-index: 3 !important; }

/* image-slot integrated into player portraits */
.port-slot {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
}
.port-slot::part(frame) { background: transparent; }
.port-slot::part(empty) { color: rgba(255,255,255,0.55); gap: 8px; }
.port-slot::part(ring) { border-color: rgba(255,255,255,0.16); border-width: 1px; }

/* image-slot at the top of each deep-dive moment card */
.dive-photo {
  display: block; width: calc(100% + 52px); height: 150px;
  margin: -26px -26px 22px; z-index: 1;
}
.dive-photo::part(frame) { background: rgba(255,255,255,0.02); border-radius: 0; }
.dive-photo::part(empty) { color: var(--fg-muted); gap: 8px; }
.dive-photo::part(ring) { border-color: rgba(255,255,255,0.10); border-width: 1px; }

/* ====================================================================== */
/* QUIZ                                                                   */
/* ====================================================================== */
.quiz-shell {
  background: linear-gradient(165deg, var(--bg-panel), #0a1322);
  border: 1px solid var(--border-default); border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-3); position: relative; overflow: hidden;
}
.quiz-shell .drc-diagonal { position: absolute; inset: 0; opacity: 0.06; }
.quiz-inner { position: relative; z-index: 1; }
.quiz-progress { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px;
  font-family: var(--ms-font-mono); font-size: var(--fs-sm); color: var(--fg-tertiary); }
.quiz-progress .qnum { color: var(--drc-blue-400); font-weight: 700; }
.quiz-progress .score { color: var(--drc-gold-500); }
.pbar { height: 5px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; margin-bottom: 30px; }
.pbar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--drc-blue-500), var(--drc-gold-500));
  border-radius: 999px; transition: width var(--dur-base) var(--ease-out); }
.q-text { font-family: var(--ms-font-display); font-weight: 700; font-size: clamp(20px, 3vw, 30px);
  line-height: 1.18; margin: 0 0 8px; text-wrap: balance; }
.q-cat { font-family: var(--ms-font-mono); font-size: var(--fs-2xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--drc-blue-600); margin-bottom: 14px; }
.q-opts { display: grid; gap: 11px; margin-top: 26px; }
.opt {
  display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  background: #0e1726; border: 1px solid var(--border-default); border-radius: var(--r-md);
  padding: 16px 18px; cursor: pointer; transition: all var(--dur-quick) var(--ease-out);
  font-size: var(--fs-md); color: var(--fg-secondary); font-family: var(--ms-font-sans);
}
.opt:hover:not(:disabled) { border-color: var(--drc-blue-500); background: #11203200; background-color: #122033; color: var(--fg-primary); }
.opt .key { width: 28px; height: 28px; flex: none; border-radius: 5px; display: grid; place-items: center;
  font-family: var(--ms-font-mono); font-weight: 700; font-size: 13px; background: rgba(255,255,255,0.05);
  color: var(--fg-tertiary); transition: all var(--dur-quick) var(--ease-out); }
.opt:hover:not(:disabled) .key { background: var(--drc-blue-500); color: #04141d; }
.opt:disabled { cursor: default; }
.opt.correct { border-color: var(--drc-blue-500); background: rgba(0,163,224,0.12); color: #fff; }
.opt.correct .key { background: var(--drc-blue-500); color: #04141d; }
.opt.wrong { border-color: var(--drc-red-500); background: rgba(225,29,42,0.1); color: var(--drc-red-400); }
.opt.wrong .key { background: var(--drc-red-500); color: #fff; }
.opt.muted { opacity: 0.4; }
.q-feedback { margin-top: 20px; min-height: 24px; font-size: var(--fs-sm); line-height: 1.5; }
.q-feedback .ok { color: var(--drc-blue-400); font-weight: 600; }
.q-feedback .no { color: var(--drc-red-400); font-weight: 600; }
.q-feedback .exp { color: var(--fg-tertiary); }
.q-foot { margin-top: 26px; display: flex; justify-content: flex-end; }
.q-next {
  background: var(--drc-gold-500); color: #1a1500; font-weight: 700; border: none;
  padding: 12px 24px; border-radius: var(--r-sm); cursor: pointer; font-size: var(--fs-base);
  display: inline-flex; align-items: center; gap: 8px; transition: all var(--dur-quick) var(--ease-out);
  opacity: 0; pointer-events: none; transform: translateY(4px);
}
.q-next.show { opacity: 1; pointer-events: auto; transform: none; }
.q-next:hover { background: var(--drc-gold-300); }

/* quiz start + result */
.quiz-start, .quiz-result { text-align: center; padding: 18px 0; }
.quiz-start h3 { font-family: var(--ms-font-display); font-weight: 800; font-size: clamp(26px, 4vw, 40px); margin: 0 0 12px; }
.quiz-start p { color: var(--fg-secondary); max-width: 50ch; margin: 0 auto 28px; line-height: 1.55; }
.quiz-result .rank { font-family: var(--ms-font-display); font-weight: 800; font-size: clamp(34px, 6vw, 64px);
  line-height: 1; margin: 8px 0 6px; }
.quiz-result .score-big { font-family: var(--ms-font-mono); font-weight: 700; font-size: 78px; line-height: 1;
  color: var(--drc-gold-500); font-variant-numeric: tabular-nums; }
.quiz-result .score-big small { font-size: 30px; color: var(--fg-muted); }
.quiz-result .blurb { color: var(--fg-secondary); max-width: 46ch; margin: 16px auto 28px; line-height: 1.55; }
.quiz-result .star-rating { font-size: 26px; letter-spacing: 6px; color: var(--drc-gold-500); margin-bottom: 6px; }

/* ====================================================================== */
/* HISTORY                                                                */
/* ====================================================================== */
.history-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .history-lead { grid-template-columns: 1fr; gap: 28px; } }
.history-lead p { font-size: var(--fs-md); line-height: 1.7; color: var(--fg-secondary); margin: 0 0 18px; }
.history-lead p strong { color: var(--fg-primary); }
.pullquote {
  border-left: 3px solid var(--drc-gold-500); padding: 4px 0 4px 22px; margin: 0 0 22px;
  font-family: var(--ms-font-display); font-weight: 700; font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.25; color: var(--fg-primary); letter-spacing: -0.01em;
}
.era-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 10px; }
.era {
  display: grid; grid-template-columns: 88px 1fr; gap: 18px; padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
}
.era:last-child { border-bottom: 1px solid var(--border-subtle); }
.era .yr { font-family: var(--ms-font-mono); font-weight: 700; font-size: var(--fs-xl); color: var(--drc-gold-500);
  font-variant-numeric: tabular-nums; }
.era .yr small { display: block; font-size: 10px; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.05em; margin-top: 2px; }
.era .what h5 { font-family: var(--ms-font-sans); font-weight: 700; font-size: var(--fs-md); margin: 0 0 5px; }
.era .what p { font-size: var(--fs-sm); color: var(--fg-tertiary); line-height: 1.5; margin: 0; }
.era.gold .yr { color: var(--drc-gold-500); }
.era.blue .yr { color: var(--drc-blue-400); }

/* ====================================================================== */
/* WORLD CUP 2026                                                         */
/* ====================================================================== */
.wc {
  background: linear-gradient(170deg, #0a1828, var(--bg-deep));
  border-top: 1px solid var(--border-subtle);
}
.group-card {
  background: var(--bg-panel); border: 1px solid var(--border-default); border-radius: var(--r-lg);
  overflow: hidden;
}
.group-head { padding: 18px 22px; border-bottom: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ms-font-mono); font-size: var(--fs-sm); letter-spacing: 0.06em; text-transform: uppercase; }
.group-head b { color: var(--drc-gold-500); }
.fixtures { display: grid; gap: 0; }
.fix { display: grid; grid-template-columns: 96px 1fr auto; align-items: center; gap: 16px;
  padding: 18px 22px; border-top: 1px solid var(--border-subtle); }
.fix:first-child { border-top: none; }
.fix .fdate { font-family: var(--ms-font-mono); font-size: var(--fs-sm); color: var(--drc-blue-400); font-weight: 700; }
.fix .fdate small { display: block; color: var(--fg-muted); font-weight: 500; font-size: 10px; }
.fix .fopp { display: flex; align-items: center; gap: 12px; }
.fix .fopp .oc { width: 34px; height: 34px; border-radius: 5px; display: grid; place-items: center;
  font-family: var(--ms-font-mono); font-weight: 700; font-size: 12px; flex: none; color: #fff; }
.fix .fopp .on { font-weight: 600; font-size: var(--fs-md); }
.fix .fopp .om { font-size: var(--fs-xs); color: var(--fg-tertiary); font-family: var(--ms-font-mono); }
.fix .ftime { font-family: var(--ms-font-mono); font-size: var(--fs-xs); color: var(--fg-muted); text-align: right; }
@media (max-width: 620px){ .fix { grid-template-columns: 70px 1fr; } .fix .ftime { display:none; } }

/* ====================================================================== */
/* STATS                                                                  */
/* ====================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (max-width: 820px){ .stats-grid { grid-template-columns: 1fr; } }
.stat-card { background: var(--bg-panel); border: 1px solid var(--border-subtle); border-radius: var(--r-md); padding: 22px 24px; }
.stat-card h4 { font-family: var(--ms-font-sans); font-weight: 700; font-size: var(--fs-md); margin: 0 0 4px;
  display: flex; align-items: center; gap: 9px; }
.stat-card .cap { font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted);
  font-family: var(--ms-font-mono); margin-bottom: 16px; }
.rank-row { display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center; padding: 9px 0;
  border-top: 1px solid var(--border-subtle); }
.rank-row:first-of-type { border-top: none; }
.rank-row .rk { font-family: var(--ms-font-mono); font-size: var(--fs-xs); color: var(--fg-muted); }
.rank-row .who { font-size: var(--fs-sm); color: var(--fg-secondary); }
.rank-row .who b { color: var(--fg-primary); font-weight: 600; }
.rank-row .who small { color: var(--fg-muted); }
.rank-row .val { font-family: var(--ms-font-mono); font-weight: 700; font-size: var(--fs-lg); color: var(--drc-gold-500);
  font-variant-numeric: tabular-nums; }
.rank-row.lead .val { color: var(--drc-blue-400); }
.rank-row .bar { grid-column: 2 / 4; height: 4px; background: rgba(255,255,255,0.05); border-radius: 999px; overflow: hidden; }
.rank-row .bar > i { display: block; height: 100%; background: var(--drc-blue-600); border-radius: 999px; }

/* ====================================================================== */
/* FOOTER                                                                 */
/* ====================================================================== */
.footer { border-top: 1px solid var(--border-subtle); padding: 60px 0 40px; position: relative; overflow: hidden; }
.footer .drc-diagonal { position: absolute; inset: 0; opacity: 0.05; }
.foot-cry { font-family: var(--ms-font-display); font-weight: 800; font-size: clamp(40px, 9vw, 120px);
  line-height: 0.92; letter-spacing: -0.04em; text-align: center; position: relative; }
.foot-cry .b { color: var(--drc-blue-500); }
.foot-cry .r { color: var(--drc-red-500); }
.foot-cry .y { color: var(--drc-gold-500); }
.foot-meta { text-align: center; margin-top: 30px; color: var(--fg-muted); font-size: var(--fs-xs);
  font-family: var(--ms-font-mono); line-height: 1.7; position: relative; }
.foot-meta .star { color: var(--drc-gold-500); }

/* skip link — visible only on keyboard focus, for keyboard / screen-reader users */
.skip-link {
  position: absolute; left: 12px; top: -56px; z-index: 200;
  background: var(--drc-blue-500); color: #fff;
  padding: 10px 16px; border-radius: 0 0 10px 10px;
  font-weight: 600; text-decoration: none;
  transition: top 0.15s var(--ease-out);
}
.skip-link:focus { top: 0; outline: 2px solid var(--drc-gold-500); outline-offset: 2px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-kicker .dot { animation: none; }
  html { scroll-behavior: auto; }
}
