*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --bg: #04080f;
    --bg2: #080f1e;
    --bg3: #0c1830;
    --card: rgba(255, 255, 255, 0.04);
    --card2: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.14);
    --gold: #f5c518;
    --gold2: #c8952a;
    --gold-glow: rgba(245, 197, 24, 0.25);
    --red: #e02020;
    --teal: #14b8a6;
    --blue: #3b82f6;
    --purple: #a855f7;
    --text: #eef2ff;
    --muted: #a0adc8;
    --radius: 16px;
    --radius-sm: 10px;
}
html {
    scroll-behavior: smooth;
    font-size: 17px;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 500;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse 100% 300% at 0% 50%,
            rgba(59, 130, 246, 0.18) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 60% 200% at 100% 50%,
            rgba(20, 184, 166, 0.12) 0%,
            transparent 50%
        ),
        #04080f;
    border-bottom: 1px solid var(--border);
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.orb1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.12);
    top: -80px;
    left: -60px;
}
.orb2 {
    width: 250px;
    height: 250px;
    background: rgba(245, 197, 24, 0.08);
    bottom: -60px;
    right: -40px;
}
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        );
    background-size: 40px 40px;
}
/* horizontal band layout */
.hero-band {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}
.hero-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.host-emoji {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    line-height: 1;
}
.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}
.hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.4rem;
    line-height: 0.9;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-year {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.4rem;
    line-height: 0.9;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}
.hero-tagline {
    font-size: 0.86rem;
    color: var(--muted);
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
}
.stat-strip {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.7rem;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.stat-lbl {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
}
.stat-div {
    width: 1px;
    height: 28px;
    background: var(--border2);
}

/* COUNTDOWN */
.countdown-wrap {
    flex-shrink: 0;
}
.countdown-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    text-align: center;
}
.countdown {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}
.cd-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border2);
    border-radius: 7px;
    padding: 0.3rem 0.6rem;
    min-width: 44px;
    text-align: center;
}
.cd-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.cd-lbl {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
}
.cd-sep {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 12px;
}
@keyframes bounce {
    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        transform: rotate(45deg) translate(3px, 3px);
    }
}

/* ── NAV ──────────────────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(4, 8, 15, 0.88);
    backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    overflow-x: auto;
    gap: 0.25rem;
    scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar {
    display: none;
}
.nav-logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-flags {
    font-family: sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15rem;
}
.nav-btn {
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.03em;
}
.nav-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    right: 0.5rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s;
    border-radius: 2px;
}
.nav-btn:hover {
    color: var(--text);
}
.nav-btn.active {
    color: var(--text);
}
.nav-btn.active::after {
    transform: scaleX(1);
}
nav.kb-focus {
    border-bottom-color: rgba(245, 197, 24, 0.45);
    transition: border-bottom-color 0.2s;
}
.group-tabs.kb-focus,
.filter-row.kb-focus {
    outline: 1px solid rgba(245, 197, 24, 0.35);
    outline-offset: 4px;
    border-radius: 6px;
}

/* ── MAIN ─────────────────────────────────────── */
main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0.75rem;
}
section {
    padding: 2rem 0;
    display: none;
}
section.active {
    display: block;
}

/* ── SECTION HEADER ───────────────────────────── */
.s-head {
    margin-bottom: 1.1rem;
}
.s-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.s-sub {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* ── CARDS ────────────────────────────────────── */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
    backdrop-filter: blur(12px);
}
.card-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

/* ── GROUPS ───────────────────────────────────── */
.group-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.g-tab {
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    background: var(--card);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--muted);
    font-family: "Inter", sans-serif;
}
.g-tab:hover {
    background: var(--card2);
    color: var(--text);
    border-color: var(--border2);
}
.g-tab.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}

.group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 900px) {
    .group-grid {
        grid-template-columns: 1fr;
    }
}

