/* ═══════════════════════════════════════════════════════════════
   BC Game Crypto — Design System v2
   Variants: dual-bar header · card-stack hero · magazine-no inner hero
   · pavilion footer · window-frame cards · crypto strip · games carousel
   Palette: deep navy · neon teal · warm gold
   Type  : Unbounded (display) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
    --brand:        #13E8A4;
    --brand-dark:   #07B080;
    --brand-light:  #5EF2C2;
    --brand-glow:   rgba(19, 232, 164, 0.35);

    --accent:       #FFB020;
    --accent-warm:  #FF7A1A;
    --accent-soft:  #FFD36E;

    --purple:       #8B5BFF;
    --pink:         #FF4DA6;

    --bg:           #0A1020;
    --bg-card:      #121A2E;
    --bg-elevated:  #1A2543;
    --bg-panel:     #060B18;
    --bg-hero:      #05090F;

    --text:         #F0F4FA;
    --text-muted:   #9BA6BE;
    --text-dim:     #5E6B85;

    --border:       rgba(19, 232, 164, 0.14);
    --border-strong:rgba(19, 232, 164, 0.32);
    --border-gold:  rgba(255, 176, 32, 0.28);
    --border-soft:  rgba(240, 244, 250, 0.08);

    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Unbounded', 'DM Sans', sans-serif;
    --font-mono:    ui-monospace, 'SF Mono', Menlo, monospace;

    --r-sm: 6px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 34px;
    --r-pill: 999px;

    --shadow-card: 0 14px 50px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px var(--brand-glow);
    --shadow-gold: 0 8px 40px rgba(255, 176, 32, 0.25);

    --max-w: 1240px;
    --pad:   clamp(1rem, 3vw, 2rem);
    --utility-h: 2.25rem;  /* top slim bar */
    --main-h:    4rem;     /* main header bar */
    --header-h:  calc(var(--utility-h) + var(--main-h));
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    padding-top: var(--header-h);
    overflow-x: hidden;
    background-image:
        radial-gradient(1200px 600px at 85% -10%, rgba(19, 232, 164, 0.1), transparent 70%),
        radial-gradient(900px 500px at -10% 40%, rgba(139, 91, 255, 0.08), transparent 70%),
        radial-gradient(800px 400px at 50% 100%, rgba(255, 176, 32, 0.06), transparent 70%);
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brand-light); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-ghost, .btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--r-pill);
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #062318 !important;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 55px var(--brand-glow); color: #062318 !important; }
.btn-secondary {
    background: transparent;
    color: var(--accent-soft) !important;
    border: 1.5px solid var(--border-gold);
}
.btn-secondary:hover { background: rgba(255, 176, 32, 0.1); border-color: var(--accent); color: var(--accent-soft) !important; }
.btn-ghost {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); color: var(--text) !important; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }

/* Store buttons (Android / iOS) */
.btn-store {
    align-items: center;
    padding: 0.75rem 1.4rem;
    background: #0a0e1a;
    color: var(--text) !important;
    border: 1px solid var(--border-strong);
    gap: 0.7rem;
}
.btn-store:hover { background: #0d1426; border-color: var(--brand); transform: translateY(-2px); }
.btn-store .store-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    fill: var(--brand);
}
.btn-store small { display: block; font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; line-height: 1; }
.btn-store strong { display: block; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.2; margin-top: 1px; }

