/* ============================================================
   Sports Listings HQ — "Floodlit broadcast board" design system
   Display: Archivo Black · Body: Barlow · Labels: Broale
   ============================================================ */

@font-face {
    font-family: 'Archivo Black';
    src: url('fonts/archivo-black-400.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('fonts/barlow-400.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('fonts/barlow-500.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('fonts/barlow-600.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('fonts/barlow-700.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Broale';
    src: url('fonts/broale-400.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

:root {
    --pitch: #050b14;
    --night: #0a1830;
    --panel: #0d1e38;
    --panel-hi: #123056;
    --line: rgba(147, 164, 188, 0.14);
    --gold: #d6b74b;
    --gold-hi: #f4d873;
    --gold-dim: rgba(214, 183, 75, 0.32);
    --gold-faint: rgba(214, 183, 75, 0.12);
    --slate: #aebdd1;
    --slate-dim: #8195ad;
    --white: #f2f6fc;
    --display: 'Archivo Black', 'Arial Black', sans-serif;
    --label: 'Broale', Arial, sans-serif;
    --body: 'Barlow', -apple-system, 'Segoe UI', Arial, sans-serif;
    --radius: 14px;
    --radius-sm: 8px;
    --shell: 1120px;
}

/* ------------------------------------------------ base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--pitch);
    color: var(--white);
    font-family: var(--body);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--gold-hi); text-decoration: none; }
a:hover { color: var(--gold); }
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--gold-hi);
    outline-offset: 3px;
    border-radius: 2px;
}
h1, h2, h3 { text-wrap: balance; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; position: relative; }
.section-dark { background: transparent; }
.site-noise { display: none; }

.eyebrow {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
}
.muted-copy { color: var(--slate-dim); font-size: 15px; }

.prose { max-width: 68ch; color: var(--slate); font-size: 17.5px; }
.prose h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 24px;
    color: var(--white);
    margin: 40px 0 12px;
}
.prose p { margin: 0 0 16px; }
.prose a { border-bottom: 1px solid var(--gold-dim); }

/* --------------------------------------------- buttons ---- */
.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 7px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.button-primary {
    background: linear-gradient(180deg, var(--gold-hi), var(--gold));
    color: #0a1226;
}
.button-primary:hover { background: var(--gold-hi); color: #0a1226; }
.button-glass {
    background: transparent;
    color: var(--gold-hi);
}
.button-glass:hover { background: var(--gold-faint); color: var(--gold-hi); }
.button-xl { padding: 16px 30px; font-size: 13px; }

.text-link {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.text-link-light { color: var(--gold-hi); }

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-hi);
    box-shadow: 0 0 10px var(--gold-hi);
    flex: none;
}

/* ------------------------------------------- top strip ---- */
.top-strip {
    background: #030710;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    color: var(--slate-dim);
}
.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 34px;
    gap: 16px;
}
.live-system { display: inline-flex; align-items: center; gap: 8px; }
.top-strip-links { display: flex; gap: 18px; }
.top-strip-links a { color: var(--gold); }

/* ---------------------------------------------- header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-dim);
    transition: background 0.25s;
}
.site-header.is-scrolled { background: rgba(5, 11, 20, 0.97); }
.header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 66px;
    position: relative;
}
.brand {
    font-family: var(--display);
    font-size: 17px;
    letter-spacing: 0.01em;
    color: var(--white);
    white-space: nowrap;
}
.brand:hover { color: var(--white); }
.brand strong { color: var(--gold); font-weight: inherit; }
.brand img { height: 40px; width: auto; display: block; }

.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a {
    color: var(--slate);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--white); }
.main-nav a.is-active { color: var(--gold-hi); border-bottom-color: var(--gold); }

.header-cta {
    font-family: var(--label);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--gold);
    border-radius: 7px;
    background: linear-gradient(180deg, var(--gold-hi), var(--gold));
    color: #0a1226;
    white-space: nowrap;
}
.header-cta:hover { background: var(--gold-hi); color: #0a1226; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: 1px solid var(--gold-dim);
    border-radius: 7px;
    cursor: pointer;
}
.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gold-hi);
    display: block;
}

/* ------------------------------------------------ hero ---- */
.premium-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 11, 20, 0.42) 0%, rgba(5, 11, 20, 0.72) 58%, var(--pitch) 96%),
        url('img/hero-stadium.jpg') center 28% / cover no-repeat,
        var(--pitch);
}
.hero-orb, .hero-grid-lines { display: none; }
.premium-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 84px;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 24px;
}
.hero-kicker strong { color: var(--gold); font-weight: 400; }
.hero-kicker-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold-hi);
    box-shadow: 0 0 12px var(--gold-hi);
}
.hero-copy-block h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 5.6vw, 68px);
    line-height: 1.02;
    margin: 0 0 22px;
    letter-spacing: 0;
}
.hero-copy-block h1 span { display: block; color: var(--gold); }
.hero-copy-block > p {
    color: var(--slate);
    font-size: 18px;
    max-width: 50ch;
    margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof {
    display: flex;
    gap: 40px;
    margin-top: 44px;
    padding-top: 26px;
    border-top: 1px solid var(--gold-dim);
}
.hero-proof strong {
    display: block;
    font-family: var(--display);
    font-weight: 400;
    font-size: 30px;
    color: var(--gold-hi);
    font-variant-numeric: tabular-nums;
}
.hero-proof span {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-dim);
}

