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

/* ── BRUTALIST DESIGN TOKENS ──────────────────────────── */
:root {
    --yeet-primary: hsl(142, 71%, 57%);
    --yeet-primary-dim: hsla(142, 71%, 57%, 0.35);
    --yeet-primary-glow: hsla(142, 71%, 57%, 0.08);
    --yeet-bg: hsl(240, 10%, 3.9%);
    --yeet-card: hsl(241, 19%, 9%);
    --yeet-border: hsl(240, 3.7%, 15.9%);
    --yeet-fg: hsl(0, 0%, 98%);
    --yeet-muted: hsl(240, 5%, 64.9%);
    --yeet-danger: #ef4444;
}

/* ── FONT FACES (PP Neue Corp – brutalist display) ───── */
@font-face {
    font-family: 'PP Neue Corp';
    src: url('/fonts/PPNeueCorp-NormalUltrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Corp';
    src: url('/fonts/PPNeueCorp-NormalMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Corp Wide';
    src: url('/fonts/PPNeueCorp-WideUltrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ── FONT FACES (IBM Plex Mono – data/numbers) ───────── */
@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/fonts/ibm-plex-mono/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/fonts/ibm-plex-mono/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/fonts/ibm-plex-mono/ibm-plex-mono-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── FONT FACES (IBM Plex Sans local) ─────────────────── */
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ── BASE ─────────────────────────────────────────────── */
body {
    max-width: 100vw;
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--yeet-fg);
    background-color: var(--yeet-bg);
    -webkit-font-smoothing: antialiased;
}

/* ── BRUTALIST FONT HIERARCHY ────────────────────────── */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title {
    font-family: 'PP Neue Corp', 'IBM Plex Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.nav a,
.btn,
.btn-primary,
.btn-secondary,
.hero-subtitle,
.authority-description,
.section-label,
.leaderboard-highlight,
.footer {
    font-family: 'IBM Plex Mono', 'IBM Plex Sans', monospace;
}

strong[style*="color"],
.stat-value,
.leaderboard-stat {
    font-family: 'IBM Plex Mono', monospace;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

a {
    color: var(--yeet-primary);
    text-decoration: none;
}

a:hover {
    color: var(--yeet-fg);
}

/* ── HEADER ───────────────────────────────────────────── */
.header {
    background: var(--yeet-bg);
    color: var(--yeet-fg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--yeet-border);
    overflow: visible;
}

.header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('/brand-assets/banner-graphic.png') 20% center / cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid var(--yeet-border);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--yeet-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.15s;
    white-space: nowrap;
    padding-right: 2rem;
    border-right: 1px solid var(--yeet-border);
}

.nav a:last-child {
    padding-right: 0;
    border-right: none;
}

.nav a:hover {
    color: var(--yeet-fg);
}

/* Header Social Icons (shown on mobile only) */
.header-social {
    display: none;
    gap: 0.75rem;
    align-items: center;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--yeet-border);
    background: transparent;
    transition: border-color 0.15s;
}

.header-social-link:hover {
    border-color: var(--yeet-primary);
}

.header-social-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ── HAMBURGER MENU (mobile only) ─────────────────────── */
.menu-toggle { display: none; }
.menu-btn { display: none; }

@media (max-width: 768px) {
    .header .container {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    /* Keep socials + JOIN YEET on same line: let socials shrink if needed */
    .header-social {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header-join-yeet {
        flex-shrink: 0;
    }

    /* logo already hidden globally */

    /* Hamburger visible on mobile */
    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: 1px solid var(--yeet-border);
        color: var(--yeet-fg);
        font-size: 20px;
        cursor: pointer;
        flex-shrink: 0;
        order: -1;
        z-index: 1002;
    }

    /* Sidebar nav — fits between header and footer */
    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h, 68px);
        left: 0;
        width: 180px;
        height: calc(100vh - var(--header-h, 68px) - 44px);
        background: var(--yeet-card);
        border-right: 1px solid var(--yeet-border);
        padding: 0.75rem 0;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
    }

    .menu-toggle:checked ~ .nav {
        transform: translateX(0);
    }

    /* Backdrop overlay */
    .nav::before {
        content: '';
        position: fixed;
        top: var(--header-h, 68px);
        left: 180px;
        width: 100vw;
        height: calc(100vh - var(--header-h, 68px));
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .menu-toggle:checked ~ .nav::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 14px 20px;
        border-bottom: 1px solid var(--yeet-border);
        border-right: none;
        padding-right: 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        color: var(--yeet-muted);
        transition: all 0.15s;
    }

    .nav a:last-child { border-bottom: none; }

    .nav a:hover {
        color: var(--yeet-fg);
        background: hsla(240, 3.7%, 15.9%, 0.5);
    }

    /* Show social icons on mobile (same row as JOIN YEET) */
    .header-social {
        display: flex;
        gap: 0.35rem;
    }

    .header-social-link {
        width: 36px;
        height: 36px;
        border: none;
        flex-shrink: 0;
        padding: 6px;
    }

    .header-social-link img {
        width: 14px;
        height: 14px;
    }
}

/* ── JOIN YEET HEADER LINK ────────────────────────────── */
.header-join-yeet {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    opacity: 0.85;
    transition: opacity 0.15s;
    text-decoration: none;
    flex-shrink: 0;
}

.header-join-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yeet-fg);
}

