@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #160600;
    --bg-soft: #2b0f02;
    --panel: rgba(36, 14, 1, 0.86);
    --panel-strong: rgba(22, 8, 1, 0.94);
    --line: rgba(255, 169, 58, 0.26);
    --line-soft: rgba(255, 214, 140, 0.12);
    --text: #fff5e8;
    --muted: #d4ab83;
    --orange: #ff8c00;
    --amber: #ffb300;
    --yellow: #ffd966;
    --fire: #ff5c00;
    --green: #49e18b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { min-height: 100%; }

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(ellipse at 12% 6%, rgba(255, 140, 0, 0.42), transparent 40%),
        radial-gradient(ellipse at 88% 4%, rgba(255, 69, 0, 0.36), transparent 38%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 183, 0, 0.12), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 140, 0, 0.2), transparent 50%),
        linear-gradient(180deg, #2e0e00 0%, #1a0700 40%, #100300 100%);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Card suit pattern overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ctext x='10' y='30' font-size='18' fill='%23ff8c00' opacity='0.6'%3E%E2%99%A0%3C/text%3E%3Ctext x='45' y='30' font-size='18' fill='%23ff8c00' opacity='0.6'%3E%E2%99%A3%3C/text%3E%3Ctext x='10' y='65' font-size='18' fill='%23ff8c00' opacity='0.6'%3E%E2%99%A5%3C/text%3E%3Ctext x='45' y='65' font-size='18' fill='%23ff8c00' opacity='0.6'%3E%E2%99%A6%3C/text%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 80px 80px;
}

/* Floating ember particles — replaced with drifting diagonal sparks */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(2.2px 2.2px at 8% 20%, rgba(255, 220, 80, 0.65), transparent),
        radial-gradient(2px 2px at 28% 60%, rgba(255, 140, 0, 0.55), transparent),
        radial-gradient(1.8px 1.8px at 50% 14%, rgba(255, 215, 0, 0.45), transparent),
        radial-gradient(2.5px 2.5px at 68% 42%, rgba(255, 165, 0, 0.5), transparent),
        radial-gradient(2px 2px at 85% 70%, rgba(255, 200, 50, 0.45), transparent),
        radial-gradient(1.5px 1.5px at 18% 82%, rgba(255, 140, 0, 0.4), transparent),
        radial-gradient(2px 2px at 40% 48%, rgba(255, 215, 0, 0.35), transparent),
        radial-gradient(2.2px 2.2px at 95% 26%, rgba(255, 179, 0, 0.5), transparent);
    animation: sparkDrift 18s linear infinite;
}

@keyframes sparkDrift {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.35; }
    25% { transform: translate(-6px, -14px) rotate(1deg); opacity: 0.6; }
    50% { transform: translate(4px, -28px) rotate(-0.5deg); opacity: 0.45; }
    75% { transform: translate(-3px, -42px) rotate(0.8deg); opacity: 0.6; }
    100% { transform: translate(0, -56px) rotate(0deg); opacity: 0.35; }
}

.page-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.page-main {
    position: relative;
    z-index: 2;
    flex: 1 0 auto;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* ── Topbar ───────────────────────────────────────── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(18, 7, 1, 0.82);
    border-bottom: 1px solid var(--line);
    box-shadow:
        0 4px 30px rgba(255, 120, 0, 0.12),
        0 1px 0 rgba(255, 179, 0, 0.14);
}

.topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    filter: drop-shadow(0 0 14px rgba(255, 179, 0, 0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Bebas Neue', 'Arial Black', Impact, sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1.6px;
    color: #fff5e8;
}

.brand-sub {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3.2px;
    background: linear-gradient(135deg, #ffd966, #ffb300, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-nav-link {
    color: #ffe2be;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.86rem;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 9px 16px;
    transition: 0.22s ease;
    position: relative;
    overflow: hidden;
}

.topbar-nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 100, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.4s ease;
}

.topbar-nav-link:hover { border-color: rgba(255, 169, 58, 0.4); background: rgba(255, 140, 0, 0.14); transform: translateY(-1px); }
.topbar-nav-link:hover::before { left: 130%; }

.topbar-nav-link.active {
    border-color: rgba(255, 179, 0, 0.65);
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.32), rgba(255, 69, 0, 0.22));
    color: #fff;
    box-shadow: inset 0 0 18px rgba(255, 140, 0, 0.12), 0 0 18px rgba(255, 140, 0, 0.2);
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    padding: 12px 18px;
    transition: 0.22s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.45s ease;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    color: #2b0d00;
    background: linear-gradient(135deg, #ff8c00 0%, #ffb300 45%, #ffd966 100%);
    box-shadow: 0 10px 32px rgba(255, 130, 0, 0.4), 0 0 20px rgba(255, 179, 0, 0.12);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(255, 130, 0, 0.55), 0 0 30px rgba(255, 179, 0, 0.2);
    filter: saturate(1.12) brightness(1.06);
}

.btn-outline {
    color: #ffe1b8;
    border-color: var(--line);
    background: rgba(255, 140, 0, 0.05);
}

.btn-outline:hover {
    background: rgba(255, 140, 0, 0.18);
    border-color: rgba(255, 179, 0, 0.6);
    box-shadow: 0 6px 22px rgba(255, 130, 0, 0.18);
    transform: translateY(-2px);
}

.btn-small { padding: 9px 13px; font-size: 0.84rem; }
.full-width-btn { width: 100%; margin-top: 14px; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

/* ── Home Stage ───────────────────────────────────── */
.home-stage { padding: 44px 0 24px; }

.home-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.3fr;
    gap: 16px;
}

/* Shared panel base */
.home-side,
.home-hero-panel,
.column-card,
.metric-card,
.board,
.leader-stat-grid article {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel-strong);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* ── Home Side ────────────────────────────────────── */
.home-side {
    padding: 26px 22px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 179, 0, 0.18), transparent 40%),
        linear-gradient(180deg, rgba(255, 140, 0, 0.14), rgba(20, 7, 1, 0.88));
    box-shadow: 0 12px 40px rgba(255, 120, 0, 0.08), inset 0 1px 0 rgba(255, 200, 100, 0.12);
}

.home-side:hover {
    border-color: rgba(255, 179, 0, 0.45);
    box-shadow: 0 16px 50px rgba(255, 120, 0, 0.16), inset 0 0 24px rgba(255, 140, 0, 0.06);
    transform: translateY(-3px);
}

.side-kicker {
    color: var(--yellow);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 217, 102, 0.3);
}

.side-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #fff, #ffe0b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(255, 179, 0, 0.25));
}

.side-copy { margin-top: 10px; color: var(--muted); font-size: 0.95rem; line-height: 1.45; }

.side-points { margin-top: 14px; display: grid; gap: 8px; }

.side-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    padding: 9px 11px;
    background: rgba(255, 140, 0, 0.06);
    font-size: 0.9rem;
    transition: 0.2s ease;
}

.side-points div:hover {
    background: rgba(255, 140, 0, 0.14);
    border-color: rgba(255, 179, 0, 0.4);
    transform: translateX(3px);
}

.side-points i { color: var(--amber); filter: drop-shadow(0 0 6px rgba(255, 179, 0, 0.5)); }

/* ── Home Hero Panel ──────────────────────────────── */
.home-hero-panel {
    padding: 30px 24px 24px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 86% 0%, rgba(255, 69, 0, 0.32), transparent 42%),
        radial-gradient(ellipse at 10% 100%, rgba(255, 179, 0, 0.22), transparent 40%),
        linear-gradient(180deg, rgba(255, 140, 0, 0.12), rgba(20, 7, 1, 0.92));
    box-shadow: 0 18px 60px rgba(255, 100, 0, 0.12), 0 0 60px rgba(255, 140, 0, 0.06), inset 0 1px 0 rgba(255, 200, 100, 0.16);
}