/* live board (hero side panel) */
.live-board {
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    background: rgba(10, 24, 48, 0.82);
    backdrop-filter: blur(6px);
    overflow: hidden;
}
.live-board-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--line);
}
.live-board-head h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    margin: 4px 0 0;
}
.live-board-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--slate-dim);
}
.live-board-list { display: flex; flex-direction: column; }
.live-board-item {
    display: grid;
    grid-template-columns: 62px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid var(--line);
}
.live-board-item:nth-child(odd) { background: var(--panel); }
.live-board-time {
    font-family: var(--display);
    font-weight: 400;
    font-size: 17px;
    color: var(--gold-hi);
    font-variant-numeric: tabular-nums;
}
.live-board-event span {
    display: block;
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-dim);
}
.live-board-event strong { font-size: 16px; font-weight: 600; }
.live-board-arrow { color: var(--gold); }
.live-board-empty { padding: 26px 20px; color: var(--slate); font-size: 15px; }
.live-board-footer {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--gold-faint);
}

/* sports ticker */
.sports-ticker {
    position: relative;
    border-top: 1px solid var(--gold-dim);
    background: rgba(3, 7, 16, 0.75);
    overflow: hidden;
    padding: 12px 0;
}
.sports-ticker-track {
    display: flex;
    gap: 26px;
    align-items: center;
    white-space: nowrap;
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--slate);
    animation: ticker 36s linear infinite;
    width: max-content;
}
.sports-ticker-track i {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); flex: none;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------- section heading --- */
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 34px;
}
.section-heading h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(26px, 3.4vw, 36px);
    margin: 8px 0 10px;
}
.section-heading p { color: var(--slate); margin: 0; max-width: 56ch; font-size: 17px; }