/* ═══ HEADER · Dual-bar cockpit ═══════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
}
.utility-bar {
    background: linear-gradient(90deg, var(--bg-panel), #0a0e1d 70%, var(--bg-panel));
    border-bottom: 1px solid var(--border);
    height: var(--utility-h);
    display: flex; align-items: center;
    font-size: 0.78rem;
}
.utility-bar .container { display: flex; align-items: center; gap: 1.5rem; width: 100%; }
.jackpot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}
.jackpot-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 10px var(--brand);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.3); }
}
.jackpot-label { color: var(--text-dim); }
.jackpot-value {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--brand);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}
.utility-chips {
    display: flex;
    gap: 1.25rem;
    margin-left: auto;
    align-items: center;
}
.utility-chip {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}
.utility-chip .chip-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}
.utility-chip.lang {
    font-family: var(--font-heading);
    color: var(--accent-soft);
    font-weight: 500;
}

.main-bar {
    background: rgba(6, 11, 24, 0.85);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--border-soft);
    height: var(--main-h);
    display: flex; align-items: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled .main-bar {
    background: rgba(6, 11, 24, 0.96);
    border-bottom-color: var(--border);
}
.main-bar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    width: 100%;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { height: 32px; width: auto; max-width: 150px; object-fit: contain; }

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    position: relative;
}
.nav a {
    position: relative;
    padding: 0.55rem 0.95rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--r-pill);
    transition: color 0.2s ease, background 0.2s ease;
}
.nav a:hover, .nav a.active { color: var(--text); background: rgba(19, 232, 164, 0.06); }
.nav .nav-sep {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.35;
    margin: 0 0.15rem;
    flex-shrink: 0;
}
.nav-indicator {
    position: absolute;
    bottom: 3px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    opacity: 0;
}
.nav-indicator.is-visible { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 0.7rem; }
.wallet-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.75rem 0.4rem 0.55rem;
    background: rgba(19, 232, 164, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-size: 0.82rem;
}
.wallet-chip .coin-bullet {
    width: 18px; height: 18px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #0a0e1a;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.65rem;
}
.wallet-chip .wallet-amount {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}
.header-cta { padding: 0.55rem 1.2rem; font-size: 0.88rem; }

.menu-toggle {
    display: none;
    width: 42px; height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
}
.menu-toggle span {
    display: block; width: 18px; height: 2px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-radius: 2px;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══ HOME HERO · Marquee-Stage ═══════════════════════════ */