/* STANDINGS */
.standings-table {
    width: 100%;
    border-collapse: collapse;
}
.standings-table th {
    font-size: 0.76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    padding: 0.3rem 0.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.standings-table th:first-child,
.standings-table th:nth-child(2) {
    text-align: left;
}
.standings-table td {
    padding: 0.4rem 0.25rem;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.standings-table td:nth-child(2) {
    text-align: left;
}
.standings-table tr:last-child td {
    border-bottom: none;
}
.standings-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}
.team-cell {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.t-flag {
    font-size: 1rem;
}
.t-name {
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}
.t-code {
    font-size: 0.74rem;
    color: var(--muted);
    font-family: monospace;
    display: block;
}
.pts-cell {
    font-weight: 800;
    color: var(--gold);
}
.pos-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}
.pos-1 {
    background: rgba(245, 197, 24, 0.2);
    color: var(--gold);
}
.pos-2 {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}
.pos-3 {
    background: rgba(107, 114, 128, 0.25);
    color: #9ca3af;
}
.pos-4 {
    background: rgba(220, 38, 38, 0.15);
    color: #f87171;
}

/* MATCH CARDS */
.match-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.match-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 0.5rem 0.65rem;
    transition: background 0.15s;
}
.match-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border2);
}
.match-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: space-between;
}
.m-team {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 700;
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
}
.m-team.right {
    flex-direction: row-reverse;
    justify-content: flex-start;
}
.m-team span:not(.m-flag) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-flag {
    font-size: 1rem;
    flex-shrink: 0;
}
.m-score {
    background: rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    padding: 0.18rem 0.5rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.3rem;
    min-width: 48px;
    text-align: center;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold);
    flex-shrink: 0;
}
.m-score.live {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}
.match-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    margin-top: 0.28rem;
    font-size: 0.78rem;
    color: var(--muted);
    gap: 0.3rem;
}
.m-time {
    font-weight: 600;
    color: var(--text);
    opacity: 0.65;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-venue {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}
.m-ground-icon {
    display: none;
}
.status-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.16rem 0.45rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    justify-self: end;
}
.s-upcoming {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}
.s-live {
    background: rgba(34, 197, 94, 0.25);
    color: #4ade80;
    animation: blink 1.2s ease infinite;
}
.s-done {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
}
.s-awaiting {
    background: rgba(245, 197, 24, 0.15);
    color: #f5c518;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ── FIXTURES ─────────────────────────────────── */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1rem;
}
.f-btn {
    padding: 0.25rem 0.55rem;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    font-size: 0.84rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--muted);
    font-family: "Inter", sans-serif;
}
.f-btn:hover {
    border-color: var(--border2);
    color: var(--text);
}
.f-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 0 10px var(--gold-glow);
}
.date-header {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    color: var(--text);
    margin: 1.25rem 0 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.date-header::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}
.date-round-tag {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--card2);
    padding: 0.18rem 0.45rem;
    border-radius: 3px;
    font-family: "Inter", sans-serif;
}