/* --------------------------------------- listing cards ---- */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 20px;
}
.listing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--night);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.listing-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.listing-card-link { position: absolute; inset: 0; z-index: 1; }
.listing-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent 70%);
}
.listing-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px 0;
}
.listing-time-block span {
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-dim);
    display: block;
}
.listing-time-block strong {
    font-family: var(--display);
    font-weight: 400;
    font-size: 24px;
    color: var(--gold-hi);
    font-variant-numeric: tabular-nums;
}
.listing-badges { display: flex; gap: 8px; }
.sport-pill, .timezone-pill {
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--slate);
}
.sport-pill { border-color: var(--gold-dim); color: var(--gold); }
.listing-card-body { padding: 12px 18px 14px; }
.listing-league {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-dim);
}
.listing-card-body h3 {
    margin: 6px 0 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
}
.where-to-watch {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding: 12px 18px 16px;
    background: var(--panel);
}
.where-to-watch-heading {
    display: flex;
    justify-content: space-between;
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-dim);
    margin-bottom: 10px;
}
.where-to-watch-heading strong { color: var(--gold); font-weight: 400; }
.territory-list { display: flex; flex-direction: column; gap: 6px; }
.territory-row {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    font-size: 15px;
}
.territory-row span { color: var(--slate-dim); white-space: nowrap; }
.territory-row strong { color: var(--white); font-weight: 600; text-align: right; }
.listing-card-footer {
    padding: 0 18px 16px;
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--panel);
}

/* ------------------------------------------ page heroes --- */
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 11, 20, 0.55) 0%, var(--pitch) 92%),
        url('img/hero-stadium.jpg') center 30% / cover no-repeat,
        var(--pitch);
    border-bottom: 1px solid var(--gold-dim);
}
.page-hero-grid, .sport-hero-grid { display: none; }
.page-hero-inner { padding: 72px 0 56px; }
.page-hero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.04;
    margin: 14px 0 14px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--slate); margin: 0 0 8px; max-width: 60ch; }
.page-hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 26px;
}
.page-hero-stats strong {
    display: block;
    font-family: var(--display);
    font-weight: 400;
    font-size: 26px;
    color: var(--gold-hi);
    font-variant-numeric: tabular-nums;
}
.page-hero-stats span {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-dim);
}

.date-navigator, .compact-date-navigator {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.date-navigator label span, .compact-date-navigator label span {
    display: block;
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-dim);
    margin-bottom: 6px;
}
.date-navigator input[type="date"], .compact-date-navigator input[type="date"] {
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--white);
    font-family: var(--body);
    font-size: 15px;
    padding: 11px 14px;
    border-radius: 7px;
    color-scheme: dark;
}
.date-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-dim);
    border-radius: 7px;
    color: var(--gold-hi);
    font-size: 18px;
}
.date-arrow:hover { background: var(--gold-faint); }

/* ----------------------------------------- listings page -- */
.listing-toolbar-wrap {
    position: sticky;
    top: 66px;
    z-index: 30;
    background: rgba(5, 11, 20, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}
.listing-toolbar {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.listing-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 260px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--slate-dim);
}
.listing-search input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--body);
    font-size: 15px;
    padding: 12px 0;
    outline: none;
}
.sport-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: none;
    color: var(--slate);
    cursor: pointer;
}
.filter-chip:hover { border-color: var(--gold-dim); color: var(--white); }
.filter-chip.is-active {
    background: linear-gradient(180deg, var(--gold-hi), var(--gold));
    border-color: var(--gold);
    color: #0a1226;
}
.listing-results-meta { color: var(--slate); font-size: 14px; }

.listings-section { padding: 46px 0 72px; }
.listing-group { margin-bottom: 44px; }
.group-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 24px;
    margin: 0 0 4px;
}
.league-block { margin-top: 22px; }
.league-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    overflow: hidden;
    border: 1px solid var(--gold-dim);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 14px;
    background:
        linear-gradient(90deg, rgba(5, 11, 20, 0.95) 0%, rgba(10, 24, 48, 0.86) 55%, rgba(5, 11, 20, 0.62) 100%),
        var(--league-image, linear-gradient(90deg, var(--panel), var(--panel))) right center / cover no-repeat,
        var(--panel);
}
.league-heading h2,
.league-heading h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 19px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 12px rgba(2, 6, 11, 0.85);
}
.league-heading > span {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-hi);
    background: rgba(214, 183, 75, 0.14);
    border: 1px solid var(--gold-dim);
    border-radius: 999px;
    padding: 6px 13px;
    white-space: nowrap;
}
.no-filter-results { color: var(--slate-dim); padding: 30px 0; }