.hero {
    position: relative;
    padding: clamp(2.5rem, 5vw, 4rem) 0 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(70% 55% at 50% 35%, rgba(19, 232, 164, 0.18), transparent 70%),
        radial-gradient(55% 55% at 12% 90%, rgba(139, 91, 255, 0.13), transparent 70%),
        radial-gradient(55% 55% at 88% 95%, rgba(255, 176, 32, 0.10), transparent 70%),
        linear-gradient(180deg, var(--bg-hero) 0%, var(--bg) 100%);
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(135deg, transparent 48%, rgba(255, 176, 32, 0.03) 49%, rgba(255, 176, 32, 0.03) 51%, transparent 52%);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* Floating crypto coins over stage */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hero-decor-coin {
    position: absolute;
    filter: drop-shadow(0 10px 30px rgba(19, 232, 164, 0.6));
}
.hero-decor-coin-1 { width: 68px;  top: 14%; left: 7%;   animation: floatA 6s ease-in-out infinite; }
.hero-decor-coin-2 { width: 54px;  top: 18%; right: 8%;  animation: floatB 7.5s ease-in-out infinite; }
.hero-decor-coin-3 { width: 46px;  top: 5%;  right: 32%; animation: floatA 8.5s ease-in-out infinite reverse; }
.hero-decor-coin-4 { width: 42px;  top: 30%; left: 22%;  animation: floatB 9s ease-in-out infinite reverse; }
@keyframes floatA {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50%      { transform: translateY(-14px) rotate(6deg); }
}
@keyframes floatB {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50%      { transform: translateY(-16px) rotate(-4deg); }
}

/* Centered typographic stage */
.hero-stage {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--pad);
    text-align: center;
    animation: fadeUp 0.8s ease;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.kicker {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 176, 32, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-pill);
}
.hero-stage h1 {
    font-weight: 600;
    font-size: clamp(2.5rem, 6.2vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    max-width: 14ch;
    margin-left: auto; margin-right: auto;
}
.hero-stage h1 em, .hero-stage h1 .gold {
    font-style: italic;
    color: var(--accent);
    position: relative;
}
.hero-stage h1 em::after {
    content: '';
    position: absolute;
    left: 4%; right: 4%; bottom: -0.05em;
    height: 0.14em;
    background: linear-gradient(90deg, transparent, var(--brand) 50%, transparent);
    border-radius: 2px;
}
.hero-stage .lead {
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 1.75rem;
}
.hero-stage .hero-actions {
    display: flex; gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.hero-stage .hero-chips {
    display: flex; gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-chip {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    background: rgba(240, 244, 250, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.hero-chip strong { color: var(--text); font-weight: 600; font-family: var(--font-heading); }

/* Dual-row auto-scrolling marquee at the bottom */
.hero-marquee {
    position: relative;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    padding: 0.5rem 0 clamp(2rem, 4vw, 3rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    z-index: 2;
}
.hero-marquee-row {
    display: flex;
    gap: 0.85rem;
    width: max-content;
    will-change: transform;
}
.hero-marquee-row--left  { animation: hero-marquee-left  55s linear infinite; }
.hero-marquee-row--right { animation: hero-marquee-right 70s linear infinite; }
@keyframes hero-marquee-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes hero-marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.hero-marquee:hover .hero-marquee-row { animation-play-state: paused; }

.hero-game {
    position: relative;
    width: clamp(128px, 12.5vw, 168px);
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    isolation: isolate;
}
.hero-marquee-row > .hero-game:nth-child(even) { transform: rotate(2deg); }
.hero-marquee-row > .hero-game:nth-child(5n)   { transform: rotate(-1deg) translateY(8px); }
.hero-game img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.hero-game::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(6, 11, 24, 0.6) 100%);
    pointer-events: none;
}
.hero-game:hover {
    transform: rotate(0) translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 55px rgba(19, 232, 164, 0.35);
    z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
    .hero-marquee-row { animation: none !important; }
    .hero-decor-coin { animation: none !important; }
}

/* ═══ CRYPTO STRIP ════════════════════════════════════════ */
.crypto-strip {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    position: relative;
}
.crypto-strip .crypto-head {
    text-align: center;
    margin-bottom: 1.75rem;
    max-width: 640px; margin-left: auto; margin-right: auto;
}
.crypto-strip .section-label { margin-bottom: 0.65rem; }
.crypto-strip h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.crypto-strip h2 em { font-style: italic; color: var(--accent); }
.crypto-strip p { color: var(--text-muted); font-size: 1rem; }

.crypto-track {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, var(--bg-card), rgba(18, 26, 46, 0.5));
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    position: relative;
}
.crypto-track::before, .crypto-track::after {
    content: '';
    position: absolute; top: 10%; bottom: 10%; width: 1px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}
.crypto-track::before { left: 0; }
.crypto-track::after { right: 0; }
.coin-tile {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: var(--r-md);
    background: rgba(10, 16, 32, 0.4);
    border: 1px solid rgba(240, 244, 250, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.coin-tile:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: rgba(19, 232, 164, 0.05);
}
.coin-tile img {
    width: 42px; height: 42px;
    filter: drop-shadow(0 4px 12px rgba(19, 232, 164, 0.3));
    transition: filter 0.25s ease, transform 0.25s ease;
}
.coin-tile:hover img { filter: drop-shadow(0 6px 20px rgba(19, 232, 164, 0.55)); transform: scale(1.08); }
.coin-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* ═══ GAMES CAROUSEL ══════════════════════════════════════ */
.games-section { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.games-section .games-head-top {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}
.games-row { margin-bottom: 2rem; }
.games-row:last-child { margin-bottom: 0; }
.games-row-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 var(--pad);
    margin: 0 auto 1rem;
    max-width: var(--max-w);
}
.games-row-head h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: var(--text);
    font-weight: 600;
}
.games-row-head .row-actions {
    display: flex; gap: 0.5rem; align-items: center;
}
.row-actions .chip-btn {
    padding: 0.35rem 0.85rem;
    background: rgba(19, 232, 164, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    color: var(--text);
    font-family: var(--font-heading); font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.row-actions .chip-btn:hover { background: rgba(19, 232, 164, 0.12); border-color: var(--brand); }
.row-actions .icon-btn {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--r-pill);
    background: rgba(240, 244, 250, 0.04);
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.row-actions .icon-btn:hover { color: var(--text); background: rgba(19, 232, 164, 0.08); border-color: var(--border); }

.games-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 1fr);
    gap: 0.75rem;
    padding: 0.4rem var(--pad) 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    max-width: var(--max-w);
    margin: 0 auto;
}
.games-track::-webkit-scrollbar { display: none; }
@media (min-width: 901px) {
    .games-track {
        grid-auto-columns: minmax(0, 1fr);
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-auto-flow: row;
        overflow: visible;
    }
}

.game-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-card);
    scroll-snap-align: start;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.game-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.game-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(6, 11, 24, 0.8) 100%);
    pointer-events: none;
}
.game-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(19, 232, 164, 0.25); }
.game-card:hover img { transform: scale(1.06); }
.game-card-label {
    position: absolute;
    bottom: 0.6rem; left: 0.6rem; right: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    z-index: 2;
    line-height: 1.1;
}
.game-card-players {
    position: absolute;
    right: 0.5rem; bottom: 2rem;
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.2rem 0.45rem;
    background: rgba(6, 11, 24, 0.75);
    border-radius: var(--r-pill);
    font-size: 0.65rem;
    color: var(--brand);
    font-family: var(--font-heading);
    font-variant-numeric: tabular-nums;
    z-index: 2;
}
.game-card-players::before {
    content: '●';
    color: var(--brand);
    animation: pulse 1.8s ease-in-out infinite;
}

