:root {
    /* Backgrounds */
    --bg-base: #08070f;
    --bg-surface: #110f22;
    --bg-card: #1a1730;
    --bg-card-hover: #22203d;
    --bg-nav: #0d0b1e;

    /* Brand */
    --brand-purple: #382b73;
    --brand-purple-mid: #473080;
    --brand-purple-light: #6249b5;
    --brand-gold: #fede3a;
    --brand-gold-dark: #e7ad27;
    --brand-gold-mid: #ffc733;
    --brand-gold-dim: rgba(254, 222, 58, 0.15);

    /* Semantic */
    --accent-live: #e03030;
    --accent-live-bg: rgba(224, 48, 48, 0.12);
    --accent-live-glow: rgba(224, 48, 48, 0.35);
    --color-success: #2ed573;
    --color-warning: #ffa502;

    /* Text */
    --text-primary: #f0eeff;
    --text-secondary: #9e97c0;
    --text-muted: #5c5578;
    --text-gold: #fede3a;

    /* Borders */
    --border: rgba(254, 222, 58, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(254, 222, 58, 0.3);

    /* Radii */
    --r-xs: 3px;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;

    /* Typography */
    --font-display:
        "Barlow Condensed", "Impact", "Arial Narrow", sans-serif;
    --font-body:
        "Inter", "Roboto", system-ui, -apple-system, sans-serif;

    /* Spacing scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;

    /* Shadows */
    --shadow-sm: 0 1px 8px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 48px rgba(55, 43, 115, 0.35);
    --shadow-gold: 0 0 24px rgba(254, 222, 58, 0.2);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 120ms;
    --dur-base: 200ms;
    --dur-slow: 360ms;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    min-height: 100dvh;
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--brand-gold);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}
a:hover {
    color: #fff;
}
a:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 3px;
    border-radius: var(--r-xs);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: var(--text-primary);
}

p + p {
    margin-top: 0.85em;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: var(--space-5);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            ellipse 80% 50% at 50% -10%,
            rgba(71, 48, 128, 0.25) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 30% at 90% 90%,
            rgba(55, 43, 115, 0.12) 0%,
            transparent 60%
        );
    pointer-events: none;
    z-index: 0;
}
body > * {
    position: relative;
    z-index: 1;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--brand-purple),
        var(--brand-gold),
        var(--brand-purple-light)
    );
    z-index: 200;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    padding-block: 2px;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    max-width: 1160px;
    margin-inline: auto;
    padding: var(--space-3) var(--space-5);
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity var(--dur-fast) var(--ease);
}
.brand-logo:hover {
    opacity: 0.85;
}
.brand-logo img {
    width: auto;
    height: 42px;
    max-width: 160px;
    object-fit: contain;
}

header nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-1);
}

header nav ul li a {
    display: block;
    padding: 6px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    border-radius: var(--r-full);
    border: 1px solid transparent;
    transition:
        color var(--dur-fast) var(--ease),
        background var(--dur-fast) var(--ease),
        border-color var(--dur-fast) var(--ease);
    white-space: nowrap;
}
header nav ul li a:hover {
    color: var(--text-primary);
    background: rgba(254, 222, 58, 0.08);
    border-color: var(--border);
}
header nav ul li:last-child a {
    color: var(--brand-gold);
    border-color: var(--border);
    background: var(--brand-gold-dim);
}
header nav ul li:last-child a:hover {
    background: rgba(254, 222, 58, 0.2);
    border-color: var(--border-strong);
}

#hero {
    position: relative;
    padding: var(--space-24) var(--space-5) var(--space-20);
    text-align: center;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 60% at 50% 40%,
            rgba(71, 48, 128, 0.4) 0%,
            transparent 65%
        ),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23382B73' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

#hero .container {
    position: relative;
}

#hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 5px 14px;
    margin-bottom: var(--space-5);
    background: var(--accent-live-bg);
    border: 1px solid var(--accent-live);
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff6b6b;
}

#hero .hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-live);
    animation: livePulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 var(--accent-live-glow);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 5px transparent;
    }
}

#hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--space-5);
    background: linear-gradient(
        135deg,
        #fff 30%,
        var(--brand-gold) 70%,
        var(--brand-gold-mid)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero p {
    max-width: 680px;
    margin-inline: auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.btn,
#hero .hero-actions a,
#cta a,
#schedule > a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 28px;
    border-radius: var(--r-full);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        transform var(--dur-fast) var(--ease-out),
        box-shadow var(--dur-base) var(--ease),
        background var(--dur-fast) var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary,
#hero .hero-actions a:first-child,
#cta a,
#schedule > a {
    background: linear-gradient(
        135deg,
        var(--brand-gold) 0%,
        var(--brand-gold-dark) 100%
    );
    color: #0a0910;
    box-shadow: 0 4px 20px rgba(254, 222, 58, 0.25);
}
.btn-primary:hover,
#hero .hero-actions a:first-child:hover,
#cta a:hover,
#schedule > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(254, 222, 58, 0.4);
    color: #0a0910;
}

.btn-secondary,
#hero .hero-actions a:last-child {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-strong);
    box-shadow: none;
}
.btn-secondary:hover,
#hero .hero-actions a:last-child:hover {
    background: rgba(254, 222, 58, 0.08);
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    transform: translateY(-2px);
}

#cta .container {
    max-width: 700px;
    text-align: center;
}

.page-hero {
    position: relative;
    padding: var(--space-20) var(--space-5) var(--space-16);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 60% at 50% 40%,
            rgba(71, 48, 128, 0.4) 0%,
            transparent 65%
        ),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23382B73' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero .container {
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--space-5);
    background: linear-gradient(
        135deg,
        #fff 30%,
        var(--brand-gold) 70%,
        var(--brand-gold-mid)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    max-width: 760px;
    margin-inline: auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-page main > section > ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-3);
    margin-block: var(--space-5);
}

.about-page main > section > ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition:
        border-color var(--dur-base) var(--ease),
        background var(--dur-base) var(--ease);
}

.about-page main > section > ul li::before {
    content: "▶";
    color: var(--brand-gold);
    font-size: 0.65rem;
    margin-top: 0.35em;
    flex-shrink: 0;
}

.about-page main > section > ul li:hover {
    border-color: var(--border);
    background: var(--bg-card-hover);
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-8);
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-subtle);
}
.stat-item {
    text-align: center;
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-gold);
    letter-spacing: 0.04em;
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

main > section {
    padding: var(--space-16) var(--space-5);
    max-width: 1160px;
    margin-inline: auto;
}

main > section:nth-child(even) {
    max-width: 100%;
    background: var(--bg-surface);
    padding-inline: var(--space-5);
}
main > section:nth-child(even) > * {
    max-width: 1160px;
    margin-inline: auto;
}

main > section > h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--border);
    position: relative;
}
main > section > h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 48px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--brand-gold),
        var(--brand-gold-mid)
    );
    border-radius: 2px;
}

main > section > p {
    color: var(--text-secondary);
    max-width: 780px;
    font-size: 1rem;
    margin-bottom: var(--space-5);
}
main > section:not(#cta) p {
    text-align: left;
}
main > section:nth-child(even) > p {
    margin-left: max(0px, calc((100% - 1160px) / 2));
    margin-right: auto;
}

#about {
    background: transparent !important;
}
#about p {
    color: var(--text-secondary);
    font-size: 1.025rem;
    max-width: 820px;
    margin-bottom: var(--space-4);
}
#about strong {
    color: var(--brand-gold);
}

#schedule > p {
    max-width: 820px;
    margin-left: max(0px, calc((100% - 1160px) / 2));
    margin-right: auto;
}
#schedule > p:first-of-type {
    font-size: 1.05rem;
}

#schedule > ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-3);
    margin-block: var(--space-6) var(--space-8);
}

#schedule > ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    transition:
        border-color var(--dur-base) var(--ease),
        background var(--dur-base) var(--ease);
}
#schedule > ul li::before {
    content: "▶";
    color: var(--brand-gold);
    font-size: 0.65rem;
    margin-top: 0.35em;
    flex-shrink: 0;
}
#schedule > ul li:hover {
    border-color: var(--border);
    background: var(--bg-card-hover);
}
#schedule > ul li strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}
#schedule > ul li > span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

#schedule > a {
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-top: var(--space-2);
    margin-inline: auto;
}

#sports {
    background: var(--bg-surface) !important;
}
#sports .sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

#sports article {
    padding: var(--space-6);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    transition:
        transform var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease),
        box-shadow var(--dur-base) var(--ease);
    position: relative;
    overflow: hidden;
}
#sports article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--brand-purple-light),
        transparent
    );
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease);
}
#sports article:hover {
    transform: translateY(-3px);
    border-color: var(--border);
    box-shadow: var(--shadow-card);
}
#sports article:hover::before {
    opacity: 1;
}