/* -------------------------------------------- event page -- */
.event-page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-dim);
    background:
        linear-gradient(180deg, rgba(5, 11, 20, 0.6) 0%, var(--pitch) 94%),
        url('img/hero-stadium.jpg') center 32% / cover no-repeat,
        var(--pitch);
}
.event-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 44px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 56px;
}
.event-primary-meta > div > span {
    display: block;
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-dim);
}
.event-primary-meta > div {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(10, 24, 48, 0.6);
    padding: 10px 16px;
}
.event-primary-meta strong { font-size: 15px; }
.event-watch-card h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    margin: 10px 0 10px;
}
.event-watch-card p { color: var(--slate); font-size: 16px; margin: 0 0 18px; }
@media (max-width: 900px) {
    .event-hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

.event-breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-dim);
    padding-top: 26px;
    flex-wrap: wrap;
}
.event-breadcrumbs a { color: var(--slate); }
.event-primary-meta {
    display: flex;
    gap: 14px;
    margin: 18px 0 14px;
    flex-wrap: wrap;
}
.event-watch-card {
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    background: rgba(10, 24, 48, 0.85);
    padding: 24px;
}
.event-countries-section { padding: 56px 0 76px; }
.country-index {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0 30px;
}
.country-broadcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.country-broadcast-card {
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    background: linear-gradient(160deg, #0e2140, #081527);
    overflow: hidden;
}
.country-broadcast-head {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(90deg, var(--gold-hi), var(--gold));
    padding: 12px 16px;
}
.country-broadcast-head .country-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 9px;
    background: rgba(8, 16, 32, 0.9);
    color: var(--gold-hi);
    font-family: var(--body);
    font-weight: 800;
    font-size: 14px;
    flex: none;
}
.country-broadcast-head > div { display: flex; flex-direction: column; gap: 1px; }
.country-broadcast-head span:not(.country-index) {
    font-family: var(--body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(8, 16, 32, 0.65);
}
.country-broadcast-head h3 {
    margin: 0;
    font-family: var(--body);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.02em;
    color: #081020;
}
.country-channel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 16px;
}
.country-channel-list span {
    font-family: var(--body);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--white);
    background: rgba(18, 48, 86, 0.85);
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 6px 11px;
    white-space: nowrap;
}
.related-events-section { padding-bottom: 80px; }

/* -------------------------------------------- channels ---- */
.channel-network-section { position: relative; }
.channel-aurora { display: none; }
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.channel-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--night);
    padding: 20px;
    gap: 16px;
    transition: border-color 0.2s;
}
.channel-card:hover { border-color: var(--gold-dim); }
.channel-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.channel-icon {
    font-family: var(--display);
    font-size: 15px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--gold-hi), var(--gold));
    color: #081020;
}
.channel-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--slate-dim);
    border: 1px solid var(--line);
    padding: 5px 10px;
    border-radius: 999px;
}
.channel-status-live { color: var(--gold-hi); border-color: var(--gold-dim); }
.channel-overline {
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--slate-dim);
    text-transform: uppercase;
}
.channel-card-body h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 21px;
    margin: 6px 0 8px;
}
.channel-card-body p { color: var(--slate); font-size: 15.5px; margin: 0; }
.channel-card-footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    font-size: 13.5px;
    color: var(--slate-dim);
}
.channel-card-footer a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.channel-card-footer a span:last-child {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* channel directory (channels page) */
.channel-directory { display: flex; flex-direction: column; gap: 14px; }
.channel-directory-card {
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--night);
    padding: 18px 20px;
}
.channel-directory-number {
    font-family: var(--display);
    font-size: 18px;
    color: var(--gold-dim);
}
.channel-directory-content h3 { margin: 0 0 4px; font-size: 17px; }
.channel-directory-content p { margin: 0; color: var(--slate); font-size: 15.5px; }
.channel-directory-meta { margin-left: auto; text-align: right; }
.channel-directory-link {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.channel-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
}
.benefit-index {
    font-family: var(--display);
    color: var(--gold-dim);
    font-size: 16px;
}
.channel-coming-soon { color: var(--slate-dim); }
.sport-channel-panel {
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    background: var(--night);
    padding: 24px;
}
.sport-channel-top { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------- experience block --- */
.experience-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.experience-copy h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(26px, 3.2vw, 34px);
    margin: 10px 0 14px;
}
.experience-copy > p { color: var(--slate); margin: 0 0 26px; }
.feature-stack { display: flex; flex-direction: column; gap: 18px; }
.feature-stack article {
    display: flex;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--night);
    padding: 16px 18px;
}
.feature-stack article > span {
    font-family: var(--display);
    color: var(--gold-dim);
    font-size: 15px;
}
.feature-stack h3 { margin: 0 0 4px; font-size: 16px; }
.feature-stack p { margin: 0; color: var(--slate); font-size: 15.5px; }

