/* ============================================
   SLOTMAFIA CASINO - Cinematic Noir Design System
   1930s Chicago noir · venetian blinds · golden spotlights
   ============================================ */

/* --------------------------------------------
   RESET & BASE
   -------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    /* Subtle film-grain noir backdrop */
    background-image:
        radial-gradient(ellipse at top, rgba(230,192,104,0.04), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(138,26,26,0.05), transparent 70%);
    background-attachment: fixed;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

[class*="grid"] > *,
[class*="flex"] > * { min-width: 0; }

pre, code { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; min-width: 0; }
.table-wrapper:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; box-sizing: border-box; }
section { overflow: clip; }

a { color: var(--gold); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--gold-bright); }

/* --------------------------------------------
   TYPOGRAPHY - Newspaper headlines + typewriter accents
   -------------------------------------------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--bone);
    margin: 0 0 var(--space-md);
    text-transform: uppercase;
}
h1 { font-size: clamp(30px, 5vw + 10px, 44px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.5vw + 8px, 34px); font-weight: 800; }
h3 { font-size: clamp(20px, 2vw + 8px, 24px); font-weight: 700; text-transform: none; }
h4 { font-size: 18px; text-transform: uppercase; letter-spacing: 0.05em; }

p { margin: 0 0 var(--space-md); }

.kicker {
    display: inline-block;
    font-family: var(--font-typewriter);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}
.section-title.centered { text-align: center; }

blockquote, .pull-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(20px, 2vw + 10px, 28px);
    line-height: 1.4;
    color: var(--bone);
    border-left: 3px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    background: linear-gradient(90deg, rgba(230,192,104,0.06), transparent);
    position: relative;
}
blockquote::before, .pull-quote::before {
    content: "“";
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    margin-right: var(--space-sm);
    vertical-align: -10px;
}
blockquote cite, .pull-quote cite {
    display: block;
    font-style: normal;
    font-family: var(--font-typewriter);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--gold); color: var(--noir);
    padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* --------------------------------------------
   LAYOUT - Container & sections
   -------------------------------------------- */
.container, .header-inner, .footer-inner {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

@media (min-width: 768px) {
    .container, .header-inner, .footer-inner {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

section.section, main > section {
    padding: var(--space-2xl) 0;
}
@media (min-width: 1024px) {
    section.section, main > section { padding: var(--space-3xl) 0; }
}

main { padding-top: var(--header-h); }

/* Venetian blind shadow utility */
.venetian-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        180deg,
        rgba(0,0,0,0.35) 0 6px,
        transparent 6px 18px
    );
    mix-blend-mode: multiply;
    opacity: 0.55;
    animation: venetianDrift 12s linear infinite;
}
@keyframes venetianDrift {
    0% { background-position: 0 0; }
    100% { background-position: 0 36px; }
}

/* Golden spotlight utility */
.spotlight-bg {
    position: relative;
}
.spotlight-bg::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(230,192,104,0.20), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.spotlight-bg > * { position: relative; z-index: 1; }

/* --------------------------------------------
   HEADER - Fixed noir bar
   -------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(10,9,8,0.96);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}
.site-header::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.6;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--bone);
    text-decoration: none;
    flex-shrink: 0;
}
.brand .logo {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--noir);
    object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.brand-sub {
    font-family: var(--font-typewriter);
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--muted-foreground);
    margin-top: 2px;
}

/* Desktop nav */
.main-nav { display: none; }
.nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: var(--space-lg);
}
.nav-list a {
    color: var(--bone);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 4px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.nav-list a::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t-base) var(--ease);
}
.nav-list a:hover { color: var(--gold); }
.nav-list a:hover::after { transform: scaleX(1); }

.nav-cta {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--space-xl);
        flex: 1;
        justify-content: flex-end;
    }
}