.header-yeet-logo {
    height: 28px;
    width: auto;
}

@media (max-width: 768px) {
    .header-join-yeet {
        margin-left: 0.5rem;
        gap: 4px;
        min-height: 44px;
        padding: 10px 14px;
    }

    .header-join-text {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .header-yeet-logo {
        height: 18px;
    }
}

/* ── BUTTONS ──────────────────────────────────────────── */
.cta-button {
    display: inline-block;
    background: var(--yeet-primary);
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid var(--yeet-primary);
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    margin: 0.5rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--yeet-primary);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 13px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--yeet-border);
    color: var(--yeet-muted);
}

.cta-button.secondary:hover {
    border-color: var(--yeet-primary);
    color: var(--yeet-primary);
}

/* ── SECTION LABELS ───────────────────────────────────── */
.section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yeet-muted);
    margin-bottom: 16px;
}

/* ── HERO SECTION ─────────────────────────────────────── */
.hero {
    background: var(--yeet-bg);
    color: var(--yeet-fg);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--yeet-border);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('/brand-assets/backgrounds/bg-hero.png') center center / cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
    max-width: 1400px;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.hero-name {
    color: var(--yeet-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--yeet-muted);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-description {
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.15rem;
    color: var(--yeet-muted);
    max-width: 600px;
}

.hero-description strong {
    color: var(--yeet-primary);
}

.hero-giveaway {
    background: var(--yeet-card);
    border: 2px solid var(--yeet-primary);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    text-align: center;
}

.giveaway-title {
    font-size: 13px;
    margin-bottom: 0.75rem;
    color: var(--yeet-primary);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.giveaway-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--yeet-muted);
}

.giveaway-text strong {
    color: var(--yeet-primary);
    font-weight: 700;
}

.hero-embed {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.hero-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 9 / 16;
    background: var(--yeet-card);
    object-fit: cover;
    border: 1px solid var(--yeet-border);
}

.hero-video:fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    object-fit: contain;
    background: #000;
    border: none;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 2rem 0 0 0;
}

/* ── JOIN & SCHEDULE SECTION ──────────────────────────── */
.join-schedule {
    padding: 5rem 0;
    background: var(--yeet-bg);
    border-bottom: 1px solid var(--yeet-border);
    overflow: hidden;
}

.join-schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--yeet-border);
}

.hero-bonus-card {
    background: var(--yeet-card);
    border: none;
    padding: 3rem;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.card-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yeet-primary);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--yeet-primary);
    display: inline-block;
}

.hero-bonus-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--yeet-fg);
    font-weight: 800;
    letter-spacing: 3px;
    flex-shrink: 0;
}

.hero-bonus-description {
    font-size: 0.95rem;
    color: var(--yeet-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    flex-shrink: 0;
}

.hero-bonus-description strong {
    color: var(--yeet-fg);
}

/* Perks Grid */
.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--yeet-border);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.perk-item {
    background: var(--yeet-bg);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.perk-value {
    font-family: 'PP Neue Corp', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--yeet-primary);
    letter-spacing: 2px;
}