.experience-visual { position: relative; }
.visual-ring { display: none; }
.visual-panel {
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    background: var(--night);
}
.visual-panel-main { padding: 26px; }
.visual-panel-label {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}
.visual-score {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 16px 0;
}
.visual-score span {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--gold-hi);
}
.visual-score strong {
    font-family: var(--display);
    font-weight: 400;
    font-size: 40px;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}
.visual-panel-main h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 18px;
}
.visual-broadcasts { display: flex; flex-direction: column; }
.visual-broadcasts > div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
}
.visual-broadcasts span { color: var(--slate-dim); }
.visual-broadcasts strong { color: var(--slate); font-weight: 600; }
.visual-panel-float {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 18px;
    font-size: 13px;
    color: var(--slate);
}

/* ------------------------------------ sponsor / adverts --- */
.sponsor-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    border: 1.5px solid var(--gold);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--panel) 0%, var(--night) 100%);
    padding: 40px 44px;
    flex-wrap: wrap;
}
.sponsor-panel h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 32px);
    margin: 10px 0 10px;
    max-width: 22ch;
}
.sponsor-panel p { color: var(--slate); margin: 0; max-width: 52ch; }
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.commercial-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--night);
    padding: 22px;
}
.commercial-card h3 { margin: 0 0 8px; font-size: 17px; }
.commercial-card p { margin: 0; color: var(--slate); font-size: 15.5px; }
.advertise-hero p { max-width: 58ch; }

.ad-slot { max-width: var(--shell); margin: 24px auto; padding: 0 22px; }

/* ------------------------------------------ empty state --- */
.empty-state, .premium-empty-state {
    border: 1px dashed var(--gold-dim);
    border-radius: var(--radius);
    padding: 44px 30px;
    text-align: center;
    color: var(--slate-dim);
}
.empty-state-ring { display: none; }

/* ---------------------------------------------- footer ---- */
.site-footer {
    position: relative;
    border-top: 1px solid var(--gold-dim);
    background: #030710;
    margin-top: 40px;
}
.footer-glow { display: none; }
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-top: 52px;
    padding-bottom: 40px;
}
.footer-brand-column p { color: var(--slate); font-size: 15px; max-width: 34ch; }
.footer-logo {
    font-family: var(--display);
    font-size: 16px;
    color: var(--white);
}
.footer-logo img { height: 40px; width: auto; }
.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--slate-dim);
    margin-top: 8px;
}
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h2 {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 6px;
    font-weight: 400;
}
.footer-column a { color: var(--slate); font-size: 15px; }
.footer-column a:hover { color: var(--white); }
.footer-column a span { color: var(--slate-dim); font-size: 12px; margin-left: 6px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 26px;
    border-top: 1px solid var(--line);
    color: var(--slate-dim);
    font-size: 13px;
    flex-wrap: wrap;
}