/* Mobile burger */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--gold);
    transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* Mobile drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--noir);
        border-top: 1px solid var(--gold-deep);
        z-index: 999;
        padding: var(--space-xl) var(--space-lg);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-lg);
        display: none;
    }
    .main-nav.is-open {
        display: flex;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-list li {
        border-bottom: 1px solid var(--border);
    }
    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-size: 17px;
        padding: var(--space-md) 0;
    }
    .nav-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }
    .nav-cta .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------
   BUTTONS - Gold spotlight + ghost noir
   -------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    min-height: 48px;
    transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-fast) var(--ease);
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
    color: var(--noir);
    box-shadow: 0 4px 18px rgba(230,192,104,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,192,104,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
    color: var(--noir);
}
.btn-ghost {
    background: transparent;
    color: var(--bone);
    border-color: var(--gold);
}
.btn-ghost:hover {
    background: rgba(230,192,104,0.1);
    color: var(--gold);
}
.btn-large { padding: 18px 36px; font-size: 16px; min-height: 56px; }
.btn-block { width: 100%; }
.btn-pulse {
    animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(230,192,104,0.35), inset 0 1px 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 4px 32px rgba(230,192,104,0.7), 0 0 0 4px rgba(230,192,104,0.15), inset 0 1px 0 rgba(255,255,255,0.5); }
}

/* Sticky bottom CTA on mobile */
.sticky-cta-wrap {
    position: fixed;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    z-index: 998;
    pointer-events: none;
}
.sticky-cta {
    display: block;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
    color: var(--noir);
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
    box-shadow: 0 6px 24px rgba(230,192,104,0.4), 0 0 0 1px rgba(0,0,0,0.2);
    animation: goldPulse 3s ease-in-out infinite;
    pointer-events: auto;
    text-decoration: none;
}
.sticky-cta:hover { color: var(--noir); }
@media (min-width: 1024px) {
    .sticky-cta-wrap { display: none; }
}

/* --------------------------------------------
   CARDS - Cigar-box game cards & bonus cards
   -------------------------------------------- */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: var(--space-lg);
    min-width: 0;
}

/* Game card */
.game-card {
    background: var(--noir-card);
    border: 1px solid var(--gold-deep);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
    position: relative;
    min-width: 0;
    box-shadow: inset 0 0 0 1px rgba(230,192,104,0.15);
}
.game-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--gold);
}
.game-card-media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--noir);
}
.game-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}
.game-card:hover .game-card-media img { transform: scale(1.06); }
.game-overlay-cta {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(230,192,104,0.25), rgba(0,0,0,0.6) 70%);
    opacity: 0;
    transition: opacity var(--t-base) var(--ease);
    z-index: 2;
}
.game-card:hover .game-overlay-cta,
.game-card:focus-within .game-overlay-cta { opacity: 1; }
.game-overlay-btn {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
    color: var(--noir);
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 6px;
    letter-spacing: 0.06em;
    font-size: 14px;
    box-shadow: 0 0 24px rgba(230,192,104,0.6);
}
.game-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--oxblood);
    color: var(--bone);
    font-family: var(--font-typewriter);
    font-size: 11px;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    text-transform: uppercase;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.15);
}
.game-card-body {
    padding: var(--space-md);
    text-align: center;
}
.game-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 4px;
    color: var(--bone);
}
.game-provider {
    font-family: var(--font-typewriter);
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0;
    letter-spacing: 0.1em;
}

/* Game grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
    .game-card-body { padding: var(--space-lg); }
    .game-title { font-size: 18px; }
}
@media (min-width: 1024px) {
    .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Bonus card */
