/* ============================================================
   SEPDOTO — Design System · Neon Editorial / Kinetic Brutalism
   sepdoto.com · primary #14dbaa
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Geist+Mono:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

:root {
    /* Surface Hierarchy */
    --surface:           #000000;
    --surface-low:       #06080a;
    --surface-mid:       #0d0f12;
    --surface-high:      #151719;
    --surface-highest:   #1e2022;

    /* Text */
    --on-surface:        #e8f5f9;
    --on-surface-2:      rgba(232,245,249,0.72);
    --on-surface-3:      rgba(232,245,249,0.42);

    /* Primary — Mint Teal */
    --primary:           #14dbaa;
    --primary-light:     #7eeedd;
    --primary-dim:       #0ec298;
    --primary-muted:     rgba(20,219,170,0.1);
    --primary-border:    rgba(20,219,170,0.22);
    --primary-glow:      rgba(20,219,170,0.18);

    /* Teal Secondary */
    --secondary:         #86c0bc;
    --secondary-bg:      #0e4f4c;
    --teal-accent:       rgba(134,192,188,0.15);
    --teal-border:       rgba(134,192,188,0.12);

    /* Borders — tonal */
    --border:            rgba(206,231,238,0.07);
    --border-strong:     rgba(206,231,238,0.13);
    --outline-ghost:     rgba(134,192,188,0.15);

    --error:             #ff5f5f;
    --max-w:             1140px;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
    font-family: 'Be Vietnam Pro', system-ui, sans-serif;
    background-color: var(--surface);
    color: var(--on-surface);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section, header, footer, nav { max-width: 100vw; overflow-x: clip; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: rgba(20,219,170,0.3); border-radius: 2px; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 768px)  { .container { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1280px) { .container { padding-left: 2.5rem; padding-right: 2.5rem; } }

/* ── NOISE TEXTURE ──────────────────────────────────────────── */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ── PRELOADER ──────────────────────────────────────────────── */
#preloader { transition: opacity 0.6s ease, visibility 0.6s ease; }
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.pl-text-wrap { display: flex; align-items: center; }

.pl-letter {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 12vw, 8rem);
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.07);
    display: inline-block;
    animation: pl-letter-fill 0.55s ease forwards;
    animation-delay: calc(var(--i) * 0.13s);
    animation-fill-mode: both;
}

@keyframes pl-letter-fill {
    0%   { color: rgba(255,255,255,0.07); text-shadow: none; }
    55%  { color: #14dbaa; text-shadow: 0 0 50px rgba(20,219,170,0.9), 0 0 100px rgba(20,219,170,0.35); }
    100% { color: #14dbaa; text-shadow: 0 0 24px rgba(20,219,170,0.5); }
}

/* ── GLASS ──────────────────────────────────────────────────── */
.glass {
    background: rgba(10,35,40,0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
}
.glass-strong {
    background: rgba(15,44,50,0.7);
    backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
    border: 1px solid var(--border-strong);
}
.liquid-glass {
    background: rgba(10,35,40,0.55);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--outline-ghost);
}

/* ── GLOW ───────────────────────────────────────────────────── */
.glow   { box-shadow: 0 0 28px rgba(20,219,170,0.10), 0 0 60px rgba(20,219,170,0.04); }
.glow-s { box-shadow: 0 0 20px rgba(20,219,170,0.08), 0 0 50px rgba(20,219,170,0.03); }
.text-glow   { text-shadow: 0 0 24px rgba(20,219,170,0.6), 0 0 48px rgba(20,219,170,0.28); }
.text-glow-s { text-shadow: 0 0 32px rgba(20,219,170,0.4); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    border-radius: 2px; padding: 0.75rem 1.5rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    white-space: nowrap; position: relative; overflow: hidden;
}
.btn:active { transform: scale(0.97) !important; }

.btn-primary {
    background: #14dbaa;
    color: #002b29;
    box-shadow: 0 0 16px rgba(20,219,170,0.18);
}
.btn-primary::after {
    content: ''; position: absolute; inset: 0;
    pointer-events: none;
}
.btn-primary:hover {
    background: #0ec298;
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(20,219,170,0.22);
}
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(20,219,170,0.3); }
    50%       { box-shadow: 0 0 0 8px rgba(20,219,170,0); }
}