/* ------------------------------------------- reveal fx ---- */
/* Hidden state only applies once JS has confirmed it is running, so
   content is never invisible to crawlers or users without JavaScript. */
html.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html.js [data-reveal] { opacity: 1; transform: none; }
}

/* ------------------------------------------- responsive --- */
@media (max-width: 960px) {
    .premium-hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 72px; }
    .experience-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(5, 11, 20, 0.98);
        border-bottom: 1px solid var(--gold-dim);
        padding: 10px 22px 18px;
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .main-nav a.is-active { border-bottom-color: var(--gold); }
    .menu-toggle { display: flex; margin-left: auto; }
    .header-cta { display: none; }
    .top-strip-links span { display: none; }
    .hero-proof { gap: 24px; flex-wrap: wrap; }
    .section { padding: 52px 0; }
    .section-heading { flex-direction: column; align-items: flex-start; }
    .sponsor-panel { padding: 28px 24px; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .listing-toolbar-wrap { position: static; }
    .channel-directory-card { flex-wrap: wrap; }
    .channel-directory-meta { margin-left: 0; text-align: left; }
}

/* ---- Sport tiles (homepage, below the ticker) ---- */
.sport-tiles-section { padding: 56px 0 8px; }

.sport-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sport-tile {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
    aspect-ratio: 3 / 2;
    transform: translateY(0);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sport-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.sport-tile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(5, 11, 20, 0.05) 0%,
        rgba(5, 11, 20, 0.25) 45%,
        rgba(5, 11, 20, 0.88) 100%);
}

.sport-tile-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-left: 3px solid var(--gold);
}

.sport-tile-label strong {
    font-family: var(--display);
    font-weight: 400;
    font-size: 21px;
    letter-spacing: 0.02em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.15;
}

.sport-tile-label span {
    font-family: var(--body);
    font-weight: 500;
    font-size: 14px;
    color: var(--slate);
}

a.sport-tile:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dim);
    box-shadow: 0 18px 38px rgba(2, 6, 11, 0.55);
}

a.sport-tile:hover img { transform: scale(1.05); }

.sport-tile-soon { cursor: default; }

.sport-tile-soon img { filter: grayscale(0.35); opacity: 0.75; }

.sport-tile-soon .sport-tile-label span {
    color: var(--gold-hi);
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .sport-tiles { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .sport-tile-label strong { font-size: 18px; }
}

@media (max-width: 560px) {
    .sport-tiles { grid-template-columns: 1fr; }
    .sport-tiles-section { padding: 40px 0 0; }
}

/* ---- Brand logo (inline SVG wordmark) ---- */
.brand-logo { height: 44px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 38px; } }

/* ---- Timezone picker (top strip) ---- */
.tz-picker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--slate);
}
.tz-picker select {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--slate);
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    cursor: pointer;
}
.tz-picker select:hover { border-color: var(--gold-dim); color: var(--white); }
.tz-picker select option { background: var(--night); color: var(--white); }

/* ---- Quick date tabs ---- */
.date-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 18px;
}
.date-tab {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(13, 30, 56, 0.55);
    min-width: 92px;
}
.date-tab span {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-dim);
}
.date-tab strong {
    font-family: var(--body);
    font-weight: 700;
    font-size: 15px;
    color: var(--slate);
}
.date-tab:hover { border-color: var(--gold-dim); }
.date-tab:hover strong { color: var(--white); }
.date-tab.is-active {
    border-color: var(--gold);
    background: var(--gold-faint);
}
.date-tab.is-active span { color: var(--gold-hi); }
.date-tab.is-active strong { color: var(--white); }

/* ---- Channel chips on listing cards ---- */
.channel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}
.channel-chip {
    font-style: normal;
    font-family: var(--body);
    font-weight: 600;
    font-size: 12.5px;
    color: var(--white);
    background: rgba(18, 48, 86, 0.85);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 3px 8px;
    white-space: nowrap;
}