.perk-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yeet-muted);
}

/* Schedule Days */
.schedule-days {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
    align-items: center;
    border: 1px solid var(--yeet-border);
}

.schedule-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0.85rem;
    flex: 1;
    border-right: 1px solid var(--yeet-border);
}

.schedule-day:last-child {
    border-right: none;
}

.day-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--yeet-muted);
}

.day-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--yeet-border);
    background: transparent;
}

.day-dot.active {
    background: var(--yeet-primary);
    border-color: var(--yeet-primary);
    box-shadow: 0 0 8px var(--yeet-primary-dim);
}

.hero-bonus-card .cta-button {
    width: 100%;
    text-align: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: auto;
}

/* ── AUTHORITY SECTION ────────────────────────────────── */
.authority {
    padding: 5rem 0;
    background: var(--yeet-card);
    border-bottom: 1px solid var(--yeet-border);
    overflow: hidden;
}

.authority::before {
    display: none;
}

.authority h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--yeet-fg);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.authority-description {
    text-align: center;
    font-size: 1rem;
    color: var(--yeet-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.authority-card {
    background: var(--yeet-bg);
    border: 1px solid var(--yeet-border);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.15s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.authority-card:hover {
    border-color: var(--yeet-primary);
}

.authority-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
    background: var(--yeet-card);
    padding: 0.5rem;
    flex-shrink: 0;
    cursor: zoom-in;
    border: 1px solid var(--yeet-border);
}

.authority-image:hover {
    border-color: var(--yeet-primary);
}

.authority-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--yeet-fg);
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.authority-card p {
    color: var(--yeet-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

.authority-card p a {
    color: var(--yeet-primary);
    text-decoration: underline;
}

.authority-card p a:hover {
    color: var(--yeet-fg);
}

/* ── IMAGE MODAL ──────────────────────────────────────── */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid var(--yeet-border);
    pointer-events: auto;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--yeet-fg);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.15s;
    z-index: 10000;
    line-height: 1;
}

.image-modal-close:hover {
    color: var(--yeet-primary);
}

.image-modal-caption {
    color: var(--yeet-muted);
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    max-width: 80%;
    margin-top: 20px;
    letter-spacing: 2px;
}

/* ── FEATURES SECTION ─────────────────────────────────── */
.features {
    padding: 5rem 0;
    background: var(--yeet-bg);
    border-bottom: 1px solid var(--yeet-border);
}

#social.features {
    background: var(--yeet-card);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--yeet-fg);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.features .section-description {
    text-align: center;
    font-size: 1rem;
    color: var(--yeet-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--yeet-card);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.15s;
    border: 1px solid var(--yeet-border);
}

.feature-card:hover {
    border-color: var(--yeet-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    color: var(--yeet-fg);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.feature-card p {
    color: var(--yeet-muted);
    font-size: 0.95rem;
}

/* ── GAMES / STREAM SECTION ───────────────────────────── */
.games {
    padding: 5rem 0;
    background: var(--yeet-card);
    color: var(--yeet-fg);
    border-bottom: 1px solid var(--yeet-border);
}

.games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.games .section-description {
    text-align: center;
    font-size: 1rem;
    color: var(--yeet-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stream-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stream-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--yeet-muted);
    line-height: 1.7;
}

.kick-embed-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--yeet-bg);
    border: 1px solid var(--yeet-border);
}

.kick-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}

.kick-embed:fullscreen,
.kick-embed-container:fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    padding-bottom: 0;
}