/* Diagonal light stripe across hero */
.home-hero-panel::before {
    content: "";
    position: absolute;
    inset: -50%;
    pointer-events: none;
    background: conic-gradient(from 45deg at 50% 50%, transparent 0deg, rgba(255, 200, 100, 0.06) 30deg, transparent 60deg, transparent 360deg);
    animation: heroRotate 20s linear infinite;
}

@keyframes heroRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Corner accent glow */
.home-hero-panel::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2), transparent 65%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-topline {
    color: var(--yellow);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 217, 102, 0.3);
    position: relative;
    z-index: 2;
}

.hero-prize {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 9vw, 5rem);
    line-height: 0.9;
    margin-top: 12px;
    letter-spacing: 0.04em;
    background: linear-gradient(130deg, #ffe490, #ffb300, #ff7a00, #ffb300, #ffe490);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: prizeFlicker 6s ease-in-out infinite;
    filter: drop-shadow(0 6px 24px rgba(255, 140, 0, 0.4));
    position: relative;
    z-index: 2;
}

@keyframes prizeFlicker {
    0%, 100% { background-position: 0% center; filter: drop-shadow(0 6px 24px rgba(255, 140, 0, 0.4)) brightness(1); }
    30% { background-position: 100% center; filter: drop-shadow(0 6px 30px rgba(255, 140, 0, 0.55)) brightness(1.08); }
    60% { background-position: 200% center; filter: drop-shadow(0 6px 24px rgba(255, 140, 0, 0.4)) brightness(1); }
    80% { background-position: 300% center; filter: drop-shadow(0 6px 28px rgba(255, 140, 0, 0.5)) brightness(1.04); }
}

.hero-tagline { margin-top: 10px; color: var(--muted); position: relative; z-index: 2; }

/* ── Countdown ────────────────────────────────────── */
.countdown-grid {
    margin-top: 16px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    z-index: 2;
}

.countdown-item {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    text-align: center;
    padding: 12px 6px;
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.1), rgba(20, 8, 1, 0.7));
    box-shadow: inset 0 0 14px rgba(255, 140, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.countdown-item:hover {
    border-color: rgba(255, 179, 0, 0.5);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.18), inset 0 0 18px rgba(255, 140, 0, 0.06);
    transform: translateY(-3px);
}

.countdown-item span {
    display: block;
    font-size: clamp(1.4rem, 4.2vw, 2.3rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffd966, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-item small {
    display: block;
    margin-top: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Metric Row ───────────────────────────────────── */
.home-metric-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.metric-card {
    padding: 16px;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 140, 0, 0.12), transparent 50%),
        linear-gradient(180deg, rgba(255, 140, 0, 0.08), rgba(20, 8, 1, 0.86));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 179, 0, 0.48);
    box-shadow: 0 14px 36px rgba(255, 120, 0, 0.18), 0 0 18px rgba(255, 140, 0, 0.1);
}

.metric-card small { color: var(--yellow); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.67rem; text-shadow: 0 0 8px rgba(255, 217, 102, 0.25); }
.metric-card strong { display: block; font-size: 1.18rem; margin-top: 6px; }
.metric-card p { margin-top: 6px; color: var(--muted); font-size: 0.88rem; }

/* ── Content Columns ──────────────────────────────── */
.home-content { padding: 20px 0 26px; }

.content-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 14px;
}

.column-card {
    padding: 22px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 90%, rgba(255, 140, 0, 0.1), transparent 50%),
        var(--panel-strong);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.column-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 16px 40px rgba(255, 120, 0, 0.14), 0 0 20px rgba(255, 140, 0, 0.08);
}

.column-card h2,
.home-band h2,
.home-socials h2,
.page-title {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.04em;
}

.column-card h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff, #ffe0b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-block {
    margin-top: 12px;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background:
        linear-gradient(120deg, rgba(255, 179, 0, 0.1), rgba(255, 92, 0, 0.08)),
        rgba(255, 140, 0, 0.04);
    box-shadow: inset 0 0 18px rgba(255, 140, 0, 0.04);
}