.btn-ghost { background: transparent; color: var(--on-surface); border: 1px solid var(--outline-ghost); }
.btn-ghost:hover { border-color: rgba(20,219,170,0.4); background: rgba(20,219,170,0.05); transform: translateY(-2px); }

.btn-kick { background: rgba(83,252,18,0.08); color: #53fc12; border: 1px solid rgba(83,252,18,0.18); }
.btn-kick:hover { background: rgba(83,252,18,0.15); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(83,252,18,0.18); }

.btn-fb { background: rgba(24,119,242,0.08); color: var(--on-surface); border: 1px solid rgba(24,119,242,0.2); }
.btn-fb:hover { background: rgba(24,119,242,0.15); transform: translateY(-2px); }

/* ── NAV ────────────────────────────────────────────────────── */
.nav-link {
    font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--on-surface-2); text-decoration: none;
    position: relative; padding-bottom: 3px; transition: color 0.2s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0); transition: transform 0.22s ease;
    transform-origin: left;
}
.nav-link:hover        { color: var(--on-surface); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active        { color: var(--primary); }
.nav-link.active::after { transform: scaleX(1); }

#mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.32s cubic-bezier(0.22,1,0.36,1), opacity 0.28s ease; opacity: 0; }
#mobile-menu.open { max-height: 360px; opacity: 1; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero-display {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900; line-height: 0.88; letter-spacing: -0.04em;
}
.hd-line-1 { color: #fff; }
.hd-line-2 { color: transparent; -webkit-text-stroke: 1.5px rgba(134,192,188,0.35); }
.hd-line-3 { color: var(--primary); text-shadow: 0 0 40px rgba(20,219,170,0.5); }

/* Badge */
.badge-verified {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--primary); background: rgba(20,219,170,0.07);
    border: 1px solid rgba(20,219,170,0.18); border-radius: 2px;
    padding: 0.28rem 0.7rem;
}
.badge-dot { width: 5px; height: 5px; background: var(--primary); border-radius: 50%; animation: dot-pulse 1.6s ease infinite; }
@keyframes dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(20,219,170,0.55); }
    50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(20,219,170,0); }
}

/* Offer card */
.offer-card {
    background: rgba(15,28,32,0.7);
    border: 1px solid var(--outline-ghost);
    border-top: 2px solid rgba(20,219,170,0.5);
    border-radius: 2px;
    backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
}

/* Promo pill */
.promo-pill {
    background: rgba(0,12,16,0.9); border: 1px solid rgba(20,219,170,0.22); border-radius: 2px;
    padding: 0.65rem 1rem; display: flex; align-items: center;
    justify-content: space-between; gap: 0.75rem; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.promo-pill:hover { border-color: rgba(20,219,170,0.5); background: rgba(20,219,170,0.05); }
.promo-code { font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 1.2rem; color: var(--primary); letter-spacing: 0.18em; }
.copy-hint  { color: rgba(20,219,170,0.55); font-size: 0.7rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; gap: 0.3rem; transition: color 0.2s; }
.promo-pill:hover .copy-hint { color: var(--primary); }

/* Countdown */
.cd-num   { font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 1.875rem; color: var(--primary); line-height: 1; display: block; }
.cd-label { font-family: 'Inter', sans-serif; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-surface-3); margin-top: 0.2rem; display: block; }
.cd-sep   { font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 1.4rem; color: rgba(20,219,170,0.35); padding-bottom: 0.5rem; }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger > *:nth-child(1) { transition-delay: 0.04s; }
.stagger > *:nth-child(2) { transition-delay: 0.11s; }
.stagger > *:nth-child(3) { transition-delay: 0.18s; }
.stagger > *:nth-child(4) { transition-delay: 0.25s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.39s; }

/* ── SECTION TYPOGRAPHY ─────────────────────────────────────── */
.eyebrow {
    font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--secondary); opacity: 0.9;
}
.section-title {
    font-family: 'Space Grotesk', sans-serif; font-weight: 800;
    letter-spacing: -0.04em; color: #fff; line-height: 1.0;
}

/* ── 5-CARD LEADERBOARD ─────────────────────────────────────── */
.lb-cards-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
}
@media (max-width: 900px)  { .lb-cards-5 { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 560px)  { .lb-cards-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; padding-top: 10px; } }

