/* ── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #0a1628;
  --navy2:  #0f2040;
  --gold:   #f5c518;
  --gold2:  #e6b800;
  --white:  #ffffff;
  --light:  #f4f6fa;
  --mid:    #8898aa;
  --text:   #1a2535;
  --green:  #00c44f;
  --red:    #e63946;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--light); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── NAVBAR ───────────────────────────────────────────────────────────── */
.navbar { background: var(--navy); position: sticky; top: 0; z-index: 100; border-bottom: 2px solid var(--gold); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { font-size: 1.3rem; font-weight: 800; color: var(--gold); letter-spacing: -.5px; display: flex; align-items: center; gap: .4rem; }
.brand span { color: var(--white); }
.nav-logo { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.75); font-weight: 600; font-size: .9rem; letter-spacing: .5px; transition: color .2s; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn { display: inline-block; padding: .7rem 1.6rem; border-radius: 50px; font-weight: 700; font-size: .95rem; transition: all .2s; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,197,24,.4); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero { background: linear-gradient(rgba(10,22,40,0.72), rgba(10,22,40,0.82)), url("../img/hero-trophy.jpg") center/cover no-repeat; color: var(--white); padding: 5rem 1.5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero-eyebrow { font-size: .9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 2rem; margin-top: 3.5rem; flex-wrap: wrap; position: relative; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.65); }

/* ── ADS ──────────────────────────────────────────────────────────────── */
.ad-strip { background: #e8eaf0; padding: .5rem; text-align: center; border-top: 1px solid #d0d4dc; border-bottom: 1px solid #d0d4dc; }
.ad-leaderboard { background: #f0f2f8; }
.ad-placeholder { min-height: 90px; display: flex; align-items: center; justify-content: center; background: #dde0ec; border: 1px dashed #b0b8d0; border-radius: 4px; max-width: 1200px; margin: .4rem auto; }
.ad-placeholder span { color: #8898aa; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; }

/* ── BETTING STRIP ────────────────────────────────────────────────────── */
.betting-strip { background: linear-gradient(90deg, #1a2535 0%, #243048 100%); padding: 1.2rem 1.5rem; }
.betting-strip .container { max-width: 1200px; margin: 0 auto; }
.betting-label { color: var(--gold); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .8rem; }
.betting-cards { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: .6rem; }
.bet-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: .7rem 1.2rem; display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 220px; transition: background .2s; cursor: pointer; }
.bet-card:hover { background: rgba(255,255,255,.1); }
.bet-brand { font-weight: 800; color: var(--gold); font-size: 1rem; min-width: 80px; }
.bet-offer { color: rgba(255,255,255,.85); font-size: .85rem; flex: 1; }
.bet-cta { background: var(--gold); color: var(--navy); padding: .3rem .8rem; border-radius: 20px; font-weight: 700; font-size: .8rem; white-space: nowrap; }
.bet-disclaimer { color: rgba(255,255,255,.4); font-size: .7rem; }

/* ── SECTIONS ─────────────────────────────────────────────────────────── */
.section { padding: 4rem 1.5rem; }
.dark-section { background: var(--navy); color: var(--white); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,.65); }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: .5rem; }
.section-sub { text-align: center; color: var(--mid); margin-bottom: 2.5rem; }
.center-cta { text-align: center; margin-top: 2rem; }

/* ── GROUPS GRID ──────────────────────────────────────────────────────── */
.groups-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.group-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; border-top: 4px solid var(--gold); }
.group-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.group-card ul { display: flex; flex-direction: column; gap: .4rem; }
.group-card li a { font-size: .9rem; color: var(--text); display: flex; align-items: center; gap: .4rem; padding: .25rem .4rem; border-radius: 6px; transition: background .15s; }
.group-card li a:hover { background: var(--light); color: var(--navy); font-weight: 600; }

/* ── MUST-WATCH MATCHUPS ──────────────────────────────────────────────── */
.matchups-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.matchup-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.4rem; }
.matchup-teams { display: flex; align-items: center; gap: .7rem; font-size: 1.05rem; font-weight: 700; margin-bottom: .7rem; }
.vs { font-size: .75rem; color: var(--gold); font-weight: 800; background: rgba(245,197,24,.15); padding: .2rem .5rem; border-radius: 4px; }
.matchup-card p { font-size: .875rem; color: rgba(255,255,255,.7); margin-bottom: .8rem; }
.group-tag { background: var(--gold); color: var(--navy); font-size: .7rem; font-weight: 800; padding: .2rem .6rem; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }

/* ── FACTS GRID ───────────────────────────────────────────────────────── */
.facts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.fact-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.3rem 1.5rem; display: flex; flex-direction: column; gap: .3rem; }
.fact-card strong { font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: var(--mid); }
.fact-card span { font-weight: 600; color: var(--text); }
.fact-card { font-size: 1.5rem; }

/* ── SPONSORED ────────────────────────────────────────────────────────── */
.sponsored-section { background: var(--navy2); padding: 2.5rem 1.5rem; }
.sponsored-tag { color: var(--mid); font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem; text-align: center; }
.sponsor-banner { max-width: 900px; margin: 0 auto; background: linear-gradient(135deg, #163060, #243880); border-radius: var(--radius); padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; border: 1px solid rgba(245,197,24,.2); }
.sponsor-text h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .4rem; }
.sponsor-text p { color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.sponsor-visual { font-size: 3rem; text-align: center; color: var(--gold); display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.sponsor-visual span { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ── TEAMS PAGE ───────────────────────────────────────────────────────── */
.page-header { background: linear-gradient(135deg, var(--navy), #163060); color: var(--white); padding: 3rem 1.5rem 2.5rem; text-align: center; }
.page-header h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: .5rem; }
.page-header p { color: rgba(255,255,255,.7); }
.filter-bar { background: var(--white); border-bottom: 1px solid #e0e4ee; padding: 1rem 1.5rem; position: sticky; top: 60px; z-index: 90; }
.filter-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.filter-inner input { flex: 1; min-width: 200px; padding: .55rem 1rem; border: 2px solid #e0e4ee; border-radius: 30px; font-size: .95rem; outline: none; }
.filter-inner input:focus { border-color: var(--gold); }
.filter-btn { padding: .45rem 1.1rem; border: 2px solid #e0e4ee; border-radius: 30px; font-size: .85rem; font-weight: 600; cursor: pointer; background: none; color: var(--text); transition: all .15s; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.teams-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.team-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem; text-align: center; cursor: pointer; transition: transform .2s, box-shadow .2s; border-top: 3px solid transparent; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.16); border-top-color: var(--gold); }
.team-flag { font-size: 2.8rem; margin-bottom: .5rem; }
.team-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }
.team-card .team-meta { font-size: .78rem; color: var(--mid); }
.team-card .team-group { display: inline-block; background: var(--navy); color: var(--gold); font-size: .7rem; font-weight: 800; padding: .15rem .5rem; border-radius: 4px; margin-top: .4rem; }
.no-results { text-align: center; padding: 3rem; color: var(--mid); font-size: 1.1rem; }

/* ── TEAM DETAIL PAGE ─────────────────────────────────────────────────── */
.team-hero { background: linear-gradient(135deg, var(--navy) 0%, #163060 100%); color: var(--white); padding: 3rem 1.5rem 2rem; }
.team-hero-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.team-hero-flag { font-size: 6rem; line-height: 1; }
.team-hero-info { flex: 1; }
.team-hero-info .badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: .75rem; font-weight: 800; padding: .2rem .7rem; border-radius: 20px; margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .5px; }
.team-hero-info h1 { font-size: 2.4rem; font-weight: 900; margin-bottom: .4rem; }
.team-hero-info .coach-line { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 1rem; }
.team-hero-info .ranking { font-size: 1.1rem; }
.team-hero-info .ranking strong { color: var(--gold); font-size: 1.5rem; }
.team-detail { max-width: 900px; margin: 2.5rem auto; padding: 0 1.5rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.detail-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; }
.detail-card h2 { font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--mid); margin-bottom: 1rem; border-bottom: 2px solid var(--light); padding-bottom: .6rem; }
.player-list { display: flex; flex-direction: column; gap: .5rem; }
.player-item { display: flex; align-items: center; gap: .7rem; padding: .5rem; background: var(--light); border-radius: 8px; font-size: .9rem; font-weight: 600; }
.player-item::before { content: '⚽'; font-size: .9rem; }
.fun-facts-list { display: flex; flex-direction: column; gap: .8rem; }
.fun-fact-item { display: flex; gap: .8rem; font-size: .9rem; line-height: 1.5; }
.fun-fact-item::before { content: '💡'; flex-shrink: 0; }
.stat-row { display: flex; justify-content: space-between; align-items: flex-start; padding: .5rem 0; border-bottom: 1px solid var(--light); font-size: .9rem; gap: .75rem; }
.stat-row:last-child { border-bottom: none; }
.stat-row strong { color: var(--navy); }
.notable-match-row { background: rgba(245,197,24,.08); margin: 0 -.8rem; padding: .6rem .8rem; border-radius: 6px; }
.notable-match-row span { color: var(--navy); font-weight: 700; white-space: nowrap; }
.notable-match-row em { font-style: normal; color: #444; font-size: .85rem; text-align: right; }
.team-desc { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; color: var(--text); border-left: 4px solid var(--gold); }

/* ── SCHEDULE PAGE ────────────────────────────────────────────────────── */
.schedule-section { max-width: 900px; margin: 2rem auto; padding: 0 1.5rem; }
.round-header { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin: 2rem 0 1rem; padding-bottom: .5rem; border-bottom: 3px solid var(--gold); display: flex; align-items: center; gap: .7rem; }
.fixture { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.1rem 1.5rem; margin-bottom: .7rem; display: flex; align-items: center; gap: 1rem; }
.fixture-group { font-size: .7rem; font-weight: 800; background: var(--navy); color: var(--gold); padding: .25rem .6rem; border-radius: 4px; min-width: 60px; text-align: center; }
.fixture-teams { flex: 1; display: flex; align-items: center; justify-content: center; gap: 1rem; font-weight: 700; font-size: 1rem; }
.fixture-score { background: var(--light); border-radius: 6px; padding: .3rem .8rem; font-weight: 800; font-size: 1rem; min-width: 60px; text-align: center; color: var(--navy); }
.fixture-score.live { background: var(--red); color: white; animation: pulse 1.5s infinite; }
.fixture-score.upcoming { color: var(--mid); background: var(--light); }
.fixture-date { font-size: .78rem; color: var(--mid); text-align: right; min-width: 90px; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 2.5rem 1.5rem 1.5rem; margin-top: 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-brand { color: var(--white); font-size: 1.1rem; }
.footer-brand small { color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-legal { max-width: 1200px; margin: 0 auto; font-size: .75rem; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.08); padding-top: 1rem; }

/* ── TEAM BRIEFING REDESIGN ───────────────────────────────────────────── */
.briefing-intro { background: linear-gradient(135deg, var(--navy), #163060); color: var(--white); border-radius: var(--radius); padding: 1.6rem 2rem; margin-bottom: 1.2rem; }
.briefing-eyebrow { display: block; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: .6rem; }
.briefing-intro p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.9); }
.style-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem 1.8rem; margin-bottom: 1.2rem; border-left: 4px solid var(--gold); }
.style-card h2 { font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--mid); margin-bottom: .7rem; }
.style-card p { font-size: .975rem; line-height: 1.65; color: var(--text); }
.players-grid { display: flex; flex-direction: column; gap: .8rem; }
.player-card { background: var(--light); border-radius: 10px; padding: .9rem 1.1rem; }
.player-top { display: flex; align-items: center; gap: .7rem; margin-bottom: .35rem; flex-wrap: wrap; }
.player-pos { background: var(--navy); color: var(--gold); font-size: .7rem; font-weight: 800; padding: .15rem .55rem; border-radius: 4px; letter-spacing: .5px; flex-shrink: 0; }
.player-name { font-size: 1rem; font-weight: 700; color: var(--navy); flex: 1; }
.player-club { font-size: .78rem; color: var(--mid); }
.player-note { font-size: .875rem; color: var(--text); line-height: 1.5; margin: 0; }

/* ── COUNTDOWN ─────────────────────────────────────────────────────────── */
.countdown-banner { background: linear-gradient(90deg, var(--gold) 0%, #e6c000 100%); padding: .6rem 1.5rem; text-align: center; }
.countdown-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: .6rem; font-weight: 700; color: var(--navy); font-size: .95rem; }
.countdown-days { font-size: 1.4rem; font-weight: 900; }

/* ── PRE-MATCH BRIEFING PAGE ──────────────────────────────────────────── */
.briefing-page { max-width: 800px; margin: 2rem auto; padding: 0 1.5rem 4rem; }
.match-selector { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; margin-bottom: 2rem; }
.match-selector h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--navy); }
.selector-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.selector-row select { flex: 1; min-width: 200px; padding: .7rem 1rem; border: 2px solid #e0e4ee; border-radius: 8px; font-size: .95rem; font-weight: 600; color: var(--navy); background: var(--white); cursor: pointer; }
.selector-row select:focus { outline: none; border-color: var(--gold); }
.briefing-output { display: none; }
.briefing-output.visible { display: block; }
.match-header { background: linear-gradient(135deg, var(--navy), #163060); border-radius: var(--radius); padding: 2.5rem; color: var(--white); text-align: center; margin-bottom: 1.5rem; }
.match-header .vs-row { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 1rem; }
.match-team-flag { font-size: 4rem; }
.match-team-name { font-size: 1.4rem; font-weight: 800; margin-top: .3rem; }
.match-vs { font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.match-meta { color: rgba(255,255,255,.7); font-size: .9rem; }
.briefing-section { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; margin-bottom: 1.2rem; }
.briefing-section h3 { font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--mid); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--light); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.team-briefing-col h4 { font-size: .9rem; font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: .4rem; margin-bottom: .7rem; }
.mini-stat { display: flex; justify-content: space-between; font-size: .85rem; padding: .35rem 0; border-bottom: 1px solid var(--light); }
.mini-stat:last-child { border: none; }
.mini-stat strong { color: var(--navy); }
.mini-player { font-size: .85rem; padding: .3rem 0; border-bottom: 1px solid var(--light); display: flex; gap: .5rem; align-items: baseline; }
.mini-player:last-child { border: none; }
.mini-player .pos-tag { background: var(--navy); color: var(--gold); font-size: .65rem; font-weight: 800; padding: .1rem .4rem; border-radius: 3px; flex-shrink: 0; }
.style-blurb { font-size: .9rem; line-height: 1.6; color: var(--text); background: var(--light); border-radius: 8px; padding: .8rem 1rem; }

/* ── WHO TO ROOT FOR ──────────────────────────────────────────────────── */
.quiz-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; margin-bottom: 1.2rem; }
.quiz-card h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: .4rem; }
.quiz-card p.sub { color: var(--mid); font-size: .9rem; margin-bottom: 1.5rem; }
.quiz-options { display: flex; flex-direction: column; gap: .7rem; }
.quiz-option { background: var(--light); border: 2px solid transparent; border-radius: 10px; padding: 1rem 1.2rem; cursor: pointer; transition: all .15s; display: flex; align-items: center; gap: 1rem; text-align: left; width: 100%; }
.quiz-option:hover { border-color: var(--gold); background: #fffbea; }
.quiz-option.selected { border-color: var(--navy); background: #f0f4ff; }
.quiz-option .opt-emoji { font-size: 1.5rem; flex-shrink: 0; }
.quiz-option strong { display: block; font-size: .95rem; color: var(--navy); }
.quiz-option span { font-size: .82rem; color: var(--mid); }
.quiz-progress { display: flex; gap: .4rem; margin-bottom: 1.5rem; }
.quiz-dot { width: 8px; height: 8px; border-radius: 50%; background: #dde0ec; }
.quiz-dot.done { background: var(--gold); }
.quiz-dot.active { background: var(--navy); }
.quiz-result { text-align: center; padding: 1rem 0; }
.result-flag { font-size: 5rem; }
.result-country { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin: .4rem 0; }
.result-reason { font-size: 1rem; color: var(--mid); max-width: 400px; margin: 0 auto 1.5rem; line-height: 1.6; }
.result-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .detail-grid { grid-template-columns: 1fr; }
  .team-hero-inner { justify-content: center; text-align: center; }
  .hero-stats { gap: 1.2rem; }
  .betting-cards { flex-direction: column; }
  .nav-links { gap: 1rem; }
  .fixture { flex-wrap: wrap; gap: .6rem; }
  .fixture-teams { font-size: .9rem; }
}