/* ── KNOCKOUT ─────────────────────────────────── */
.bracket-scroll {
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
}
.bracket-grid {
    display: flex;
    min-width: 900px;
    gap: 0;
}
.b-round {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}
.b-round:last-child {
    border-right: none;
}
.b-round-head {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    padding: 0.5rem 0.35rem;
    background: rgba(245, 197, 24, 0.06);
    border-bottom: 1px solid rgba(245, 197, 24, 0.15);
}
.b-round-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0.5rem 0.35rem;
    gap: 0.3rem;
}
.b-match {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    font-size: 0.86rem;
    transition: all 0.15s;
}
.b-match:hover {
    border-color: var(--border2);
    background: var(--card2);
}
.b-team {
    padding: 0.3rem 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border-bottom: 1px solid var(--border);
}
.b-team:last-child {
    border-bottom: none;
}
.b-team .bf {
    font-size: 0.78rem;
    flex: none;
}
.b-team span {
    color: var(--muted);
    flex: 1;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.b-team .bs {
    flex: none;
    font-weight: 800;
    color: var(--text);
    font-size: 0.9rem;
    width: 1.6rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.b-team.b-winner {
    background: rgba(245, 197, 24, 0.07);
}
.b-team.b-winner span {
    color: var(--text);
}
.b-team.b-winner .bs {
    color: var(--gold);
}
.ko-list {
    margin-top: 1.5rem;
}
.ko-list .s-sub {
    margin-bottom: 0.65rem;
}

/* ── STADIUMS ─────────────────────────────────── */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}
.venue-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
    cursor: default;
}
.venue-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
}
.venue-strip {
    height: 4px;
}
.venue-strip.us {
    background: linear-gradient(90deg, #3b82f6, #e02020, #3b82f6);
}
.venue-strip.ca {
    background: linear-gradient(90deg, #e02020, #fff2, #e02020);
}
.venue-strip.mx {
    background: linear-gradient(90deg, #16a34a, #fff2, #e02020);
}
.venue-body {
    padding: 0.75rem;
}
.venue-country-flag {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
    display: block;
}
.venue-country {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.venue-name {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.venue-city {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.65rem;
}
.venue-stats {
    display: flex;
    gap: 1rem;
}
.v-stat-val {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1;
}
.v-stat-lbl {
    font-size: 0.74rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.v-tz {
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ── TEAMS ────────────────────────────────────── */
.confed-block {
    margin-bottom: 1.75rem;
}
.confed-head {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.confed-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}
.confed-count {
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    background: var(--card2);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    color: var(--muted);
    letter-spacing: 0.06em;
}
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.4rem;
}
.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem 0.4rem;
    text-align: center;
    transition: border-color 0.15s;
    cursor: default;
}
.team-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
}
.tc-flag {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
}
.tc-name {
    font-weight: 700;
    font-size: 0.86rem;
    margin-bottom: 0.15rem;
    line-height: 1.25;
}
.tc-code {
    font-size: 0.76rem;
    color: var(--muted);
    font-family: monospace;
    margin-bottom: 0.35rem;
}
.tc-group {
    display: inline-block;
    padding: 0.12rem 0.4rem;
    background: rgba(245, 197, 24, 0.15);
    color: var(--gold);
    border-radius: 3px;
    font-size: 0.76rem;
    font-weight: 800;
    border: 1px solid rgba(245, 197, 24, 0.2);
}

/* ── LIVE WIDGET ──────────────────────────────── */
.live-widget {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: var(--muted);
    flex-shrink: 0;
    padding: 0 0.5rem;
}
.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--muted);
    flex-shrink: 0;
    transition: background 0.3s;
}
.ld-ok {
    background: #4ade80 !important;
}
.refresh-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 0.18rem 0.6rem;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.78rem;
    font-family: "Inter", sans-serif;
    transition: all 0.2s;
    line-height: 1.6;
}
.refresh-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.score-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.2rem;
    text-align: center;
    font-style: italic;
}
.match-goals {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--muted);
    gap: 0.5rem;
    line-height: 1.4;
}
.mg-1 {
    flex: 1;
}
.mg-2 {
    flex: 1;
    text-align: right;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
    text-align: center;
    padding: 1.25rem 1rem 2rem;
    color: var(--muted);
    font-size: 0.86rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}
footer p + p {
    margin-top: 0.35rem;
    opacity: 0.5;
}

/* ── UTILITY ──────────────────────────────────── */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s,
        transform 0.5s;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .hero-band {
        gap: 1rem;
        padding: 0.75rem 1rem;
    }
    .hero-brand {
        gap: 0.6rem;
    }
    .host-emoji {
        font-size: 1.1rem;
        letter-spacing: 0.2rem;
    }
    .hero-title,
    .hero-year {
        font-size: 1.6rem;
    }
    .stat-strip {
        gap: 0.6rem;
        justify-content: flex-start;
    }
    .stat-num {
        font-size: 1.3rem;
    }
    .countdown {
        gap: 0.25rem;
    }
    .cd-item {
        min-width: 36px;
        padding: 0.25rem 0.4rem;
    }
    .cd-num {
        font-size: 1.1rem;
    }
    .cd-sep {
        font-size: 1.1rem;
    }
    .venues-grid {
        grid-template-columns: 1fr 1fr;
    }
    .teams-grid {
        grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    }
    .nav-logo {
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }
    .nav-btn {
        padding: 0.75rem 0.75rem;
        font-size: 0.88rem;
    }
    .live-widget {
        font-size: 0.78rem;
    }
}