.lb-card-item {
    background: var(--surface-mid);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1.75rem 1rem 1.25rem;
    text-align: center;
    position: relative; overflow: hidden;
    transition: border-color 0.25s, opacity 0.25s, transform 0.25s;
    opacity: 0.88;
    display: flex; flex-direction: column; align-items: center;
}
.lb-card-item:not(.rank-1):hover { border-color: var(--outline-ghost); opacity: 1; transform: translateY(-3px); }

.lb-card-item.rank-1 {
    background: linear-gradient(to bottom, #1a0d07, #0c1a1e);
    border: 2px solid var(--primary);
    box-shadow: 0 0 32px rgba(20,219,170,0.18), 0 8px 32px rgba(0,0,0,0.6);
    transform: scale(1.05) translateY(-10px);
    opacity: 1; z-index: 2;
}
.lb-card-item.rank-1::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20,219,170,0.07), transparent);
    pointer-events: none;
}

.lb-card-place {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem; font-weight: 800;
    letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: 1.1rem;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.rank-1 .lb-card-place { color: var(--primary); }
.rank-2 .lb-card-place { color: rgba(134,192,188,0.55); }
.rank-3 .lb-card-place { color: rgba(184,115,51,0.55); }
.rank-4 .lb-card-place { color: rgba(206,231,238,0.28); }
.rank-5 .lb-card-place { color: rgba(206,231,238,0.2); }

.lb-card-avatar-wrap { position: relative; margin: 0 auto 0.75rem; width: 56px; height: 56px; }
.lb-card-avatar { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; }
.rank-1 .lb-card-avatar { background: var(--primary); color: #fff; box-shadow: 0 0 22px rgba(20,219,170,0.45); }
.rank-2 .lb-card-avatar { background: var(--secondary-bg); border: 1.5px solid var(--teal-border); color: var(--secondary); }
.rank-3 .lb-card-avatar { background: rgba(184,115,51,0.1); border: 1.5px solid rgba(184,115,51,0.2); color: #b87333; }
.rank-4 .lb-card-avatar { background: rgba(206,231,238,0.04); border: 1.5px solid rgba(206,231,238,0.08); color: rgba(206,231,238,0.3); }
.rank-5 .lb-card-avatar { background: rgba(206,231,238,0.03); border: 1.5px solid rgba(206,231,238,0.06); color: rgba(206,231,238,0.22); }

.lb-card-badge { position: absolute; top: -5px; right: -5px; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.lb-card-badge.crown   { background: #eab308; color: #000; transform: rotate(12deg); box-shadow: 0 2px 8px rgba(234,179,8,0.5); }
.lb-card-badge.medal-2 { background: var(--surface-mid); border: 1px solid var(--teal-border); color: var(--secondary); }
.lb-card-badge.medal-3 { background: var(--surface-mid); border: 1px solid rgba(184,115,51,0.3); color: #b87333; }

.lb-card-name { font-family: 'Geist Mono', monospace; font-size: 0.75rem; font-weight: 700; color: rgba(232,245,249,0.9); margin-bottom: 0.2rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.rank-1 .lb-card-name { font-size: 0.85rem; color: #fff; }
.lb-card-wager { font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.6rem; color: var(--on-surface-3); margin-bottom: 0.65rem; }

.lb-card-prize-wrap { margin-top: auto; padding-top: 0.75rem; width: 100%; border-top: 1px solid var(--border); }
.rank-1 .lb-card-prize-wrap { border-top-color: rgba(20,219,170,0.25); }
.lb-card-prize { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.02em; color: rgba(134,192,188,0.65); }
.rank-1 .lb-card-prize { font-size: 1.6rem; color: var(--primary); text-shadow: 0 0 20px rgba(20,219,170,0.5); }
.rank-2 .lb-card-prize { color: var(--secondary); }
.rank-3 .lb-card-prize { color: #c8884a; }

/* Countdown card */
.lb-countdown-card {
    background: var(--surface-low); border: 1px solid var(--border); border-radius: 2px;
    padding: 1.5rem 2rem; max-width: 520px; margin: 0 auto 2.5rem; text-align: center;
}
.lb-countdown-header {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; color: rgba(20,219,170,0.6);
    margin-bottom: 0.875rem;
}
.lb-countdown-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(20,219,170,0.2), transparent); }
.lb-countdown-nums { display: flex; align-items: flex-end; justify-content: center; gap: 0.5rem; }
.lb-cd-unit { text-align: center; min-width: 48px; }
.lb-cd-num  { font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 2rem; color: var(--primary); line-height: 1; display: block; }
.lb-cd-lbl  { font-family: 'Inter', sans-serif; font-size: 0.52rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-surface-3); margin-top: 0.2rem; display: block; }
.lb-cd-sep  { font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 1.5rem; color: rgba(20,219,170,0.3); padding-bottom: 0.4rem; }

/* Leaderboard toggle */
.lb-toggle-wrap { position: relative; display: inline-flex; align-items: center; background: rgba(206,231,238,0.03); border: 1px solid var(--border); border-radius: 100px; padding: 4px; user-select: none; }
.lb-slider { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); width: calc(50% - 4px); background: linear-gradient(135deg, var(--primary-light), var(--primary)); border-radius: 100px; transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1); box-shadow: 0 2px 12px rgba(20,219,170,0.4); pointer-events: none; z-index: 0; }
.lb-toggle-wrap.lb-second .lb-slider { transform: translateX(100%); }
.lb-toggle-btn { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 100px; font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: color 0.2s ease; color: rgba(206,231,238,0.4); white-space: nowrap; }
.lb-toggle-btn.lb-active { color: #000000; }

/* ── BENEFITS BENTO ─────────────────────────────────────────── */
.bento-grid { display: grid; gap: 0.875rem; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 640px)  { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(12, 1fr); align-items: stretch; }
    .bento-a { grid-column: span 8; }
    .bento-b { grid-column: span 4; }
    .bento-c { grid-column: span 4; }
    .bento-d { grid-column: span 4; }
    .bento-f { grid-column: span 4; }
    .bento-e { grid-column: span 12; }
}
.bento-card { border-radius: 2px; padding: 1.75rem; border: 1px solid var(--border); background: var(--surface-low); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.bento-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at top left, rgba(20,219,170,0.04) 0%, transparent 60%); pointer-events: none; opacity: 0; transition: opacity 0.3s; }
.bento-card:hover { transform: translateY(-4px); border-color: var(--primary-border); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.bento-card:hover::before { opacity: 1; }
.bento-card.featured { background: rgba(20,219,170,0.03); border-color: rgba(20,219,170,0.12); background-image: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(20,219,170,0.05) 0%, transparent 70%); }
.bento-card.featured .bento-num { font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--primary); letter-spacing: -0.04em; line-height: 1; }
.bento-icon { width: 40px; height: 40px; background: rgba(20,219,170,0.07); border: 1px solid rgba(20,219,170,0.12); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 1.25rem; transition: background 0.2s, box-shadow 0.2s; }
.bento-card:hover .bento-icon { background: rgba(20,219,170,0.12); box-shadow: 0 0 14px rgba(20,219,170,0.2); }
.bento-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: var(--on-surface); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.bento-body  { font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.8125rem; color: var(--on-surface-2); line-height: 1.65; }

/* ── HOW TO CLAIM ────────────────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; max-width: 860px; margin: 0 auto; position: relative; }
@media (min-width: 768px) {
    .steps-row { grid-template-columns: repeat(4, 1fr); gap: 0 0; }
    .steps-row::before { content: ''; position: absolute; top: 22px; left: 12.5%; right: 12.5%; border-top: 1.5px dashed rgba(20,219,170,0.2); pointer-events: none; }
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.75rem; }
.step-circle { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(20,219,170,0.35); background: var(--surface); display: flex; align-items: center; justify-content: center; font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 0.9375rem; color: var(--primary); flex-shrink: 0; position: relative; z-index: 1; margin-bottom: 1.1rem; transition: background 0.2s, box-shadow 0.2s; }
.step-item:hover .step-circle { background: rgba(20,219,170,0.08); box-shadow: 0 0 16px rgba(20,219,170,0.25); }
.step-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--on-surface); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.step-body  { font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.8rem; color: var(--on-surface-2); line-height: 1.65; max-width: 180px; }

/* ── KICK SECTION ───────────────────────────────────────────── */
.kick-section { background: transparent; position: relative; overflow: hidden; }
.kick-section::after  { content: ''; position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 40% 100% at 0% 50%, rgba(83,252,18,0.015) 0%, transparent 70%); pointer-events: none; }

.kick-live-grid { display: grid; grid-template-columns: 1fr; gap: 0.875rem; }
@media (min-width: 900px) { .kick-live-grid { grid-template-columns: 1fr 260px; align-items: stretch; } }

.kick-gifters-panel { display: flex; flex-direction: column; border-radius: 2px; overflow: hidden; min-height: 340px; height: 100%; background: var(--surface-mid); border: 1px solid var(--border); }
.kick-gifters-nav { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.875rem 1rem; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.kick-gifters-title { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-surface-2); text-align: center; flex: 1; }
.kick-nav-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: rgba(206,231,238,0.04); border: 1px solid var(--border); border-radius: 2px; color: var(--on-surface-3); cursor: pointer; flex-shrink: 0; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.kick-nav-btn:hover { border-color: rgba(83,252,18,0.3); color: #53fc12; background: rgba(83,252,18,0.05); }
.kick-gifters-body { flex: 1; overflow-y: auto; padding: 0.5rem 0; }
.kick-gifters-footer { padding: 0.75rem 1rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.kick-gifters-loading, .kick-gifters-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 200px; text-align: center; padding: 1rem; }
.kick-gifters-list { list-style: none; margin: 0; padding: 0; }
.kick-gifter-row { display: flex; align-items: center; gap: 0.625rem; padding: 0.5rem 1rem; border-bottom: 1px solid rgba(206,231,238,0.03); transition: background 0.15s; }
.kick-gifter-row:last-child { border-bottom: none; }
.kick-gifter-row:hover { background: rgba(83,252,18,0.025); }
.kick-gifter-rank { width: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kick-gifter-name { flex: 1; min-width: 0; font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.8rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kick-gifter-qty { display: flex; align-items: center; gap: 0.25rem; font-family: 'Geist Mono', monospace; font-size: 0.7rem; font-weight: 700; color: rgba(83,252,18,0.7); flex-shrink: 0; }

.kick-stream-wrap { position: relative; padding-top: 56.25%; background: var(--surface); border-radius: 2px; border: 1px solid var(--border); overflow: hidden; }
.kick-offline-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--surface); z-index: 10; overflow: hidden; }
.kick-offline-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0.4; }
.kick-offline-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,22,27,0.5) 0%, rgba(0,22,27,0.8) 100%); }
.kick-offline-inner { position: relative; z-index: 2; text-align: center; padding: 2rem; }