/* ═══ SPONSOR BANNER (Leicester City) ═════════════════════ */
.sponsor-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.sponsor-card {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem);
    background:
        linear-gradient(120deg, rgba(0, 83, 160, 0.2) 0%, rgba(255, 176, 32, 0.08) 60%, rgba(19, 232, 164, 0.08) 100%),
        var(--bg-panel);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    isolation: isolate;
}
.sponsor-card::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%; width: 80%; height: 180%;
    background: radial-gradient(circle, rgba(19, 232, 164, 0.12), transparent 60%);
    pointer-events: none;
    z-index: -1;
}
.sponsor-text .kicker { background: rgba(19, 232, 164, 0.1); color: var(--brand); border-color: var(--border-strong); }
.sponsor-text h2 {
    font-size: clamp(1.75rem, 3.8vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.sponsor-text h2 em { font-style: italic; color: var(--accent); }
.sponsor-text p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 560px;
}
.sponsor-stats {
    display: flex; gap: 2rem; flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-gold);
    margin-top: 1rem;
}
.sponsor-stats .stat {
    min-width: 0;
}
.sponsor-stats .stat-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.sponsor-stats .stat-label { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }

.sponsor-media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    background: #0a0e1a;
}
.sponsor-media img { width: 100%; height: 100%; object-fit: cover; }
.sponsor-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 83, 160, 0.2));
}

/* ═══ APP DOWNLOAD SECTION ════════════════════════════════ */
.app-download {
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
}
.app-download-card {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem);
    background:
        radial-gradient(60% 80% at 80% 50%, rgba(19, 232, 164, 0.1), transparent 60%),
        linear-gradient(180deg, var(--bg-card), var(--bg-panel));
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    overflow: hidden;
    position: relative;
}
.app-download-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    z-index: 2;
}
.app-download-text .kicker { background: rgba(19, 232, 164, 0.1); color: var(--brand); border-color: var(--border-strong); }
.app-download-text h2 {
    font-size: clamp(1.75rem, 3.8vw, 2.75rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.app-download-text h2 em { font-style: italic; color: var(--accent); }
.app-download-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    max-width: 560px;
}
.app-download-text a.inline-link {
    color: var(--brand);
    text-decoration: underline;
    text-decoration-color: rgba(19, 232, 164, 0.4);
    text-underline-offset: 3px;
    font-weight: 600;
}
.app-download-text a.inline-link:hover { color: var(--brand-light); text-decoration-color: var(--brand); }
.app-download-buttons {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    margin-top: 1.5rem;
}
.app-download-media {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.app-download-media img {
    max-width: 100%;
    max-height: 420px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(19, 232, 164, 0.25));
}

/* ═══ PAGE HERO · Magazine no. ════════════════════════════ */
.page-hero {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(60% 60% at 80% 30%, rgba(19, 232, 164, 0.1), transparent 60%),
        radial-gradient(40% 50% at 10% 80%, rgba(255, 176, 32, 0.08), transparent 70%),
        linear-gradient(180deg, var(--bg-hero), var(--bg));
    border-bottom: 1px solid var(--border-soft);
}
.page-hero .page-hero-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}
.page-hero-glyph {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(5rem, 11vw, 9rem);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
    letter-spacing: -0.04em;
    position: relative;
    padding-right: 2rem;
    border-right: 1px solid var(--border-gold);
}
.page-hero-glyph small {
    display: block;
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    -webkit-text-stroke: 0;
    color: var(--accent);
    margin-top: 0.4rem;
    text-align: left;
    font-weight: 500;
}
.page-hero-body .breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}
.page-hero-body .breadcrumb a { color: var(--text-muted); }
.page-hero-body .breadcrumb a:hover { color: var(--brand); }
.page-hero-body .breadcrumb span { margin: 0 0.4rem; color: var(--text-dim); }
.page-hero-body h1 {
    margin-bottom: 1rem;
    max-width: 900px;
    font-size: clamp(2rem, 4.2vw, 3.3rem);
}
.page-hero-body .subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 720px;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}
.page-hero-thumb {
    width: clamp(180px, 24vw, 280px);
    aspect-ratio: 5 / 6;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
}
.page-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }

.page-hero-marquee {
    max-width: var(--max-w);
    margin: 1.75rem auto 0;
    padding: 0 var(--pad);
    display: flex;
    gap: 1.75rem;
    align-items: center;
    border-top: 1px solid var(--border-gold);
    padding-top: 1rem;
}
.page-hero-marquee .marquee-item {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.page-hero-marquee .marquee-item .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* ═══ Sections & content ═════════════════════════════════ */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; }
.home-section-head { margin-bottom: 2.5rem; max-width: 720px; }
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.section-heading { margin-bottom: 0.75rem; font-weight: 600; }
.section-heading em, .section-heading .gold { font-style: italic; color: var(--accent); }
.section-intro { color: var(--text-muted); font-size: 1.05rem; max-width: 680px; margin-bottom: 1.5rem; }

.intro-block { padding: 3rem 0 1rem; }
.intro-block .container { max-width: 860px; position: relative; }
.intro-block .container::before {
    content: '§';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.25;
    position: absolute;
    top: -2rem; left: 0;
    pointer-events: none;
}
.intro-block p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; }
.intro-block p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 3.2rem; font-weight: 600;
    color: var(--brand);
    float: left;
    line-height: 0.9;
    padding: 0.3rem 0.5rem 0 0;
}

/* ── Floor grid tiles (kept) ───────────────────────────── */
.floor-grid { display: grid; gap: 1.25rem; }
.floor-grid--cols-1 { grid-template-columns: 1fr; }
.floor-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.floor-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.floor-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.floor-tile {
    position: relative;
    padding: 1.75rem;
    background: linear-gradient(165deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border-soft);
    border-top: 2px solid var(--accent);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.floor-tile::before {
    content: attr(data-mono);
    position: absolute;
    right: -0.5rem; bottom: -2.2rem;
    font-family: var(--font-heading);
    font-weight: 700; font-style: italic;
    font-size: 9rem;
    color: var(--brand);
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
}
.floor-tile:hover { transform: translateY(-4px); border-top-color: var(--brand); }
.floor-tile-num { display: inline-block; font-family: var(--font-heading); font-size: 0.72rem; color: var(--accent-soft); letter-spacing: 0.2em; margin-bottom: 0.75rem; }
.floor-tile-title { margin-bottom: 0.85rem; font-size: 1.25rem; }
.floor-tile p, .floor-tile .tile-list li { color: var(--text-muted); margin-bottom: 0.45rem; font-size: 0.95rem; }
.floor-tile .tile-list { margin-top: 0.75rem; }
.floor-tile .tile-list li { padding-left: 1.2rem; position: relative; }
.floor-tile .tile-list li::before { content: '◆'; position: absolute; left: 0; color: var(--accent); font-size: 0.65rem; top: 0.35rem; }

/* ── Split-layout + feature-check-list ─────────────────── */
.split-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}
.split-layout--reverse { grid-template-columns: 1fr 1.05fr; }
.split-layout--reverse .split-media { order: 2; }
.split-media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--bg-card), var(--bg-panel));
}
.split-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(6, 11, 24, 0.4) 100%);
    pointer-events: none;
}
.split-media img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.split-media.split-media--card img { object-fit: contain; padding: 1.25rem; }
.split-media.split-media--photo img { object-fit: cover; padding: 0; }
.split-content .section-intro { margin-bottom: 1.25rem; }