/* ---- Live scores ---- */
.live-scores-section { padding: 56px 0 12px; }
.live-scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}
.live-score-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(13, 30, 56, 0.6);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.live-score-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: var(--slate-dim);
}
.live-score-teams { display: flex; flex-direction: column; gap: 6px; }
.live-score-teams > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}
.live-score-teams span {
    font-family: var(--body);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}
.live-score-teams strong {
    font-family: var(--display);
    font-size: 17px;
    color: var(--gold-hi);
}
.live-score-progress {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}
.live-scores-empty { color: var(--slate-dim); font-size: 15px; }

/* ---- Highlights ---- */
.highlights-section { padding-top: 24px; }
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.highlight-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.highlight-card:hover { transform: translateY(-3px); border-color: var(--gold-dim); }
.highlight-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.highlight-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.highlight-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-hi), var(--gold));
    opacity: 0.94;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    font-size: 19px;
    color: #0a1226;
}
.highlight-copy { display: flex; flex-direction: column; gap: 3px; padding: 0 16px 16px; }
.highlight-copy strong {
    font-family: var(--body);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--white);
    line-height: 1.35;
}
.highlight-copy > span { font-size: 13px; color: var(--slate-dim); }

@media (max-width: 960px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .date-tabs { gap: 7px; }
    .date-tab { min-width: 80px; padding: 7px 12px; }
}

/* ---- Featured event banner cards (homepage) ---- */
.featured-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.featured-event-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.featured-event-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dim);
    box-shadow: 0 18px 38px rgba(2, 6, 11, 0.55);
}
.featured-event-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}
.featured-event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.featured-event-card:hover .featured-event-media img { transform: scale(1.04); }
.featured-event-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(5, 11, 20, 0.18) 0%,
        rgba(5, 11, 20, 0.30) 45%,
        rgba(5, 11, 20, 0.92) 100%);
}
.featured-event-league {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--label);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-hi);
    background: rgba(5, 11, 20, 0.72);
    border: 1px solid var(--gold-dim);
    border-radius: 999px;
    padding: 5px 11px;
    max-width: 75%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.featured-event-title {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 13px;
}
.featured-event-title strong {
    font-family: var(--display);
    font-weight: 400;
    font-size: 19px;
    line-height: 1.25;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(2, 6, 11, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.featured-event-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 16px;
    border-top: 1px solid var(--line);
}
.featured-event-time {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}
.featured-event-time strong {
    font-family: var(--display);
    font-size: 17px;
    color: var(--gold-hi);
}
.featured-event-time em {
    font-style: normal;
    font-size: 11px;
    color: var(--slate-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.featured-event-channels {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--slate);
    white-space: nowrap;
}

/* ---- Listing card polish: depth, gold hairline, sport watermark ---- */
article.premium-listing-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 100% 0%, rgba(49, 95, 157, 0.18) 0%, rgba(13, 30, 56, 0) 55%),
        linear-gradient(155deg, #0e2140 0%, #081527 60%, #071426 100%);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
article.premium-listing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 4%, var(--gold-dim) 50%, transparent 96%);
    pointer-events: none;
}
article.premium-listing-card::after {
    content: '';
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 215px;
    height: 215px;
    border-radius: 50%;
    background: var(--card-watermark, url('img/sports/all-sports.jpg')) center / cover no-repeat;
    opacity: 0.09;
    filter: saturate(0.55);
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle, #000 58%, transparent 72%);
    mask-image: radial-gradient(circle, #000 58%, transparent 72%);
}
article.premium-listing-card[data-sport="football"] { --card-watermark: url('img/sports/football.jpg'); }
article.premium-listing-card[data-sport="rugby"] { --card-watermark: url('img/sports/rugby.jpg'); }
article.premium-listing-card[data-sport="us-sports"] { --card-watermark: url('img/sports/us-sports.jpg'); }
article.premium-listing-card[data-sport="combat-sports"] { --card-watermark: url('img/sports/combat-sports.jpg'); }
article.premium-listing-card[data-sport="motorsports"] { --card-watermark: url('img/sports/motorsports.jpg'); }
article.premium-listing-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-dim);
    box-shadow: 0 16px 36px rgba(2, 6, 11, 0.5);
}