/* ── STAT PILL ──────────────────────────────────────────────── */
.stat-pill { font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--secondary); background: var(--secondary-bg); border: 1px solid var(--teal-border); border-radius: 2px; padding: 0.28rem 0.6rem; display: inline-flex; align-items: center; gap: 0.38rem; }

/* ── SOCIAL RADIAL MENU (JS-driven rAF) ──────────────────────── */
.srm-wrap { position: relative; width: 380px; height: 380px; flex-shrink: 0; }
.srm-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.srm-ring-outer { inset: 5%; border: 1px dashed rgba(20,219,170,0.14); animation: orbit-spin 60s linear infinite; }
.srm-ring-inner { inset: 28%; border: 1px dashed rgba(20,219,170,0.07); animation: orbit-spin 30s linear infinite reverse; }
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.srm-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 110px; height: 110px; background: transparent; border: none; border-radius: 0; display: flex; align-items: center; justify-content: center; z-index: 2; }
.srm-node { position: absolute; top: 0; left: 0; width: 52px; height: 52px; background: var(--surface-mid); border: 1px solid rgba(20,219,170,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(232,245,249,0.65); text-decoration: none; z-index: 3; will-change: transform; transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s; }
.srm-node:hover { color: #14dbaa; border-color: rgba(20,219,170,0.55); background: rgba(20,219,170,0.07); box-shadow: 0 0 16px rgba(20,219,170,0.2); }
.social-node-inner { width: 48px; height: 48px; background: var(--surface-mid); border: 1px solid var(--outline-ghost); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--on-surface-2); transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s; }
.social-node:hover .social-node-inner { background: rgba(20,219,170,0.1); border-color: rgba(20,219,170,0.35); color: var(--primary); box-shadow: 0 0 14px rgba(20,219,170,0.25); }
.social-node-label { font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-surface-3); transition: color 0.2s; }
.social-node:hover .social-node-label { color: var(--primary); }