.feature-check-list, .feature-check-list--plain .feature-check-list {
    padding: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 176, 32, 0.05), rgba(255, 176, 32, 0.01));
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--accent);
    border-radius: var(--r-md);
}
.feature-check-list li {
    display: flex; gap: 0.75rem;
    padding: 0.55rem 0;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.55;
    border-bottom: 1px dashed var(--border-gold);
}
.feature-check-list li:last-child { border-bottom: none; }
.feature-check-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #0a0e1a;
    font-weight: 800; font-size: 0.75rem;
    border-radius: 50%;
    margin-top: 0.05rem;
}

.feature-check-list--plain { max-width: 820px; margin: 0 auto; }
.feature-check-list--plain p { color: var(--text-muted); margin-bottom: 1rem; }

/* ── Plain editorial card (kept) ────────────────────────── */
.plain-section .plain-card {
    max-width: 820px; margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    text-align: center;
    position: relative;
}
.plain-section .plain-card p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1rem; line-height: 1.75; }
.plain-section .plain-card .tile-list { text-align: left; max-width: 560px; margin: 1.25rem auto; }
.plain-section .plain-card .tile-list li {
    color: var(--text);
    padding: 0.55rem 0 0.55rem 1.5rem;
    position: relative;
    border-bottom: 1px dashed var(--border-soft);
}
.plain-section .plain-card .tile-list li:last-child { border-bottom: none; }
.plain-section .plain-card .tile-list li::before { content: '◆'; position: absolute; left: 0; color: var(--brand); font-size: 0.7rem; top: 0.9rem; }

/* Image divider (kept) */
.image-divider {
    position: relative;
    padding: 0; margin: 1rem 0;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.image-divider img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.image-divider::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6, 11, 24, 0.55) 0%, rgba(255, 122, 26, 0.12) 100%);
}

/* ── Home-specific sections ────────────────────────────── */
.home-intro .intro-lede {
    max-width: 760px; margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.15rem; color: var(--text-muted);
}
.home-intro .intro-cta { text-align: center; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Bento: window-frame variant */
.home-floor .bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    grid-template-areas:
        'feat narrow1 narrow2'
        'feat narrow3 narrow4';
}
.home-floor .bento-grid .bento-feat { grid-area: feat; }
.home-floor .bento-grid .bento-n1 { grid-area: narrow1; }
.home-floor .bento-grid .bento-n2 { grid-area: narrow2; }
.home-floor .bento-grid .bento-n3 { grid-area: narrow3; }
.home-floor .bento-grid .bento-n4 { grid-area: narrow4; }

.bento-tile {
    position: relative;
    padding: 1.75rem;
    background: linear-gradient(165deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border-soft);
    border-top: 2px solid var(--accent);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.25s ease;
}
.bento-tile:hover { transform: translateY(-3px); border-top-color: var(--brand); }
.bento-tile[data-mono]::before {
    content: attr(data-mono);
    position: absolute;
    right: -0.3rem; bottom: -2rem;
    font-family: var(--font-heading);
    font-weight: 700; font-style: italic;
    font-size: 9rem;
    color: var(--brand);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}
.bento-tile h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.bento-tile p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }
.bento-feat {
    padding: 2.25rem;
    background: linear-gradient(135deg, rgba(19, 232, 164, 0.08), var(--bg-card));
}
.bento-feat h3 { font-size: 1.7rem; margin-bottom: 0.9rem; }
.bento-feat p { font-size: 1.02rem; }