.bonus-block p, .column-lead { color: var(--muted); margin-top: 6px; }

.mini-info-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mini-info-grid article {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 140, 0, 0.05);
    transition: 0.2s ease;
}

.mini-info-grid article:hover {
    background: rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 179, 0, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 120, 0, 0.1);
}

.mini-info-grid h3 { font-size: 1rem; }
.mini-info-grid p { margin-top: 6px; color: var(--muted); font-size: 0.9rem; }

.column-feature-list { margin-top: 12px; display: grid; gap: 9px; }

.column-feature-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(255, 140, 0, 0.06);
    transition: 0.2s ease;
}

.column-feature-list div:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 179, 0, 0.4);
    transform: translateX(4px);
}

.column-feature-list i {
    color: var(--amber);
    filter: drop-shadow(0 0 6px rgba(255, 179, 0, 0.5));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.column-feature-list div:hover i {
    transform: scale(1.2) rotate(-8deg);
    filter: drop-shadow(0 0 10px rgba(255, 179, 0, 0.7));
}

/* ── Band ─────────────────────────────────────────── */
.home-band { padding: 10px 0 24px; }

.band-inner {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(255, 179, 0, 0.18), rgba(255, 69, 0, 0.14)),
        var(--panel);
    box-shadow: 0 12px 40px rgba(255, 100, 0, 0.1);
}

.band-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 200, 100, 0.08) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.band-inner:hover::after {
    opacity: 1;
}

.home-band h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #ffd966, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-band p { color: var(--muted); margin-top: 6px; max-width: 680px; }

.band-actions { display: flex; gap: 8px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ── Socials ──────────────────────────────────────── */
.home-socials { padding: 4px 0 36px; }

.home-socials h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffd966, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-pills {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-pill {
    text-decoration: none;
    color: var(--text);
    min-height: 48px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: rgba(255, 140, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    transition: 0.22s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.social-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.social-pill.discord:hover { border-color: rgba(88, 101, 242, 0.7); background: rgba(88, 101, 242, 0.2); }
.social-pill.instagram:hover { border-color: rgba(214, 41, 118, 0.66); background: rgba(214, 41, 118, 0.2); }
.social-pill.x:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.12); }
.social-pill.youtube:hover { border-color: rgba(255, 0, 0, 0.64); background: rgba(255, 0, 0, 0.18); }

/* ── Page Hero (Leaderboard/Rewards) ──────────────── */
.page-hero { padding: 36px 0 18px; }

.page-hero-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.05fr 1fr;
}

.page-hero-left,
.page-hero-right {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel-strong);
    padding: 22px;
    transition: 0.25s ease;
}

.page-hero-left {
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 179, 0, 0.16), transparent 40%),
        var(--panel-strong);
    box-shadow: 0 12px 36px rgba(255, 100, 0, 0.08);
}

.page-hero-left:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 16px 44px rgba(255, 100, 0, 0.14);
}

.page-kicker {
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.13em;
    text-shadow: 0 0 10px rgba(255, 217, 102, 0.3);
}

.page-title {
    font-size: clamp(2.3rem, 6.5vw, 3.4rem);
    line-height: 0.92;
    margin-top: 10px;
    background: linear-gradient(135deg, #ffe490, #ffb300, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px rgba(255, 140, 0, 0.3));
}

.page-subtitle { color: var(--muted); margin-top: 10px; }

.leader-stat-grid { display: grid; gap: 10px; }

.leader-stat-grid article {
    padding: 12px;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 140, 0, 0.1), transparent 40%),
        rgba(255, 140, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.leader-stat-grid article:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 8px 22px rgba(255, 120, 0, 0.12);
}

.leader-stat-grid small { color: var(--yellow); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.65rem; text-shadow: 0 0 8px rgba(255, 217, 102, 0.2); }
.leader-stat-grid strong { display: block; margin-top: 6px; font-size: 1.02rem; }
.leader-stat-grid p { margin-top: 5px; color: var(--muted); font-size: 0.88rem; }