.social-pill { display: inline-flex; align-items: center; gap: 0.45rem; font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; color: var(--on-surface-2); background: var(--surface-low); border: 1px solid var(--border); border-radius: 2px; padding: 0.55rem 1rem; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.social-pill:hover { border-color: rgba(20,219,170,0.3); color: var(--primary); background: rgba(20,219,170,0.04); }

/* ── PRIZE COUNTER ──────────────────────────────────────────── */
@keyframes count-up { from { opacity: 0.2; filter: blur(3px); transform: translateY(3px); } to { opacity: 1; filter: blur(0); transform: translateY(0); } }
.counter-animate { animation: count-up 0.38s ease forwards; }

/* ── ADMIN INPUTS ─────────────────────────────────────────────*/
.admin-input { background: rgba(0,12,16,0.9) !important; border: 1px solid var(--border) !important; border-left: 2px solid transparent !important; color: var(--on-surface) !important; box-shadow: none !important; border-radius: 2px; padding: 0.5rem 0.75rem; font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.875rem; width: 100%; outline: none; transition: border-color 0.2s, border-left-color 0.2s !important; }
.admin-input:focus { border-left-color: var(--primary) !important; border-color: var(--primary-border) !important; }
.admin-input::placeholder { color: var(--on-surface-3) !important; }

.admin-select { background: rgba(0,12,16,0.9) !important; border: 1px solid var(--border) !important; color: var(--on-surface) !important; border-radius: 2px; padding: 0.5rem 0.75rem; font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.8125rem; outline: none; transition: border-color 0.2s !important; cursor: pointer; }
.admin-select:focus { border-color: var(--primary-border) !important; }
.admin-select option { background: #061f24; }

/* ── ADMIN BUTTON ─────────────────────────────────────────────*/
.admin-btn { display: inline-flex; align-items: center; gap: 0.45rem; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; padding: 0.75rem 1.5rem; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; white-space: nowrap; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--primary-light), var(--primary)); color: #fff; animation: none !important; }
.admin-btn:hover { background: linear-gradient(135deg, var(--primary), var(--primary-dim)); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(20,219,170,0.35); }
.admin-btn:active { transform: scale(0.97); }

/* ── SPOTLIGHT GLOW ───────────────────────────────────────── */
[data-glow] { --base: 14; --spread: 60; --sz: 200px; --hue: calc(var(--base) + (var(--xp, 0.5) * var(--spread))); background-image: radial-gradient(var(--sz) var(--sz) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px), hsl(var(--hue) 100% 65% / 0.06), transparent); background-attachment: fixed; position: relative; transition: border-color 0.3s; }
[data-glow]::before { content: ''; pointer-events: none; position: absolute; inset: 0; border-radius: inherit; background-attachment: fixed; background-image: radial-gradient(calc(var(--sz) * 0.6) calc(var(--sz) * 0.6) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px), hsl(var(--hue) 100% 65% / 0.45), transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; padding: 1px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); }