.bonus-card {
    position: relative;
    background: var(--noir-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: var(--space-lg);
    overflow: hidden;
    min-width: 0;
    box-shadow: inset 0 0 0 1px rgba(230,192,104,0.1);
}
.bonus-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(230,192,104,0.12), transparent 60%);
    pointer-events: none;
}
.bonus-card-inner { position: relative; }
.bonus-ribbon {
    position: absolute;
    top: 12px; left: -36px;
    background: var(--oxblood);
    color: var(--bone);
    font-family: var(--font-typewriter);
    font-size: 12px;
    letter-spacing: 0.18em;
    padding: 4px 40px;
    transform: rotate(-35deg);
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 2;
}
.bonus-kicker {
    font-family: var(--font-typewriter);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin: 0 0 6px;
}
.bonus-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(28px, 4vw + 6px, 40px);
    color: var(--gold);
    line-height: 1.05;
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.01em;
}
.bonus-desc {
    color: var(--bone);
    font-size: 15px;
    margin: 0 0 var(--space-md);
}
.bonus-code-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
    flex-wrap: wrap;
}
.bonus-code-label {
    font-family: var(--font-typewriter);
    font-size: 12px;
    color: var(--muted-foreground);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.bonus-code-pill {
    font-family: var(--font-typewriter);
    font-size: 14px;
    color: var(--gold);
    border: 1px dashed var(--gold);
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.15em;
    background: rgba(230,192,104,0.06);
}
.bonus-terms {
    list-style: none;
    margin: 0 0 var(--space-md);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 6px;
    font-size: 13px;
}
.bonus-terms li {
    display: flex;
    justify-content: space-between;
    color: var(--muted-foreground);
    font-family: var(--font-typewriter);
    letter-spacing: 0.06em;
}
.bonus-terms li strong {
    color: var(--bone);
    font-weight: 600;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.bonus-card-wide { grid-column: 1 / -1; }

/* --------------------------------------------
   PAYMENT / PROVIDER LOGO STRIP
   -------------------------------------------- */
.logo-strip {
    padding: var(--space-2xl) 0;
}
@media (min-width: 1024px) { .logo-strip { padding: var(--space-3xl) 0; } }

.logo-strip-band {
    position: relative;
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
    padding: var(--space-lg) 0;
    background: var(--noir-card);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.logo-strip-band:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}
.logo-strip-band::-webkit-scrollbar { display: none; }

.logo-strip-track {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 0 var(--space-lg);
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    justify-content: center;
}
.logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    color: var(--bone);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    border-radius: 4px;
    opacity: 0.85;
    background: var(--noir);
    flex-shrink: 0;
    transition: opacity var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.logo-chip:hover { opacity: 1; border-color: var(--gold); }

/* --------------------------------------------
   FAQ ACCORDION
   -------------------------------------------- */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid var(--gold-deep);
    transition: background var(--t-fast) var(--ease);
    position: relative;
}
.faq-item[open] {
    background: linear-gradient(90deg, rgba(230,192,104,0.05), transparent);
}
.faq-item[open]::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
}
.faq-question {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
    cursor: pointer;
    list-style: none;
    color: var(--bone);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    color: var(--gold);
    font-size: 22px;
    font-weight: 700;
    transition: transform var(--t-base) var(--ease);
    flex-shrink: 0;
    font-family: var(--font-body);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 var(--space-md) var(--space-lg) var(--space-lg);
    color: var(--bone);
    font-size: 16px;
    line-height: 1.65;
}
.faq-answer p { margin: 0; }
@media (min-width: 768px) {
    .faq-question { font-size: 20px; }
    .faq-answer { font-size: 17px; }
}

/* --------------------------------------------
   CTA BANNER - Spotlight projector
   -------------------------------------------- */
.cta-banner {
    position: relative;
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    background: var(--noir);
    overflow: hidden;
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
}
.cta-banner::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(230,192,104,0.22), transparent 65%);
    pointer-events: none;
}
.cta-banner::after {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(180deg, rgba(0,0,0,0.4) 0 8px, transparent 8px 22px);
    mix-blend-mode: multiply;
    opacity: 0.35;
    pointer-events: none;
    animation: venetianDrift 14s linear infinite;
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.cta-banner-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(26px, 4vw + 8px, 42px);
    text-transform: uppercase;
    color: var(--bone);
    margin: 0 0 var(--space-md);
    line-height: 1.1;
}
.cta-banner-sub {
    color: var(--muted-foreground);
    font-size: 17px;
    margin: 0 0 var(--space-lg);
}
.cta-banner-fineprint {
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--muted-foreground);
    font-family: var(--font-typewriter);
    letter-spacing: 0.08em;
}
@media (min-width: 1024px) {
    .cta-banner { padding: var(--space-3xl) var(--space-lg); }
}

