/* ============================================================
   World Cup 2026 Canada — style.css
   Domain: worldcup-2026.ca | Lang: en-CA
   Design: Navy Blue + Gold + Canadian Red
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Bebas+Neue&family=Oswald:wght@400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --bg: #060d1a;
    --secondary: #0a1628;
    --card-bg: #0e1e35;
    --card-hover: #122440;
    --border: rgba(180, 150, 60, .18);
    --border-light: rgba(180, 150, 60, .08);

    --gold: #c9a227;
    --gold-light: #e8c44a;
    --gold-dim: #8a6d18;
    --red: #d42b2b;
    --accent: #c9a227;
    --accent2: #1a56db;

    --text: #e8edf5;
    --text-muted: #7a90b0;
    --text-dim: #4a5f7a;

    --gradient: linear-gradient(135deg, #c9a227, #e8c44a);
    --gradient-red: linear-gradient(135deg, #b01e1e, #d42b2b);
    --gradient-blue: linear-gradient(135deg, #1a3a6b, #1a56db);
    --gradient-hero: linear-gradient(135deg, #060d1a 0%, #0a1f40 50%, #060d1a 100%);

    --font-main: 'Inter', sans-serif;
    --font-display: 'Bebas Neue', cursive;
    --font-heading: 'Oswald', sans-serif;

    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    --shadow: 0 4px 20px rgba(0, 0, 0, .4);
    --shadow-gold: 0 0 30px rgba(201, 162, 39, .2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, .5);
    --transition: .22s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

ul,
ol {
    list-style: none;
}

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    padding: .5rem 1rem;
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 1rem;
}

/* ── Container ────────────────────────────────────────────── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 13, 26, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    height: 68px;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1;
    color: #fff;
    letter-spacing: .04em;
}

.logo-text strong {
    color: var(--gold);
}

.logo-text em {
    display: block;
    font-style: normal;
    font-size: .75rem;
    color: var(--text-muted);
    letter-spacing: .08em;
    font-family: var(--font-main);
    font-weight: 500;
}

.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: .15rem;
}

.main-nav a {
    display: block;
    padding: .45rem .85rem;
    font-size: .83rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 6px;
    letter-spacing: .02em;
    white-space: nowrap;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(201, 162, 39, .08);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: var(--gradient);
    color: #000;
    font-weight: 800;
    font-size: .8rem;
    padding: .45rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .05em;
    flex-shrink: 0;
}

.header-cta:hover {
    opacity: .88;
    color: #000;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    /* 68px = explicit header height in CSS */
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 13, 26, .98);
    z-index: 200;
    overflow-y: auto;
    padding: 1.5rem 1.25rem;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.mobile-nav a {
    display: block;
    padding: .75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.mobile-nav a:hover {
    color: var(--gold);
    border-color: var(--border);
}

/* ── Countdown Bar ──────────────────────────────────────── */
.countdown-bar {
    position: sticky;
    top: 0;
    z-index: 110;
    background: linear-gradient(90deg, #0a1628, #0e2040, #0a1628);
    border-bottom: 1px solid var(--border);
    padding: .6rem 0;
    text-align: center;
    font-size: .82rem;
    color: var(--text-muted);
}

.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-units {
    display: flex;
    gap: .75rem;
}

.cnt-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: .3rem .6rem;
    min-width: 46px;
}

.cnt-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1;
}

.cnt-label {
    font-size: .58rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-dim);
}

/* ── Hero ─────────────────────────────────────────────────── */
.site-hero {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.45) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 13, 26, .9) 0%, rgba(10, 32, 64, .6) 60%, rgba(6, 13, 26, .8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 162, 39, .12);
    border: 1px solid rgba(201, 162, 39, .3);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: .02em;
    color: #fff;
    margin-bottom: .75rem;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--gold);
    -webkit-text-stroke: .5px var(--gold-dim);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gradient);
    color: #000;
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .04em;
    padding: .8rem 1.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary:hover {
    color: #000;
    opacity: .88;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    padding: .78rem 1.6rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero Stats Strip */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-stat {
    background: rgba(10, 22, 40, .85);
    backdrop-filter: blur(8px);
    padding: 1.25rem 1rem;
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--gold);
}

.hero-stat-lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-top: .2rem;
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
    padding: 4.5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: .5rem;
}