/* ── AUTOFILL ─────────────────────────────────────────────────*/
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 1000px #000 inset !important; -webkit-text-fill-color: var(--on-surface) !important; caret-color: var(--on-surface) !important; transition: background-color 9999s ease-in-out 0s !important; }

/* ── HERO GRID ───────────────────────────────────────────────── */
.hero-grid { grid-template-columns: 1fr; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 480px; gap: 3rem; } }

/* ── PLATFORM BUTTONS (Stake card) ──────────────────────────── */
.platform-btn {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    padding: 0.65rem 0.25rem;
    background: rgba(206,231,238,0.03);
    border: 1px solid rgba(206,231,238,0.07);
    border-radius: 2px;
    color: rgba(206,231,238,0.45);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-align: center;
}
.platform-btn:hover {
    color: var(--primary);
    border-color: var(--primary-border);
    background: var(--primary-muted);
}

/* ── PODIUM LEADERBOARD ─────────────────────────────────────── */
.lb-podium-wrap { max-width: 1100px; margin: 0 auto; padding-top: 16px; }

.lb-podium-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 12px; align-items: end; padding-bottom: 12px;
}

.lb-pod-card {
    background: #111518; border: 1px solid rgba(206,231,238,0.1); border-radius: 2px;
    padding: 1.5rem 1rem 1.25rem; text-align: center;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
    transition: transform 0.25s, border-color 0.25s;
}
.lb-pod-card.rank-1 {
    background: linear-gradient(to bottom, #0d2420, #0a1a1e);
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px rgba(20,219,170,0.18), 0 8px 32px rgba(0,0,0,0.7);
    transform: translateY(-20px);
}
.lb-pod-card.rank-1::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20,219,170,0.07), transparent);
    pointer-events: none;
}
.lb-pod-card.rank-2 { border-color: rgba(134,192,188,0.2); }
.lb-pod-card.rank-3 { border-color: rgba(184,115,51,0.2); }
.lb-pod-card:not(.rank-1):hover { transform: translateY(-3px); }