/* --------------------------------------------
   STAT HIGHLIGHT
   -------------------------------------------- */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}
@media (min-width: 600px) {
    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-xl); }
}
.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--noir-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    border-top: 2px solid var(--gold);
}
.stat-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(30px, 4vw + 6px, 44px);
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 20px rgba(230,192,104,0.3);
}
.stat-label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--bone);
    margin-bottom: 6px;
}
.stat-source {
    font-family: var(--font-typewriter);
    font-size: 12px;
    color: var(--muted-foreground);
    letter-spacing: 0.1em;
}

/* --------------------------------------------
   ENGAGEMENT PATTERNS - Callouts, summaries, tables
   -------------------------------------------- */
.tldr-box,
.summary-box {
    background: linear-gradient(180deg, rgba(230,192,104,0.08), rgba(230,192,104,0.02));
    border: 1px solid var(--gold-deep);
    border-left: 4px solid var(--gold);
    padding: var(--space-lg);
    border-radius: 6px;
    margin: var(--space-xl) 0;
}
.tldr-box-title {
    font-family: var(--font-typewriter);
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.callout {
    background: var(--noir-card);
    border-left: 3px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: 4px;
    color: var(--bone);
}
.callout a {
    text-decoration: underline;
    text-decoration-color: rgba(230,192,104,0.6);
    text-underline-offset: 3px;
    font-weight: 600;
}
.callout a:hover {
    text-decoration-color: var(--gold);
}
.callout-warning { border-left-color: var(--oxblood); }
.callout-tip { border-left-color: var(--gold); }

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--gold-deep);
    border-radius: 4px;
    font-family: var(--font-typewriter);
    font-size: 12px;
    color: var(--bone);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(230,192,104,0.05);
}
.age-badge {
    background: var(--oxblood);
    border-color: var(--oxblood);
    color: var(--bone);
}

/* Comparison table */
.comparison-table,
table.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    background: var(--noir-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.comparison-table th,
table.data-table th {
    background: var(--secondary);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 14px;
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--gold-deep);
}
.comparison-table td,
table.data-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    color: var(--bone);
    font-size: 15px;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .col-recommended {
    background: rgba(230,192,104,0.08);
    color: var(--gold);
    font-weight: 600;
}

/* Hero generic */
.hero {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
    background: var(--noir);
}
@media (min-width: 1024px) {
    .hero { padding: var(--space-3xl) 0; }
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-3xl); }
}
.hero-eyebrow {
    font-family: var(--font-typewriter);
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(32px, 5vw + 12px, 56px);
    line-height: 1.05;
    color: var(--bone);
    text-transform: uppercase;
    margin: var(--space-md) 0 var(--space-lg);
}
.hero-title .hl { color: var(--gold); }
.hero-sub {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    max-width: 560px;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}
.hero-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-deep);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
    aspect-ratio: 4/5;
}
.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Two-column block */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 1024px) {
    .two-col { grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
}
.two-col-media {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gold-deep);
}

/* --------------------------------------------
   SEO TEXT BLOCK
   -------------------------------------------- */
.seo-text {
    max-width: 880px;
    margin: 0 auto;
    color: var(--bone);
    font-size: 17px;
    line-height: 1.75;
    padding: 0 var(--space-md);
}
.seo-text h2, .seo-text h3 { color: var(--bone); margin-top: var(--space-xl); }
.seo-text a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(230,192,104,0.4); text-underline-offset: 3px; }
.seo-text a:hover { text-decoration-color: var(--gold); color: var(--gold-bright); }
.seo-text ul, .seo-text ol { padding-left: 24px; margin-bottom: var(--space-md); }
.seo-text li { margin-bottom: 6px; }