#sports article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
#sports article h3::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 1em;
    background: linear-gradient(
        180deg,
        var(--brand-gold),
        var(--brand-gold-dark)
    );
    border-radius: 2px;
    flex-shrink: 0;
}
#sports article p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

#access > p:first-of-type {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

#access > h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    padding-left: var(--space-4);
    border-left: 3px solid var(--brand-gold);
}
#access > h3:first-of-type {
    margin-top: 0;
}

#access > p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    max-width: 780px;
    margin-bottom: var(--space-4);
    margin-left: max(0px, calc((100% - 1160px) / 2));
    margin-right: auto;
    padding-left: var(--space-7);
}

#alternatives {
    background: var(--bg-surface) !important;
}
#alternatives > p {
    font-size: 1rem;
    max-width: 780px;
    margin-inline: 0 auto;
}
#alternatives > p:first-of-type {
    margin-bottom: var(--space-6);
}
#alternatives > ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-3);
    margin-block: var(--space-4);
}
#alternatives > ul li {
    padding: var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: border-color var(--dur-base) var(--ease);
}
#alternatives > ul li:hover {
    border-color: var(--border);
}
#alternatives > ul li strong {
    display: block;
    font-size: 1rem;
    color: var(--brand-gold);
    font-family: var(--font-display);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}
#alternatives > p:last-child {
    margin-top: var(--space-5);
    font-size: 0.875rem;
    color: var(--text-muted);
}

#trust {
    background: transparent !important;
}
#trust > p {
    color: var(--text-secondary);
    max-width: 780px;
}
#trust > ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-block: var(--space-5);
}
#trust > ul li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition:
        border-color var(--dur-fast) var(--ease),
        color var(--dur-fast) var(--ease),
        background var(--dur-fast) var(--ease);
}
#trust > ul li a:hover {
    border-color: var(--border-strong);
    color: var(--brand-gold);
    background: var(--brand-gold-dim);
}
#trust > p:last-child {
    font-size: 0.875rem;
    color: var(--text-muted);
}

#faq {
    background: var(--bg-surface) !important;
}
#faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}
#faq article {
    padding: var(--space-6);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    transition: border-color var(--dur-base) var(--ease);
}
#faq article:hover {
    border-color: var(--border);
}
#faq article h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}
#faq article h3::before {
    content: "Q — ";
    color: var(--brand-gold);
    font-family: var(--font-display);
}
#faq article p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

#cta {
    background: transparent !important;
    text-align: center;
    padding-block: var(--space-20);
}
#cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-5);
}
#cta h2::after {
    left: 50%;
    transform: translateX(-50%);
}
#cta .container > p:first-of-type {
    max-width: 600px;
    margin-inline: auto;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}
#cta .container > a {
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
}
#cta .container > p:last-child {
    margin-top: var(--space-6);
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-inline: auto;
}

footer {
    background: var(--bg-nav);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-10) var(--space-5) var(--space-8);
}
footer > nav {
    max-width: 1160px;
    margin-inline: auto;
    margin-bottom: var(--space-8);
    text-align: center;
}
footer nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-2) var(--space-4);
}
footer nav ul li a {
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color var(--dur-fast) var(--ease);
}
footer nav ul li a:hover {
    color: var(--brand-gold);
}
footer > p {
    max-width: 1160px;
    margin-inline: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: var(--space-3);
}
footer > p:last-child {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-purple);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-purple-mid);
}

::selection {
    background: rgba(254, 222, 58, 0.25);
    color: #fff;
}

@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
        padding: var(--space-3) var(--space-4);
    }
    header nav ul {
        gap: var(--space-1);
        width: 100%;
    }
    header nav ul li a {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    #hero {
        padding-block: var(--space-16) var(--space-12);
    }
    #schedule > ul {
        grid-template-columns: 1fr;
    }
    #alternatives > ul {
        grid-template-columns: 1fr;
    }
    #faq .faq-grid {
        grid-template-columns: 1fr;
    }
    main > section {
        padding-inline: var(--space-4);
    }
    main > section:nth-child(even) {
        padding-inline: var(--space-4);
    }
    .hero-stats {
        gap: var(--space-6);
    }
    .stat-num {
        font-size: 1.5rem;
    }
    #access > p {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .brand-logo img {
        height: 36px;
        max-width: 138px;
    }
    #hero h1 {
        font-size: 1.75rem;
    }
    #hero p {
        font-size: 0.9375rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn,
    #hero .hero-actions a,
    #cta a,
    #schedule > a {
        width: 100%;
        justify-content: center;
    }
    #sports article,
    #faq article {
        padding: var(--space-4);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