.page-board-wrap { padding: 4px 0 36px; }

/* ── Board ────────────────────────────────────────── */
.board {
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.board-header,
.board-row {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr 1fr 1fr;
    gap: 12px;
    align-items: center;
}

.board-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.77rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #ffe1bb;
    background: linear-gradient(90deg, rgba(255, 179, 0, 0.22), rgba(255, 69, 0, 0.14));
}

.board-row {
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 179, 0, 0.06);
    transition: 0.22s ease;
    animation: rowEnter 0.4s ease both;
}

.board-row:hover {
    background: rgba(255, 140, 0, 0.12);
    transform: translateX(5px);
    box-shadow: inset 0 0 16px rgba(255, 140, 0, 0.06);
}

.board-header-three, .board-row-three { grid-template-columns: 1fr 1fr 1fr; }
.board-row-three div:last-child { color: var(--green); font-weight: 700; }

.top-1 { color: #ffd966; font-weight: 800; text-shadow: 0 0 12px rgba(255, 217, 102, 0.5); }
.top-2 { color: #e2e2e2; font-weight: 800; text-shadow: 0 0 8px rgba(220, 220, 220, 0.3); }
.top-3 { color: #c98a52; font-weight: 800; text-shadow: 0 0 8px rgba(201, 138, 82, 0.4); }

.board-empty { padding: 16px; color: var(--muted); }

.board-row:nth-child(2) { animation-delay: 0.03s; }
.board-row:nth-child(3) { animation-delay: 0.06s; }
.board-row:nth-child(4) { animation-delay: 0.09s; }
.board-row:nth-child(5) { animation-delay: 0.12s; }
.board-row:nth-child(6) { animation-delay: 0.15s; }
.board-row:nth-child(7) { animation-delay: 0.18s; }
.board-row:nth-child(8) { animation-delay: 0.21s; }
.board-row:nth-child(9) { animation-delay: 0.24s; }
.board-row:nth-child(10) { animation-delay: 0.27s; }

.countdown-finished {
    grid-column: 1 / -1;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(12, 4, 0, 0.94);
    box-shadow: 0 -4px 24px rgba(255, 120, 0, 0.06);
}

.footer-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-inner h3 {
    font-size: 1.02rem;
    background: linear-gradient(135deg, #ffd966, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-inner p { margin-top: 2px; color: var(--muted); font-size: 0.87rem; }

.footer-socials { display: flex; gap: 8px; }

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line-soft);
    background: rgba(255, 140, 0, 0.06);
    display: grid;
    place-items: center;
    color: #ffe1bb;
    text-decoration: none;
    transition: 0.22s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 179, 0, 0.6);
    background: rgba(255, 140, 0, 0.22);
    box-shadow: 0 8px 18px rgba(255, 120, 0, 0.18);
    color: #fff;
}

/* ── Animations ───────────────────────────────────── */
@keyframes rowEnter {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Reduced Motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .home-grid,
    .content-columns,
    .page-hero-grid { grid-template-columns: 1fr; }

    .home-metric-row { grid-template-columns: 1fr; }
    .mini-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .topbar-inner {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .topbar-nav { width: 100%; flex-wrap: wrap; }
    .topbar-nav-link { flex: 1 1 120px; text-align: center; }
    .brand-icon { width: 36px; height: 36px; border-radius: 8px; }
    .brand-name { font-size: 18px; }
    .brand-sub { font-size: 7.5px; letter-spacing: 2.4px; }

    .countdown-grid,
    .social-pills { grid-template-columns: 1fr; }

    .band-inner { flex-direction: column; align-items: flex-start; }

    .board-header,
    .board-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .board-header-three,
    .board-row-three { grid-template-columns: 1fr; }

    .footer-inner {
        min-height: auto;
        padding: 14px 0;
        flex-direction: column;
        text-align: center;
    }

    .bonus-block { flex-direction: column; align-items: flex-start; }
}