/* --------------------------------------------
   FOOTER
   -------------------------------------------- */
.site-footer {
    background: #050504;
    border-top: 1px solid var(--gold-deep);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.6;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}
@media (min-width: 600px) {
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-2xl); }
}
.footer-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.footer-links {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.footer-links a {
    color: var(--bone);
    font-size: 15px;
    text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-tag {
    color: var(--muted-foreground);
    font-size: 14px;
    margin: var(--space-sm) 0 0;
    line-height: 1.5;
}
.footer-tag.small { font-size: 12px; margin-top: var(--space-md); }
.footer-payments {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-lg);
}
.footer-payments-label {
    display: block;
    font-family: var(--font-typewriter);
    font-size: 12px;
    color: var(--muted-foreground);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}
.footer-payments-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pay-chip {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--bone);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--noir-card);
}
.footer-bottom {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 13px;
}
.footer-bottom .copyright {
    color: var(--bone);
    font-family: var(--font-display);
    margin-bottom: 4px;
}
.footer-bottom .legal {
    font-family: var(--font-typewriter);
    letter-spacing: 0.04em;
    margin: 0;
}

/* Bottom padding to clear sticky CTA on mobile */
@media (max-width: 1023.98px) {
    body { padding-bottom: 88px; }
}

/* --------------------------------------------
   ANIMATIONS - Reveal on scroll
   -------------------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn-pulse, .venetian-overlay, .cta-banner::after, .sticky-cta { animation: none !important; }
    html { scroll-behavior: auto; }
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Utility */
.text-gold { color: var(--gold); }
.text-bone { color: var(--bone); }
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* Section helpers */
.section-noir { background: var(--noir); }
.section-card { background: var(--noir-card); }
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-deep) 50%, transparent);
    margin: var(--space-2xl) 0;
}

/* --------------------------------------------
   VIP TIMELINE (vip.html)
   -------------------------------------------- */
.vip-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    position: relative;
}
@media (min-width: 600px) {
    .vip-timeline { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
}
@media (min-width: 1024px) {
    .vip-timeline { grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
}
.vip-milestone {
    position: relative;
    background: var(--noir-card);
    border: 1px solid var(--gold-deep);
    border-radius: 10px;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    overflow: hidden;
    min-width: 0;
    box-shadow: inset 0 0 0 1px rgba(230,192,104,0.1);
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.vip-milestone::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(230,192,104,0.10), transparent 60%);
    pointer-events: none;
}
.vip-milestone:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--gold);
}
.vip-milestone-dot {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 16px rgba(230,192,104,0.6), inset 0 0 0 2px var(--noir);
}
.vip-milestone-label {
    display: inline-block;
    font-family: var(--font-typewriter);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--muted-foreground);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    position: relative;
}
.vip-milestone h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--bone);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 var(--space-sm);
    position: relative;
}
.vip-milestone-prize {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    color: var(--gold);
    margin: 0 0 var(--space-sm);
    line-height: 1.2;
    position: relative;
    text-shadow: 0 0 16px rgba(230,192,104,0.3);
}
.vip-milestone-meta {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
    position: relative;
}
.vip-milestone.is-highlight {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(230,192,104,0.10), var(--noir-card) 60%);
}
.vip-milestone.is-final {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(230,192,104,0.18), var(--noir-card) 70%);
    box-shadow: inset 0 0 0 1px var(--gold), 0 12px 32px rgba(230,192,104,0.15);
}
.vip-milestone.is-final .vip-milestone-dot {
    background: var(--gold-bright);
    box-shadow: 0 0 24px rgba(245,212,134,0.8), inset 0 0 0 2px var(--noir);
}

/* --------------------------------------------
   HOMEPAGE - Hero, welcome grid, vip teaser, etc.
   -------------------------------------------- */