/* ---- Live nav link + live scores page ---- */
.nav-live { display: inline-flex; align-items: center; gap: 6px; }
.live-page-hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.live-board-section { padding-top: 40px; }
.live-board-meta { margin-bottom: 22px; }
.live-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-dim);
}
.live-updated em { font-style: normal; color: var(--slate); text-transform: none; letter-spacing: 0; }
.live-sport-group { margin-bottom: 36px; }
.live-sport-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.live-sport-heading h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}
.live-sport-heading span {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}
.live-scores-empty-state,
.live-unavailable {
    text-align: center;
    padding: 70px 20px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--slate);
}
.live-scores-empty-state h2,
.live-unavailable h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    color: var(--white);
    margin: 0 0 10px;
}
.live-scores-empty-state a,
.live-unavailable a { color: var(--gold-hi); text-decoration: underline; }

@keyframes scoreFlash {
    0% {
        border-color: var(--gold-hi);
        box-shadow: 0 0 0 4px rgba(244, 216, 115, 0.45), 0 0 34px rgba(244, 216, 115, 0.35);
        background: rgba(214, 183, 75, 0.22);
    }
    55% {
        border-color: var(--gold-hi);
        box-shadow: 0 0 0 2px rgba(244, 216, 115, 0.25), 0 0 18px rgba(244, 216, 115, 0.18);
        background: rgba(214, 183, 75, 0.10);
    }
    100% { border-color: var(--line); box-shadow: none; background: rgba(13, 30, 56, 0.6); }
}
.live-score-card.score-flash { animation: scoreFlash 3s ease-out; }
.live-score-card.score-flash .live-score-teams strong {
    animation: scoreNumber 3s ease-out;
}
@keyframes scoreNumber {
    0% { color: #ffffff; transform: scale(1.35); }
    45% { color: var(--gold-hi); transform: scale(1.15); }
    100% { color: var(--gold-hi); transform: scale(1); }
}
.live-score-teams strong { display: inline-block; transform-origin: right center; }

@media (max-width: 960px) {
    .featured-events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .featured-events-grid { grid-template-columns: 1fr; }
    .featured-event-title strong { font-size: 17px; }
}

/* ---- Sports dropdown in main nav ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate);
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.has-active .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown.has-active .nav-dropdown-toggle { border-bottom-color: var(--gold); }
.nav-caret {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}
.nav-dropdown.is-open .nav-caret { transform: rotate(225deg) translateY(-2px); }
.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 240px;
    background: linear-gradient(180deg, #0d1e38, #081527);
    border: 1px solid var(--gold-dim);
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(2, 6, 11, 0.65);
    padding: 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 60;
}
.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
@media (hover: hover) {
    .nav-dropdown:hover .nav-dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}
.nav-dropdown-panel a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    color: var(--slate);
    font-size: 15px;
    font-weight: 600;
    border-bottom: none;
    white-space: nowrap;
}
.nav-dropdown-panel a:hover { background: rgba(214, 183, 75, 0.10); color: var(--white); }
.nav-dropdown-panel a.is-active { color: var(--gold-hi); }
.nav-dropdown-soon {
    display: block;
    padding: 11px 14px;
    font-size: 13.5px;
    color: var(--slate-dim);
    white-space: nowrap;
}

/* Inside the opened mobile nav, the dropdown flattens into the list */
@media (max-width: 960px) {
    .main-nav .nav-dropdown { position: static; }
    .main-nav .nav-dropdown-toggle { display: none; }
    .main-nav .nav-dropdown-panel {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        box-shadow: none;
        background: none;
        padding: 0;
        min-width: 0;
    }
}