.kick-embed-container:fullscreen .kick-embed {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── SOCIAL GRID ──────────────────────────────────────── */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.social-card {
    background: var(--yeet-bg);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--yeet-fg);
    transition: border-color 0.15s;
    border: 1px solid var(--yeet-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card:hover {
    border-color: var(--yeet-primary);
}

.social-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-card h3 {
    color: var(--yeet-fg);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.social-card p {
    color: var(--yeet-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-handle {
    color: var(--yeet-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: auto;
}

/* ── SECTION DESCRIPTION (global) ─────────────────────── */
.section-description {
    text-align: center;
    font-size: 1rem;
    color: var(--yeet-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ── LEADERBOARD SECTION ──────────────────────────────── */
.leaderboard-content {
    max-width: 900px;
    margin: 0 auto;
}

.leaderboard-highlight {
    background: var(--yeet-card);
    padding: 3rem;
    border: 1px solid var(--yeet-border);
    text-align: center;
}

.leaderboard-highlight h3 {
    color: var(--yeet-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.leaderboard-highlight > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--yeet-muted);
    line-height: 1.7;
}

.leaderboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    text-align: left;
}

.leaderboard-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--yeet-bg);
    border: 1px solid var(--yeet-border);
}

.feature-badge {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.leaderboard-feature h4 {
    color: var(--yeet-fg);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.leaderboard-feature p {
    color: var(--yeet-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.leaderboard-highlight .cta-button {
    margin-top: 2rem;
}

/* ── LEADERBOARD PODIUM (top 3) ─────────────────────────── */
.leaderboard-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1px;
    max-width: 700px;
    margin: 1.5rem auto;
    padding: 0 1rem;
}

.podium-card {
    background: var(--yeet-card);
    border: none;
    padding: 1rem 0.8rem;
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
    overflow: hidden;
}

.podium-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.podium-gold .podium-accent { background: linear-gradient(90deg, transparent, #FFD700, transparent); }
.podium-silver .podium-accent { background: linear-gradient(90deg, transparent, #C0C0C0, transparent); }
.podium-bronze .podium-accent { background: linear-gradient(90deg, transparent, #CD7F32, transparent); }

.podium-gold .podium-place { color: #FFD700; }
.podium-silver .podium-place { color: #C0C0C0; }
.podium-bronze .podium-place { color: #CD7F32; }

.podium-card.podium-first {
    padding: 1.2rem 1rem;
    transform: translateY(-8px);
    background: linear-gradient(180deg, hsla(45, 100%, 50%, 0.06) 0%, var(--yeet-card) 40%);
}

.podium-medal {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-bottom: 0.3rem;
}

.podium-first .podium-medal {
    width: 48px;
    height: 48px;
}

.podium-place {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.podium-tier {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 0.3rem;
}

.podium-first .podium-tier {
    width: 32px;
    height: 32px;
}

.podium-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--yeet-fg);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    word-break: break-all;
}

.podium-first .podium-name {
    font-size: 0.9rem;
}

.podium-volume {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--yeet-primary);
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1;
    text-shadow: 0 0 12px hsla(142, 71%, 57%, 0.5), 0 0 30px hsla(142, 71%, 57%, 0.25);
}

.podium-first .podium-volume {
    font-size: 1.8rem;
    text-shadow: 0 0 16px hsla(142, 71%, 57%, 0.6), 0 0 40px hsla(142, 71%, 57%, 0.3), 0 0 80px hsla(142, 71%, 57%, 0.15);
}

.podium-volume-label {
    font-size: 0.55rem;
    color: var(--yeet-muted);
    margin-top: 0.15rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.podium-prize {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1;
}

.podium-first .podium-prize {
    font-size: 1rem;
}

.podium-prize-icon {
    font-size: 0.9em;
    margin-right: 2px;
}

.podium-prize-label {
    font-size: 0.5rem;
    color: var(--yeet-muted);
    margin-top: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ── LEADERBOARD TABLE (ranks 4-10) ─────────────────────── */
.leaderboard-grid {
    max-width: 1000px;
    margin: 1.5rem auto;
}

.leaderboard-table {
    background: var(--yeet-bg);
    border: 1px solid var(--yeet-border);
    max-width: 900px;
    margin: 0 auto;
}

/* Expand button: hidden on desktop, shown on mobile (see @media 768px) */
.leaderboard-expand-btn {
    display: none;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 50px 50px 1fr 130px 160px;
    align-items: center;
    padding: 0.7rem 1.2rem;
    border-bottom: 1px solid var(--yeet-border);
    transition: background 0.15s;
    gap: 1rem;
}

.leaderboard-row:last-child {
    border-bottom: none;
}

.leaderboard-row:hover {
    background: var(--yeet-card);
}

.leaderboard-rank-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaderboard-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--yeet-card);
    color: var(--yeet-muted);
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid var(--yeet-border);
}

.leaderboard-medal {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.leaderboard-tier-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaderboard-tier-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.leaderboard-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.leaderboard-username {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--yeet-fg);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.leaderboard-tier {
    font-size: 0.75rem;
    color: var(--yeet-muted);
    font-weight: 400;
    margin: 0;
}

.leaderboard-monetary {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.leaderboard-monetary-amount {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #FFD700;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
    line-height: 1;
}

.leaderboard-monetary-icon {
    font-size: 1rem;
    line-height: 1;
}

.leaderboard-monetary-label {
    font-size: 0.7rem;
    color: var(--yeet-muted);
    font-weight: 400;
}

.leaderboard-volume {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.leaderboard-volume-amount {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--yeet-primary);
    line-height: 1;
    font-family: 'IBM Plex Mono', monospace;
}

.leaderboard-volume-label {
    font-size: 0.7rem;
    color: var(--yeet-muted);
    font-weight: 400;
}

.leaderboard-loading {
    text-align: center;
    padding: 3rem;
    color: var(--yeet-muted);
}

.leaderboard-error {
    text-align: center;
    padding: 2rem;
    background: var(--yeet-card);
    border: 1px solid var(--yeet-danger);
    color: var(--yeet-fg);
    margin: 2rem 0;
}

/* ── LEADERBOARD PERIOD ───────────────────────────────── */
.leaderboard-period-section {
    background: var(--yeet-card);
    border: 1px solid var(--yeet-border);
    padding: 2rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard-period-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.leaderboard-period-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yeet-fg);
    margin: 0;
}

.leaderboard-time-badge {
    background: var(--yeet-primary);
    color: white;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.leaderboard-progress-container {
    margin-top: 1rem;
}

.leaderboard-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--yeet-border);
    overflow: hidden;
    margin-bottom: 1rem;
}

.leaderboard-progress-fill {
    height: 100%;
    background: var(--yeet-primary);
    transition: width 0.3s ease;
    width: 0%;
}

.leaderboard-dates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.leaderboard-date-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.leaderboard-date-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yeet-muted);
}

.leaderboard-date-value {
    font-size: 0.95rem;
    color: var(--yeet-fg);
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
}

/* ── LEADERBOARD DISCLAIMER ───────────────────────────── */
.leaderboard-disclaimer {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--yeet-card);
    border: 1px solid var(--yeet-border);
    border-left: 2px solid var(--yeet-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard-disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.leaderboard-disclaimer-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--yeet-fg);
    font-size: 0.95rem;
}

.leaderboard-disclaimer-content strong {
    font-weight: 700;
    color: var(--yeet-fg);
    letter-spacing: 1px;
}

.leaderboard-disclaimer-content span {
    color: var(--yeet-muted);
}

/* ── FAQ SECTION ──────────────────────────────────────── */
.faq {
    padding: 5rem 0;
    background: var(--yeet-bg);
    border-bottom: 1px solid var(--yeet-border);
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--yeet-fg);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--yeet-card);
    padding: 1.5rem;
    margin-bottom: 1px;
    border: 1px solid var(--yeet-border);
    transition: border-color 0.15s;
}

.faq-item:hover {
    border-color: var(--yeet-primary);
}

.faq-item h3 {
    color: var(--yeet-fg);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-item p {
    color: var(--yeet-muted);
    font-size: 0.95rem;
}

/* ── FINAL CTA ────────────────────────────────────────── */
.final-cta {
    padding: 5rem 0;
    background: var(--yeet-card);
    color: var(--yeet-fg);
    text-align: center;
    border-bottom: 1px solid var(--yeet-border);
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('/brand-assets/backgrounds/bg-cta.png') center center / cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--yeet-muted);
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── GIVEAWAY TICKER ──────────────────────────────────── */
.giveaway-ticker {
    display: flex;
    align-items: stretch;
    height: 44px;
    background: var(--yeet-bg);
    border-top: 1px solid var(--yeet-border);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
    background: var(--yeet-bg);
    border-right: 1px solid var(--yeet-border);
    flex-shrink: 0;
    z-index: 2;
}

.ticker-label-icon {
    font-size: 14px;
    line-height: 1;
}

.ticker-label-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--yeet-primary);
    white-space: nowrap;
}

.ticker-viewport {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    position: relative;
}

.ticker-viewport::before,
.ticker-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.ticker-viewport::before {
    left: 0;
    background: linear-gradient(to right, var(--yeet-bg), transparent);
}

.ticker-viewport::after {
    right: 0;
    background: linear-gradient(to left, var(--yeet-bg), transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tickerMarquee var(--ticker-duration, 60s) linear infinite;
    gap: 0;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-entry {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.75rem;
    white-space: nowrap;
}

.ticker-user {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--yeet-fg);
}

.ticker-won {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--yeet-muted);
}

.ticker-amount {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--yeet-primary);
}

.ticker-sep {
    color: var(--yeet-border);
    font-size: 18px;
    padding: 0 0.5rem;
    line-height: 1;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
    background: var(--yeet-bg);
    border-top: 1px solid var(--yeet-border);
    color: var(--yeet-muted);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('/brand-assets/backgrounds/bg-footer.png') center center / cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: var(--yeet-primary);
}

.footer a:hover {
    color: var(--yeet-fg);
}

/* ── INSTAGRAM REEL ───────────────────────────────────── */
.instagram-reel-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-reel-container iframe {
    border: 1px solid var(--yeet-border);
    max-width: 100%;
}

/* ── CORNER ACCENTS (brutalist detail) ────────────────── */
.corner-accent {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 5;
    pointer-events: none;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    background: var(--yeet-primary);
}

.corner-accent.tl { top: 20px; left: 20px; }
.corner-accent.tl::before { top: 0; left: 0; width: 20px; height: 2px; }
.corner-accent.tl::after  { top: 0; left: 0; width: 2px; height: 20px; }

.corner-accent.tr { top: 20px; right: 20px; }
.corner-accent.tr::before { top: 0; right: 0; width: 20px; height: 2px; }
.corner-accent.tr::after  { top: 0; right: 0; width: 2px; height: 20px; }

.corner-accent.bl { bottom: 20px; left: 20px; }
.corner-accent.bl::before { bottom: 0; left: 0; width: 20px; height: 2px; }
.corner-accent.bl::after  { bottom: 0; left: 0; width: 2px; height: 20px; }

.corner-accent.br { bottom: 20px; right: 20px; }
.corner-accent.br::before { bottom: 0; right: 0; width: 20px; height: 2px; }
.corner-accent.br::after  { bottom: 0; right: 0; width: 2px; height: 20px; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-embed {
        order: -1;
    }

    .hero-video {
        max-width: 350px;
        max-height: 480px;
        object-fit: cover;
    }

    .join-schedule-content {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }

    .schedule-day {
        padding: 1rem 0.5rem;
    }

    .day-name {
        font-size: 9px;
    }

    .authority-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .leaderboard-row {
        grid-template-columns: 40px 45px 1fr 110px 140px;
        gap: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .leaderboard-volume-amount {
        font-size: 0.95rem;
    }

    .leaderboard-username {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    /* ── Mobile UX: readable baseline ── */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    /* ── Hero tightening ── */
    .hero {
        padding: 1.5rem 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.75rem; /* ~28px */
        font-weight: 800;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem; /* ~18px */
    }

    .hero-video {
        max-width: 280px;
        max-height: 380px;
        object-fit: cover;
        margin: 0.75rem 0 1.25rem;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-giveaway {
        padding: 1rem;
    }

    .giveaway-title {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    section h2,
    .section-title {
        font-size: 1.5rem;
        font-weight: 800;
    }

    /* ── Authority section ── */
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .authority-image {
        max-height: 150px;
        width: auto;
        margin-bottom: 1rem;
    }

    .authority-card {
        padding: 1.25rem;
    }

    .authority-card h3 {
        font-size: 1rem;
    }

    .authority-card p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* ── Leaderboard podium ── */
    .leaderboard-podium {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .podium-card {
        max-width: 100%;
        width: 100%;
    }

    .podium-card.podium-first {
        transform: none;
        order: -1;
    }

    .podium-volume {
        font-size: 1.2rem;
        text-shadow: 0 0 10px hsla(142, 71%, 57%, 0.4);
    }

    .podium-first .podium-volume {
        font-size: 1.4rem;
        text-shadow: 0 0 12px hsla(142, 71%, 57%, 0.5), 0 0 30px hsla(142, 71%, 57%, 0.2);
    }

    .leaderboard-features {
        grid-template-columns: 1fr;
    }

    .leaderboard-highlight {
        padding: 1.25rem 1rem;
    }

    .leaderboard-period-section {
        padding: 1rem;
    }

    .leaderboard-podium {
        margin: 1rem auto;
    }

    .leaderboard-features {
        gap: 1rem;
        margin: 1.25rem 0;
    }

    .leaderboard-feature {
        padding: 1rem;
    }

    /* ── Collapsible leaderboard: top 3 always visible, rest expand on tap ── */
    .leaderboard-expand-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 1rem 0 0;
        padding: 14px 20px;
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--yeet-fg);
        background: var(--yeet-card);
        border: 2px solid var(--yeet-border);
        cursor: pointer;
        transition: border-color 0.15s, background 0.15s;
    }
    .leaderboard-expand-btn:hover {
        border-color: var(--yeet-primary);
        background: hsla(142, 71%, 57%, 0.08);
    }
    .leaderboard-rest-wrapper .leaderboard-table {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .leaderboard-rest-wrapper.is-expanded .leaderboard-table {
        max-height: 3000px;
    }

    /* ── Hide social icons bar on mobile ── */
    #social {
        display: none !important;
    }
    /* ── Hide fixed social bar on ALL pages on mobile ── */
    .fixed-social-bar {
        display: none !important;
    }


    .footer {
        padding-bottom: 50px !important;
    }

    .leaderboard-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 14px 12px;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .leaderboard-rank-container {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        z-index: 2;
    }

    .leaderboard-medal {
        width: 32px;
        height: 32px;
    }

    .leaderboard-rank {
        width: 26px;
        height: 26px;
        font-size: 1rem;
        font-weight: 700;
    }

    .leaderboard-tier-badge {
        position: absolute;
        top: 0.75rem;
        right: 3.5rem;
        z-index: 2;
    }

    .leaderboard-tier-icon {
        width: 28px;
        height: 28px;
    }

    .leaderboard-user-info {
        grid-column: 1;
        margin-top: 0.25rem;
        padding-right: 6rem;
    }

    .leaderboard-username {
        font-size: 1rem;
    }

    .leaderboard-monetary,
    .leaderboard-volume {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }

    .leaderboard-monetary-amount {
        font-size: 0.85rem;
    }

    .leaderboard-volume-amount {
        font-size: 0.95rem;
    }

    .leaderboard-period-section {
        padding: 1.5rem;
    }

    .leaderboard-period-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .leaderboard-time-badge {
        align-self: flex-end;
    }

    .leaderboard-dates {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .instagram-reel-container {
        padding: 1rem;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* ── Hero tagline + giveaway mobile ── */
    .hero-tagline {
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
        padding-left: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    #giveawayTotal {
        font-size: 2rem !important;
    }

    /* ── Stream section mobile ── */
    .schedule-cards > div {
        min-width: 90px !important;
        padding: 0.75rem !important;
    }

    .stream-content .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .games h2 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
}

/* ── 480px: small phones, extra tight ── */
@media (max-width: 480px) {
    .hero {
        padding: 1.25rem 0;
    }

    .hero-title {
        font-size: 1.625rem;
    }

    .hero-video {
        max-height: 320px;
    }

    section {
        padding: 2rem 0;
    }

    .leaderboard-row {
        padding: 10px 8px;
        margin-bottom: 0.35rem;
    }

    .leaderboard-period-section {
        padding: 0.75rem;
    }
}


/* ── Smooth scroll for overflow containers ── */
.bh-table-wrap {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