.home-hero {
    position: relative;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(230,192,104,0.10), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(138,26,26,0.10), transparent 60%),
        var(--noir);
    padding: var(--space-2xl) 0 var(--space-3xl);
    overflow: hidden;
}
.home-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(180deg, rgba(0,0,0,0.45) 0 9px, transparent 9px 24px);
    mix-blend-mode: multiply;
    opacity: 0.3;
    pointer-events: none;
    animation: venetianDrift 18s linear infinite;
    z-index: 0;
}
.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}
@media (min-width: 1024px) {
    .home-hero-inner { grid-template-columns: 1.1fr 1fr; gap: var(--space-3xl); }
    .home-hero { padding: var(--space-3xl) 0; }
}
.home-hero-copy .hero-title {
    margin: var(--space-md) 0 var(--space-lg);
    font-size: clamp(34px, 6vw + 8px, 60px);
    line-height: 1.02;
    text-transform: uppercase;
}
.home-hero-copy .hero-title .hl {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(230,192,104,0.4);
}
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0 var(--space-xl);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
}
.hero-stats-row > div { text-align: center; min-width: 0; }
.hero-stats-row strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(20px, 3vw + 4px, 28px);
    color: var(--gold);
    line-height: 1;
}
.hero-stats-row span {
    display: block;
    font-family: var(--font-typewriter);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--muted-foreground);
    text-transform: uppercase;
    margin-top: 6px;
}
@media (min-width: 768px) {
    .hero-stats-row strong { font-size: 32px; }
    .hero-stats-row span { font-size: 12px; }
}
.hero-fineprint {
    margin-top: var(--space-md);
    font-family: var(--font-typewriter);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

.home-hero-visual {
    position: relative;
    display: grid;
    grid-template-rows: 1fr;
    gap: var(--space-md);
}
.hero-don-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-deep);
    box-shadow: 0 24px 60px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(230,192,104,0.15);
    aspect-ratio: 4/5;
    background: var(--noir);
}
.hero-don-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-don-frame .venetian-overlay { opacity: 0.4; }

.hero-roulette-wrap {
    position: absolute;
    bottom: -24px;
    right: -16px;
    width: clamp(140px, 32vw, 220px);
    aspect-ratio: 1;
    background: radial-gradient(circle at 35% 35%, rgba(230,192,104,0.18), rgba(0,0,0,0.85) 70%);
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(230,192,104,0.35);
    overflow: hidden;
}
.hero-roulette-canvas {
    width: 100%; height: 100%;
    display: block;
}
.hero-roulette-label {
    position: absolute;
    bottom: 6px; left: 0; right: 0;
    text-align: center;
    font-family: var(--font-typewriter);
    font-size: 9px;
    letter-spacing: 0.16em;
    color: var(--gold);
    text-transform: uppercase;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}
@media (min-width: 768px) {
    .hero-roulette-wrap { width: 240px; bottom: -32px; right: -32px; }
    .hero-roulette-label { font-size: 11px; }
}
@media (min-width: 1024px) {
    .hero-roulette-wrap { width: 280px; }
}

/* Trust bar */
.trust-bar {
    background: var(--noir-card);
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
    padding: var(--space-lg) 0;
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}
@media (min-width: 600px) { .trust-bar-inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trust-bar-inner { grid-template-columns: repeat(5, 1fr); } }
.trust-item { text-align: center; min-width: 0; }
.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
}
.trust-item span {
    display: block;
    font-family: var(--font-typewriter);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 6px;
}

/* Section heading helper */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-2xl);
}
.section-head .kicker { display: block; }
.section-head .section-title { margin-bottom: var(--space-md); }
.section-lede {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
}
.section-lede a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(230,192,104,0.4); }
.kicker.centered-block { display: block; text-align: center; margin-bottom: var(--space-sm); }

.section-cta-row {
    text-align: center;
    margin-top: var(--space-xl);
}
.welcome-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
}