/* Security grid (art-deco) */
.home-secure .security-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.security-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.security-card:hover { transform: translateY(-3px); }
.security-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 176, 32, 0.12) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}
.security-card:hover::after { transform: translateX(120%); }
.accred-corner {
    position: absolute; width: 18px; height: 18px;
    pointer-events: none;
    transition: all 0.3s ease;
}
.accred-corner--tl { top: 8px; left: 8px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.accred-corner--tr { top: 8px; right: 8px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.accred-corner--bl { bottom: 8px; left: 8px; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.accred-corner--br { bottom: 8px; right: 8px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.security-card:hover .accred-corner { width: 24px; height: 24px; }
.security-card .icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.9rem;
    display: block;
}
.security-card h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 0.5rem; }
.security-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* Rewards bento (kept) */
.home-rewards .rewards-bento {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.25rem;
    grid-template-areas:
        'welcome t1 t2'
        'welcome t3 t4'
        'vip      vip vip';
}
.rewards-welcome {
    grid-area: welcome;
    padding: 2.25rem;
    background: linear-gradient(135deg, rgba(255, 176, 32, 0.12), rgba(19, 232, 164, 0.08));
    border: 1px solid var(--border-gold);
    border-radius: var(--r-lg);
    display: flex; flex-direction: column; gap: 1rem;
}
.rewards-welcome .welcome-kicker { color: var(--accent); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-heading); }
.rewards-welcome h3 { font-size: 1.7rem; }
.rewards-welcome p { color: var(--text-muted); }
.rewards-tile {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-top: 2px solid var(--brand);
    border-radius: 2px;
}
.rewards-tile h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 0.4rem; }
.rewards-tile p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.rewards-t1 { grid-area: t1; }
.rewards-t2 { grid-area: t2; }
.rewards-t3 { grid-area: t3; }
.rewards-t4 { grid-area: t4; }
.rewards-vip {
    grid-area: vip;
    padding: 2rem;
    background: linear-gradient(90deg, var(--bg-panel) 0%, rgba(255, 176, 32, 0.08) 100%);
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--accent);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    flex-wrap: wrap;
}
.rewards-vip h4 { font-size: 1.25rem; }
.rewards-vip p { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.35rem; }

/* Support card */
.home-support .support-card {
    position: relative;
    max-width: 820px; margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border-gold);
    border-radius: var(--r-lg);
    text-align: center;
    overflow: hidden;
}
.home-support .support-card::before {
    content: '24/7';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700; font-style: italic;
    font-size: clamp(7rem, 18vw, 14rem);
    color: var(--accent);
    opacity: 0.05;
    pointer-events: none;
    letter-spacing: -0.05em;
}
.home-support .support-card > * { position: relative; z-index: 1; }
.home-support .support-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.home-support .support-card p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 0.9rem; }

/* ═══ FOOTER · Pavilion ═══════════════════════════════════ */
.site-footer {
    margin-top: 5rem;
    background: var(--bg-panel);
    position: relative;
    padding-top: 3rem;
}
.footer-pavilion {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.footer-wordmark {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, var(--text) 0%, rgba(19, 232, 164, 0.4) 70%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: 2.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-pedestal .footer-logo img {
    height: 36px; width: auto; max-width: 160px;
    margin-bottom: 1rem;
    object-fit: contain;
}
.footer-pedestal p {
    color: var(--text-muted);
    font-size: 0.9rem; line-height: 1.7;
    max-width: 320px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.55rem;
}
.footer-col h4::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--brand); }
.footer-vip {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 176, 32, 0.1), transparent);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-md);
    align-self: start;
}
.footer-vip .kicker { margin-bottom: 0.5rem; }
.footer-vip h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); letter-spacing: 0; text-transform: none; }
.footer-vip h4::before { display: none; }
.footer-vip p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.55; }
.footer-vip a { color: var(--accent) !important; font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 0.35rem; }

.footer-marquee {
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 2rem;
    overflow: hidden;
}
.footer-marquee-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-marquee-coin {
    display: inline-flex; align-items: center; gap: 0.55rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-family: var(--font-heading);
}
.footer-marquee-coin img {
    height: 28px; width: auto;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-marquee-coin:hover img { opacity: 1; transform: translateY(-2px); }

.footer-accreditations {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.accred-badge {
    position: relative;
    padding: 1.25rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    text-align: center;
    overflow: hidden;
}
.accred-badge .accred-icon { font-size: 1.5rem; margin-bottom: 0.4rem; display: block; color: var(--accent); font-family: var(--font-heading); font-weight: 700; }
.accred-badge strong { font-family: var(--font-heading); font-size: 0.88rem; color: var(--text); display: block; margin-bottom: 0.25rem; }
.accred-badge small { color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.08em; }

.footer-bottom {
    position: relative;
    padding: 1.75rem 0;
    text-align: center;
    border-top: 1px solid var(--border-gold);
}
.footer-bottom::before {
    content: '◆';
    position: absolute;
    top: -0.6rem; left: 50%;
    transform: translateX(-50%);
    background: var(--bg-panel);
    padding: 0 0.75rem;
    color: var(--accent);
    font-size: 0.75rem;
}
.footer-bottom p {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    font-variant-caps: small-caps;
}
.footer-bottom .disclaimer {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0;
}

/* ── 404 page ──────────────────────────────────────────── */
.err-404 {
    min-height: 80vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 4rem var(--pad);
}
.err-404 .big {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 22vw, 16rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}
.err-404 p { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 520px; }

/* ── Blog listing ──────────────────────────────────────── */
.blog-listing { padding-bottom: 5rem; }
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.blog-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-hero); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-card-body .kicker { margin-bottom: 0; align-self: flex-start; }
.blog-card-body h2 a, .blog-card-body h3 a { color: var(--text); }
.blog-card-body h2 a:hover, .blog-card-body h3 a:hover { color: var(--brand); }
.blog-card-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; flex: 1; }
.blog-read { font-size: 0.8rem; color: var(--accent); font-family: var(--font-heading); letter-spacing: 0.08em; }