.section-header h2 span {
    color: var(--gold);
}

.section-sub {
    color: var(--text-muted);
    font-size: .92rem;
    max-width: 560px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, .3);
    border-radius: 50px;
    padding: .2rem .75rem;
    margin-bottom: .75rem;
}

/* ── Host Nations Banner ──────────────────────────────────── */
.hosts-section {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.host-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.host-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.host-card-flag {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.host-card-flag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--card-bg));
}

.host-card-body {
    padding: 1.25rem;
}

.host-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: .35rem;
}

.host-card p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.host-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .75rem;
}

.host-tag {
    padding: .18rem .6rem;
    background: rgba(201, 162, 39, .1);
    border: 1px solid rgba(201, 162, 39, .2);
    border-radius: 4px;
    font-size: .72rem;
    color: var(--gold);
    font-weight: 600;
}

/* ── Groups Grid ─────────────────────────────────────────── */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.group-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.group-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    color: var(--text);
}

.group-card-header {
    background: linear-gradient(135deg, var(--card-hover), var(--secondary));
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.group-letter {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.group-card-body {
    padding: .85rem 1rem;
    flex: 1;
}

.group-teams {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.group-team {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--text-muted);
}

.group-team img {
    width: 18px;
    height: 14px;
    border-radius: 2px;
}

.group-odds {
    font-size: .68rem;
    color: var(--gold);
    font-weight: 700;
}

.group-link-btn {
    display: block;
    margin: .75rem 1rem 1rem;
    text-align: center;
    padding: .4rem;
    background: rgba(201, 162, 39, .08);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: var(--transition);
}

.group-card:hover .group-link-btn {
    background: rgba(201, 162, 39, .15);
}

/* ── Favourites / Odds ───────────────────────────────────── */
.odds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.odds-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem .75rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.odds-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.odds-card:hover {
    border-color: rgba(201, 162, 39, .4);
    transform: translateY(-3px);
}

.odds-card:hover::before {
    opacity: 1;
}

.odds-card.gold-card {
    border-color: rgba(201, 162, 39, .5);
}

.odds-card.gold-card::before {
    opacity: 1;
}

.odds-flag {
    font-size: 2.4rem;
    display: block;
    margin-bottom: .5rem;
}

.odds-flag img {
    width: 48px;
    height: 32px;
    border-radius: 3px;
    margin: 0 auto .5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.odds-country {
    font-weight: 700;
    font-size: .88rem;
    color: #fff;
    display: block;
    margin-bottom: .35rem;
}

.odds-value {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.odds-label {
    font-size: .65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .2rem;
    display: block;
}

/* ── Comparison Table ────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .83rem;
}

.data-table caption {
    font-size: .78rem;
    color: var(--text-muted);
    padding: .75rem;
    text-align: left;
    caption-side: top;
}

.data-table thead th {
    background: var(--secondary);
    color: var(--gold);
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background: rgba(201, 162, 39, .04);
}

.data-table tbody tr.row-top {
    background: rgba(201, 162, 39, .06);
}

.data-table td {
    padding: .75rem 1rem;
    vertical-align: middle;
    color: var(--text-muted);
}

.data-table td:first-child {
    color: #fff;
    font-weight: 600;
}

.cell-gold {
    color: var(--gold) !important;
    font-weight: 700;
}

.cell-green {
    color: #4ade80 !important;
}

.cell-red {
    color: #f87171 !important;
}

.medal {
    font-size: 1rem;
}

/* ── Timeline Chart ──────────────────────────────────────── */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    position: relative;
}

.timeline-date {
    padding: 1.25rem .75rem 1.25rem 0;
    text-align: right;
    font-family: var(--font-heading);
    font-size: .85rem;
    color: var(--gold);
    font-weight: 700;
    border-right: 2px solid var(--border);
    position: relative;
}

.timeline-date::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--bg);
}

.timeline-body {
    padding: 1.25rem 0 1.25rem 1.25rem;
}

.timeline-body h4 {
    font-size: .92rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: .2rem;
}

.timeline-body p {
    font-size: .8rem;
    color: var(--text-muted);
}

/* ── Stadium Cards ──────────────────────────────────────── */
.stadiums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.stadium-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.stadium-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.stadium-img {
    height: 140px;
    background: var(--secondary);
    overflow: hidden;
}

.stadium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.stadium-card:hover .stadium-img img {
    transform: scale(1.05);
}

.stadium-body {
    padding: 1rem;
}

.stadium-city {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: .25rem;
}

.stadium-body h3 {
    font-size: .95rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: .4rem;
}

.stadium-meta {
    display: flex;
    gap: .75rem;
    font-size: .75rem;
    color: var(--text-muted);
}

/* ── Canada Special Section ─────────────────────────────── */
.canada-section {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.canada-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.canada-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
}

.canada-content h2 span {
    color: var(--red);
}

.canada-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.canada-fact {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.canada-fact-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.canada-fact-lbl {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

/* ── Schedule section ────────────────────────────────────── */
.schedule-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, .08);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, .3);
}