.lb-pod-place {
    font-family: 'Inter', sans-serif; font-size: 0.55rem; font-weight: 800;
    letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 4px;
}
.rank-1 .lb-pod-place { color: var(--primary); }
.rank-2 .lb-pod-place { color: rgba(134,192,188,0.55); }
.rank-3 .lb-pod-place { color: rgba(184,115,51,0.55); }

.lb-pod-avatar-wrap { position: relative; margin: 0 auto 0.75rem; width: 60px; height: 60px; }
.lb-pod-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif; font-weight: 800;
    font-size: 1.3rem; text-transform: uppercase;
}
.rank-1 .lb-pod-avatar { background: var(--primary); color: #002b29; box-shadow: 0 0 22px rgba(20,219,170,0.45); }
.rank-2 .lb-pod-avatar { background: var(--secondary-bg); border: 1.5px solid var(--teal-border); color: var(--secondary); }
.rank-3 .lb-pod-avatar { background: rgba(184,115,51,0.1); border: 1.5px solid rgba(184,115,51,0.2); color: #b87333; }

.lb-pod-name {
    font-family: 'Geist Mono', monospace; font-size: 0.75rem; font-weight: 700;
    color: rgba(232,245,249,0.9); margin-bottom: 0.2rem;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%;
}
.rank-1 .lb-pod-name { font-size: 0.85rem; color: #fff; }
.lb-pod-wager { font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.6rem; color: var(--on-surface-3); margin-bottom: 0.65rem; }
.lb-pod-prize {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.02em;
    padding-top: 0.6rem; border-top: 1px solid var(--border); width: 100%;
    color: rgba(134,192,188,0.65);
}
.rank-1 .lb-pod-prize { font-size: 1.6rem; color: var(--primary); text-shadow: 0 0 20px rgba(20,219,170,0.5); border-top-color: rgba(20,219,170,0.25); }
.rank-2 .lb-pod-prize { color: var(--secondary); }
.rank-3 .lb-pod-prize { color: #c8884a; }

/* Slim rows #4 & #5 */
.lb-slim-row {
    max-width: 1100px; margin: 0 auto 8px;
    background: #111518; border: 1px solid rgba(206,231,238,0.1); border-radius: 2px;
    padding: 0.875rem 1.25rem;
    display: grid; grid-template-columns: 44px 36px 1fr auto auto;
    align-items: center; gap: 0.75rem;
    transition: border-color 0.2s;
}
.lb-slim-row:hover { border-color: var(--outline-ghost); }
.lb-slim-rank { font-family: 'Geist Mono', monospace; font-size: 0.72rem; font-weight: 700; color: rgba(206,231,238,0.28); }
.lb-slim-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(206,231,238,0.04); border: 1px solid rgba(206,231,238,0.08);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    font-size: 0.75rem; color: rgba(206,231,238,0.3);
}
.lb-slim-name { font-family: 'Geist Mono', monospace; font-size: 0.75rem; font-weight: 700; color: rgba(232,245,249,0.7); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-slim-wager { font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.7rem; color: var(--on-surface-3); white-space: nowrap; }
.lb-slim-prize { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.02em; color: rgba(134,192,188,0.55); white-space: nowrap; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    .lb-podium-row { gap: 7px; }
    .lb-pod-card { padding: 1rem 0.5rem; }
    .lb-pod-avatar-wrap, .lb-pod-avatar { width: 46px; height: 46px; }
    .lb-pod-avatar { font-size: 1rem; }
    .lb-pod-card.rank-1 { transform: translateY(-12px); }
    .lb-slim-row { grid-template-columns: 36px 30px 1fr auto; }
    .lb-slim-wager { display: none; }
}
@media (max-width: 480px) { .lb-toggle-btn { font-size: 0.58rem; padding: 7px 10px; gap: 4px; } }