.blog-card--featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    margin-bottom: 2rem;
}
.blog-card--featured .blog-card-media { aspect-ratio: auto; height: 100%; min-height: 320px; }
.blog-card--featured .blog-card-body { padding: 2.25rem; gap: 1rem; }
.blog-card--featured h2 { font-size: 1.75rem; }

.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }

/* ═══ Responsive ═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .jackpot .jackpot-label { display: none; }
    .utility-chips .utility-chip:not(.lang) { display: none; }
}
@media (max-width: 900px) {
    :root { --main-h: 3.5rem; }
    .main-bar .container { grid-template-columns: auto 1fr auto; gap: 0.75rem; }
    .nav, .header-cta, .wallet-chip { display: none; }
    .menu-toggle { display: flex; }
    .nav.is-open {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(5, 9, 15, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        z-index: 99;
        padding: 4rem var(--pad);
    }
    .nav.is-open a { font-size: 1.5rem; color: var(--text); font-family: var(--font-heading); }
    .nav.is-open .nav-indicator, .nav.is-open .nav-sep { display: none; }
    .hero-decor-coin-3, .hero-decor-coin-4 { display: none; }
    .hero-decor-coin-1 { width: 48px; top: 4%; left: 4%; }
    .hero-decor-coin-2 { width: 40px; top: 6%; right: 4%; }
    .hero-game { width: clamp(120px, 28vw, 150px); }
    .crypto-track { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .coin-tile:nth-child(n+7) { display: none; }
    .sponsor-card, .app-download-card { grid-template-columns: 1fr; }
    .app-download-media img { max-height: 280px; }
    .split-layout, .split-layout--reverse { grid-template-columns: 1fr; }
    .split-layout--reverse .split-media { order: -1; }
    .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-floor .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'feat feat'
            'narrow1 narrow2'
            'narrow3 narrow4';
    }
    .home-rewards .rewards-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'welcome welcome'
            't1 t2'
            't3 t4'
            'vip vip';
    }
    .home-secure .security-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-vip { grid-column: 1 / -1; }
    .footer-pedestal { grid-column: 1 / -1; }
    .footer-accreditations { grid-template-columns: repeat(2, 1fr); }
    .blog-card--featured { grid-template-columns: 1fr; }
    .blog-card--featured .blog-card-media { min-height: 220px; }
    .blog-grid { grid-template-columns: 1fr; }

    .page-hero .page-hero-grid { grid-template-columns: auto 1fr; }
    .page-hero-thumb { display: none; }
    .page-hero-glyph { font-size: clamp(3.5rem, 10vw, 6rem); padding-right: 1.25rem; }
}
@media (max-width: 560px) {
    .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: 1fr; }
    .home-floor .bento-grid, .home-rewards .rewards-bento {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }
    .home-floor .bento-grid > *, .home-rewards .rewards-bento > * { grid-area: auto !important; }
    .home-secure .security-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-accreditations { grid-template-columns: 1fr; }
    .crypto-track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .coin-tile:nth-child(n+5) { display: none; }
    .sponsor-stats { gap: 1rem; }
    .page-hero .page-hero-grid { grid-template-columns: 1fr; gap: 1rem; }
    .page-hero-glyph { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border-gold); padding-bottom: 0.5rem; }
    .hero-game { width: clamp(110px, 36vw, 140px); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