.faq-item summary {
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] {
    border-color: rgba(201, 162, 39, .3);
}

.faq-body {
    padding: 0 1.25rem 1.1rem;
    font-size: .86rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── SEO Content ─────────────────────────────────────────── */
.seo-section {
    background: var(--secondary);
    border-top: 1px solid var(--border);
}

.seo-article h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.seo-article h3 {
    font-size: 1.05rem;
    color: var(--gold);
    margin: 1.5rem 0 .6rem;
    font-weight: 700;
}

.seo-article p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: .9rem;
}

.seo-article strong {
    color: var(--text);
}

.text-link {
    color: var(--gold);
    text-decoration: underline dotted;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--gold-light);
}

.seo-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: .6rem;
    margin: 1.25rem 0;
}

.seo-links a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .9rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.seo-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Progress bars (chart alternative) ──────────────────── */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.bar-row {}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: .3rem;
}

.bar-label strong {
    color: #fff;
}

.bar-label span {
    color: var(--gold);
    font-weight: 700;
}

.bar-track {
    height: 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 1s ease;
}

.bar-fill.red {
    background: var(--gradient-red);
}

.bar-fill.blue {
    background: var(--gradient-blue);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: .82rem;
    color: var(--text-muted);
    margin: .75rem 0 1rem;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #fff;
}

.footer-logo strong {
    color: var(--gold);
}

.footer-nav h4 {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-dim);
    font-weight: 700;
    margin-bottom: .9rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.footer-nav a {
    font-size: .83rem;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--gold);
    padding-left: .3rem;
}

.footer-social {
    display: flex;
    gap: .65rem;
    margin-top: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .75rem;
    color: var(--text-dim);
}

/* ── Utility ──────────────────────────────────────────────── */
.text-gold {
    color: var(--gold);
}

.text-red {
    color: var(--red);
}

.text-green {
    color: #4ade80;
}

.badge {
    display: inline-block;
    padding: .15rem .55rem;
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 700;
}

.badge-gold {
    background: rgba(201, 162, 39, .15);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, .3);
}

.badge-red {
    background: rgba(212, 43, 43, .15);
    color: #f87171;
    border: 1px solid rgba(212, 43, 43, .3);
}

.badge-blue {
    background: rgba(26, 86, 219, .15);
    color: #60a5fa;
    border: 1px solid rgba(26, 86, 219, .3);
}

.badge-green {
    background: rgba(74, 222, 128, .1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, .2);
}

.see-all {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .83rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.see-all:hover {
    color: var(--gold-light);
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 3rem 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:1024px) {
    .groups-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media(max-width:768px) {
    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hosts-grid {
        grid-template-columns: 1fr;
    }

    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stadiums-grid {
        grid-template-columns: 1fr 1fr;
    }

    .canada-grid {
        grid-content-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .odds-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* inline grids: 3-col → 1-col on mobile */
    [style*="repeat(3"] { grid-template-columns: 1fr !important }
    [style*="2fr 1fr"]  { grid-template-columns: 1fr !important }

    /* Countdown bar text hidden, numbers centered */
    .countdown-bar .countdown-inner > span { display: none }
    .countdown-inner { justify-content: center; gap: .5rem }
    .countdown-bar { padding: .4rem 0 }

    /* Sticky countdown-bar on inner pages */
    .cbar { position: sticky; top: 0; z-index: 110 }
    .countdown-bar { position: sticky; top: 0; z-index: 110 }
}

@media(max-width:480px) {
    .groups-grid {
        grid-template-columns: 1fr;
    }

    .stadiums-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .odds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .canada-facts {
        grid-template-columns: 1fr 1fr;
    }
}