/* Welcome package grid */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 600px) { .welcome-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); } }
@media (min-width: 1024px) { .welcome-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); } }
.welcome-step {
    position: relative;
    background: var(--noir-card);
    border: 1px solid var(--gold-deep);
    border-radius: 10px;
    padding: var(--space-lg);
    text-align: center;
    overflow: hidden;
    min-width: 0;
}
.welcome-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(230,192,104,0.12), transparent 60%);
    pointer-events: none;
}
.welcome-step-num {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 20px rgba(230,192,104,0.4);
    position: relative;
}
.welcome-step h3 {
    font-size: 16px;
    margin: 0 0 var(--space-md);
    color: var(--bone);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-typewriter);
    font-weight: 400;
    position: relative;
}
.welcome-step-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    color: var(--gold);
    margin: 0 0 4px;
    position: relative;
}
.welcome-step-extra {
    color: var(--bone);
    font-size: 14px;
    margin: 0 0 var(--space-md);
    position: relative;
}
.welcome-step-meta {
    font-family: var(--font-typewriter);
    font-size: 12px;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    margin: 0;
    position: relative;
}
.code-pill {
    display: inline-block;
    padding: 2px 8px;
    border: 1px dashed var(--gold);
    border-radius: 999px;
    color: var(--gold);
    font-family: var(--font-typewriter);
    font-size: 11px;
    letter-spacing: 0.12em;
    margin: 0 2px;
}

/* VIP teaser */
.vip-teaser {
    position: relative;
    background:
        radial-gradient(ellipse at right, rgba(230,192,104,0.10), transparent 55%),
        var(--noir);
    overflow: hidden;
}
.vip-teaser > .venetian-overlay { opacity: 0.25; }
.vip-teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .vip-teaser-grid { grid-template-columns: 1fr 1.1fr; gap: var(--space-3xl); }
}
.vip-teaser-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold);
    box-shadow: 0 24px 60px rgba(0,0,0,0.7);
    aspect-ratio: 4/5;
}
.vip-teaser-media img { width: 100%; height: 100%; object-fit: cover; }
.vip-perks {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
    display: grid;
    gap: var(--space-sm);
}
.vip-perks li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--bone);
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(230,192,104,0.15);
}
.vip-bullet {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

/* Live grid */
.live-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 600px) { .live-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); } }
@media (min-width: 1024px) { .live-grid { grid-template-columns: repeat(4, 1fr); } }
.live-card {
    background: var(--noir-card);
    border: 1px solid var(--gold-deep);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
    min-width: 0;
}
.live-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--gold);
}
.live-card img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.live-card-body { padding: var(--space-md); }
.live-card-body h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--bone);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.live-card-body p {
    margin: 0;
    font-family: var(--font-typewriter);
    font-size: 12px;
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
}

/* Nav tiles */
.nav-tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 600px) { .nav-tiles { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); } }
@media (min-width: 1024px) { .nav-tiles { grid-template-columns: repeat(3, 1fr); } }
.nav-tile {
    position: relative;
    display: block;
    background: var(--noir-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: var(--space-lg);
    text-decoration: none;
    color: var(--bone);
    overflow: hidden;
    transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
    min-height: 130px;
}
.nav-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(230,192,104,0.12), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--t-base) var(--ease);
}
.nav-tile:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    color: var(--bone);
}
.nav-tile:hover::before { opacity: 1; }
.nav-tile h3 {
    margin: 0 0 var(--space-sm);
    font-size: 22px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
}
.nav-tile p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}
.nav-tile-arrow {
    position: absolute;
    top: var(--space-md); right: var(--space-md);
    color: var(--gold);
    font-size: 22px;
    font-family: var(--font-display);
    transition: transform var(--t-base) var(--ease);
}
.nav-tile:hover .nav-tile-arrow { transform: translateX(4px); }

/* Slots page - category filter chips */
.category-row {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: var(--space-sm) 4px var(--space-md);
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 calc(var(--space-md) * -1) 0;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}
.category-row::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
    .category-row {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
}
.cat-chip {
    flex-shrink: 0;
    background: var(--noir-card);
    border: 1px solid var(--gold-deep);
    color: var(--bone);
    font-family: var(--font-typewriter);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
    min-height: 44px;
}
.cat-chip:hover {
    background: rgba(230,192,104,0.1);
    color: var(--gold);
}
.cat-chip.is-active {
    background: var(--gold);
    color: var(--noir);
    border-color: var(--gold);
}

.grid-empty {
    text-align: center;
    color: var(--muted-foreground);
    font-family: var(--font-typewriter);
    padding: var(--space-xl) var(--space-md);
    font-size: 15px;
    letter-spacing: 0.04em;
}
.grid-empty a { color: var(--gold); text-decoration: underline; }

#slots-grid > div { display: contents; }
#slots-grid > div.is-hidden { display: none; }

/* --------------------------------------------
   CAPO STUB - Loader/redirect placeholder
   -------------------------------------------- */
.capo-stub {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-md);
    background:
        radial-gradient(ellipse at center, rgba(230,192,104,0.10), transparent 60%),
        var(--noir);
    overflow: hidden;
}
.capo-stub-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 520px;
    width: 100%;
}
.capo-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    margin: var(--space-lg) auto;
    opacity: 0.7;
}
.capo-don {
    width: clamp(180px, 60vw, 260px);
    aspect-ratio: 4/5;
    margin: var(--space-lg) auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-deep);
    box-shadow: 0 16px 40px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(230,192,104,0.2);
    background: var(--noir-card);
}
.capo-don img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.capo-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(28px, 5vw + 8px, 42px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--bone);
    margin: var(--space-md) 0 var(--space-sm);
}
.capo-loader {
    font-family: var(--font-typewriter);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}
.capo-dots {
    display: inline-flex;
    gap: 2px;
    margin-left: 4px;
}
.capo-dots span {
    display: inline-block;
    color: var(--gold);
    animation: capoDot 1.4s ease-in-out infinite;
}
.capo-dots span:nth-child(2) { animation-delay: 0.2s; }
.capo-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes capoDot {
    0%, 80%, 100% { opacity: 0.2; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {
    .capo-dots span { animation: none; opacity: 1; }
}

/* Jackpot banner */
.jackpot-banner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--noir-card), #0d0c0a);
    border: 1px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(230,192,104,0.2);
}
@media (min-width: 768px) {
    .jackpot-banner { grid-template-columns: 1.4fr 1fr; }
}
.jackpot-banner-copy {
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .jackpot-banner-copy { padding: var(--space-2xl); }
}
.jackpot-banner-media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-top: 1px solid var(--gold-deep);
}
@media (min-width: 768px) {
    .jackpot-banner-media {
        aspect-ratio: auto;
        border-top: none;
        border-left: 1px solid var(--gold-deep);
    }
}
.jackpot-banner-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.jackpot-tickers {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin: var(--space-lg) 0 var(--space-xl);
}
@media (min-width: 600px) {
    .jackpot-tickers { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}
.ticker {
    background: var(--noir);
    border: 1px solid var(--gold-deep);
    border-radius: 8px;
    padding: var(--space-md);
    text-align: center;
}
.ticker-label {
    display: block;
    font-family: var(--font-typewriter);
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--muted-foreground);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.ticker-value {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(22px, 3vw + 4px, 30px);
    color: var(--gold);
    text-shadow: 0 0 20px rgba(230,192,104,0.4);
    letter-spacing: -0.01em;
}

/* Inline anchor list (cross-page nav) */
.inline-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}
.inline-link-list a {
    display: inline-flex;
    padding: 8px 14px;
    background: var(--noir-card);
    border: 1px solid var(--gold-deep);
    border-radius: 999px;
    color: var(--bone);
    font-size: 14px;
    text-decoration: none;
    font-family: var(--font-typewriter);
    letter-spacing: 0.06em;
}
.inline-link-list a:hover {
    background: rgba(230,192,104,0.1);
    color: var(--gold);
    border-color: var(--gold);
}