/* ============================================
   VAVADA CASINO - Cinematic Heist Noir
   Design tokens, typography, layout, components
   ============================================ */

:root {
    /* Single theme: tokens mirror .dark for true single-theme site */
    --background: #0f0b1e;
    --background-2: #160f27;
    --foreground: #f0eae0;
    --card: #1f1530;
    --card-2: #2a1f3d;
    --card-foreground: #f0eae0;
    --primary: #6366f1;
    --primary-foreground: #000000;
    --secondary: #2a1f3d;
    --secondary-foreground: #f0eae0;
    --muted: #2a2438;
    --muted-foreground: #c4b8d8;
    --accent: #d4af37;
    --accent-2: #f5d76e;
    --accent-foreground: #0f0b1e;
    --neon-cyan: #22d3ee;
    --neon-magenta: #e879f9;
    --gold: #d4af37;
    --gold-bright: #f5d76e;
    --destructive: #f43f5e;
    --border: #3a2f4d;
    --ring: #22d3ee;
    --gradient-gold: linear-gradient(135deg, #f5d76e 0%, #d4af37 45%, #b8860b 100%);
    --gradient-neon: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #e879f9 100%);
    --gradient-vault: linear-gradient(180deg, #1f1530 0%, #0f0b1e 100%);
}

/* Dark theme is the canonical Vavada look */
.dark {
    --background: #0f0b1e;
    --background-2: #160f27;
    --foreground: #f0eae0;
    --card: #1f1530;
    --card-2: #2a1f3d;
    --card-foreground: #f0eae0;
    --primary: #6366f1;
    --primary-foreground: #000000;
    --secondary: #2a1f3d;
    --secondary-foreground: #f0eae0;
    --muted: #2a2438;
    --muted-foreground: #c4b8d8;
    --accent: #d4af37;
    --accent-2: #f5d76e;
    --accent-foreground: #0f0b1e;
    --neon-cyan: #22d3ee;
    --neon-magenta: #e879f9;
    --gold: #d4af37;
    --gold-bright: #f5d76e;
    --destructive: #f43f5e;
    --border: #3a2f4d;
    --ring: #22d3ee;

    --gradient-gold: linear-gradient(135deg, #f5d76e 0%, #d4af37 45%, #b8860b 100%);
    --gradient-neon: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #e879f9 100%);
    --gradient-vault: linear-gradient(180deg, #1f1530 0%, #0f0b1e 100%);
}

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

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

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(232, 121, 249, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
section { overflow: clip; }

a { color: var(--neon-cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--gold); color: var(--accent-foreground);
    padding: 12px 20px; z-index: 9999; font-weight: 700;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ============================================
   TYPOGRAPHY - Cinzel Decorative + Manrope
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .6em;
    color: var(--foreground);
    letter-spacing: .02em;
}

h1 {
    font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: .03em;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

h2 {
    font-size: clamp(1.8rem, 3vw + 1rem, 3.25rem);
    text-transform: uppercase;
}

h3 { font-size: clamp(1.3rem, 1.5vw + .8rem, 2.1rem); }
h4 { font-size: clamp(1.1rem, 1vw + .8rem, 1.5rem); font-family: 'Manrope', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

p { margin: 0 0 1.2em; }

.lead { font-size: clamp(1.1rem, .5vw + 1rem, 1.35rem); color: var(--muted-foreground); }

.eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

section.section,
.section-pad {
    padding: 64px 0;
}
@media (min-width: 768px) { section.section, .section-pad { padding: 100px 0; } }
@media (min-width: 1024px) { section.section, .section-pad { padding: 140px 0; } }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head p { color: var(--muted-foreground); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 14px 28px;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-neon {
    background: var(--gradient-gold);
    color: #0f0b1e;
    box-shadow: 0 0 0 1px var(--gold), 0 6px 20px rgba(212, 175, 55, 0.35);
}
.btn-neon::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    opacity: 0;
    transition: opacity .3s;
}
.btn-neon span, .btn-neon { z-index: 1; }
.btn-neon:hover { color: #fff; box-shadow: 0 0 0 1px var(--neon-cyan), 0 8px 28px rgba(34, 211, 238, 0.5); transform: translateY(-2px); }
.btn-neon:hover::before { opacity: 1; }
.btn-neon > * { position: relative; z-index: 2; }

.btn-neon-sm {
    min-height: 38px;
    padding: 8px 18px;
    font-size: .8rem;
    border-radius: 3px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.btn-neon-sm:hover { background: var(--gold); color: #0f0b1e; box-shadow: 0 0 18px rgba(212, 175, 55, 0.5); }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}
.btn-ghost:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

.btn-large { min-height: 56px; padding: 18px 40px; font-size: 1.1rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 11, 30, 0.85);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 769px) {
    .site-header { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: .2em;
    color: var(--foreground);
    flex-shrink: 0;
}
.brand-mark { display: inline-flex; filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.4)); }
.brand-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.primary-nav { display: none; }

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile drawer */
@media (max-width: 768px) {
    .primary-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        background-image:
            radial-gradient(ellipse at top, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
        z-index: 999;
        padding: 32px 24px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1);
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .primary-nav.is-open { transform: translateX(0); display: flex; }
    .nav-list {
        list-style: none;
        padding: 0; margin: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 12px 18px;
        font-family: 'Cinzel Decorative', serif;
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: var(--foreground);
        border-bottom: 1px solid var(--border);
    }
    .nav-link:hover { color: var(--gold); }
    .nav-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
}

@media (min-width: 769px) {
    .mobile-menu-toggle { display: none; }
    .primary-nav {
        display: flex;
        align-items: center;
        gap: 36px;
    }
    .nav-list {
        list-style: none;
        padding: 0; margin: 0;
        display: flex;
        gap: 32px;
        align-items: center;
    }
    .nav-link {
        font-family: 'Manrope', sans-serif;
        font-weight: 600;
        font-size: .95rem;
        text-transform: uppercase;
        letter-spacing: .14em;
        color: var(--foreground);
        position: relative;
        padding: 8px 0;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        left: 0; bottom: 0;
        width: 0; height: 2px;
        background: var(--gradient-gold);
        transition: width .3s;
    }
    .nav-link:hover { color: var(--gold); }
    .nav-link:hover::after { width: 100%; }
    .nav-cta { display: flex; gap: 12px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 60px 0 80px;
    overflow: clip;
    background: var(--gradient-vault);
}
@media (min-width: 1024px) { .hero { padding: 100px 0 140px; } }

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(15, 11, 30, 0.5) 50%, rgba(15, 11, 30, 0.95) 100%),
        linear-gradient(180deg, rgba(15, 11, 30, 0.4) 0%, rgba(15, 11, 30, 0.85) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 { margin-bottom: 24px; }
.hero-sub {
    font-size: clamp(1.05rem, .8vw + 1rem, 1.4rem);
    color: var(--foreground);
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    font-size: .85rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
}
.hero-trust span::before { content: '◆ '; color: var(--gold); }

/* ============================================
   GAME CARD
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}
@media (min-width: 640px) { .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }
@media (min-width: 1280px) { .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.game-card-media {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2a1f3d, #1f1530);
    overflow: hidden;
}
.game-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.game-card:hover .game-card-media img { transform: scale(1.06); }
.game-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 11, 30, 0.7) 100%);
    pointer-events: none;
}
.game-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gradient-gold);
    color: #0f0b1e;
    font-size: .7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .1em;
    z-index: 2;
}
.game-card-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel Decorative', serif;
    font-size: 4rem;
    color: var(--gold);
    background: radial-gradient(circle, #2a1f3d 0%, #0f0b1e 100%);
}

.game-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.game-card-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.15rem;
    margin: 0;
    color: var(--foreground);
    letter-spacing: .02em;
}
.game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}
.game-rtp { color: var(--neon-cyan); font-weight: 700; }
.game-card-body .btn-neon-sm { align-self: flex-start; margin-top: auto; }

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; } }

.bonus-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.bonus-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.bonus-card::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.25);
}
.bonus-card-featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, var(--card-2), var(--card));
    box-shadow: 0 0 0 1px var(--gold), 0 12px 40px rgba(212, 175, 55, 0.2);
}
.bonus-dial { margin-bottom: 16px; position: relative; z-index: 1; animation: dial-spin 24s linear infinite; }
@keyframes dial-spin { to { transform: rotate(360deg); } }

.bonus-card-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.2rem;
    margin: 0 0 8px;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: .1em;
    position: relative; z-index: 1;
}
.bonus-card-value {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
    font-weight: 900;
    line-height: 1;
    margin: 8px 0 14px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative; z-index: 1;
}
.bonus-card-desc {
    color: var(--card-foreground);
    margin: 0 0 8px;
    position: relative; z-index: 1;
}
.bonus-card-terms {
    font-size: .8rem;
    color: var(--muted-foreground);
    margin: 0 0 20px;
    position: relative; z-index: 1;
}
.bonus-card .btn-neon { position: relative; z-index: 1; width: 100%; max-width: 240px; }

/* ============================================
   PAYMENT CARD
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 640px) { .payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .payment-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }

.payment-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 18px;
    text-align: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.payment-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.2);
}
.payment-card-crypto .payment-logo {
    box-shadow: 0 0 0 2px var(--neon-cyan), 0 0 18px rgba(34, 211, 238, 0.4);
}

.payment-logo {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a1f3d, #1f1530);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}
.payment-symbol {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: .05em;
}

.payment-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    margin: 0;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.payment-meta {
    margin: 0;
    font-size: .85rem;
    color: var(--muted-foreground);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.payment-meta div { display: flex; flex-direction: column; gap: 2px; }
.payment-meta dt { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-foreground); }
.payment-meta dd { margin: 0; color: var(--foreground); font-weight: 600; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    transition: border-left-color .25s;
    border-left: 3px solid transparent;
    padding-left: 4px;
}
.faq-item[open] {
    border-left-color: var(--primary);
    background: rgba(99, 102, 241, 0.04);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 16px;
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.05rem, .5vw + 1rem, 1.35rem);
    font-weight: 700;
    color: var(--foreground);
    text-transform: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    transition: transform .25s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-flex;
}
.faq-item[open] .faq-icon { transform: rotate(30deg); }
.faq-answer {
    padding: 0 16px 24px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}
.faq-answer p { margin: 0 0 .8em; }
.faq-answer p:last-child { margin: 0; }
.faq-answer a { color: var(--neon-cyan); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(76, 29, 149, 0.7) 0%, rgba(15, 11, 30, 0.95) 70%),
        var(--background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) { .cta-banner { padding: 140px 40px; } }

.cta-banner-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-vault {
    position: absolute;
    width: 320px; height: 320px;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}
.cta-coin {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0.4;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}
.cta-coin-1 { top: 15%; left: 10%; animation: float 6s ease-in-out infinite; }
.cta-coin-2 { bottom: 20%; right: 12%; width: 40px; height: 40px; animation: float 7s ease-in-out infinite -2s; }
.cta-coin-3 { top: 60%; left: 18%; width: 28px; height: 28px; animation: float 5s ease-in-out infinite -1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.cta-banner-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.cta-headline {
    font-size: clamp(2rem, 4vw + 1rem, 3.6rem);
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.cta-subtext { font-size: 1.15rem; color: var(--foreground); margin-bottom: 32px; }
.cta-micro { margin-top: 18px; font-size: .85rem; color: var(--muted-foreground); letter-spacing: .1em; text-transform: uppercase; }

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-row {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    position: relative;
}
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
    .stat-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 56px 40px;
    }
    .stat-row .stat-item:not(:last-child) {
        border-right: 1px solid rgba(34, 211, 238, 0.25);
    }
}
.stat-item {
    text-align: center;
    position: relative;
    padding: 8px 16px;
}
.stat-dial {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.5;
}
.stat-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.6rem, 4vw + 1rem, 4rem);
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.stat-label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--muted-foreground);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.tldr-box {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.35), rgba(34, 211, 238, 0.08));
    border: 1px solid var(--neon-cyan);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 24px 28px;
    margin: 32px 0;
}
.tldr-box h3 {
    font-family: 'Manrope', sans-serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold);
    margin: 0 0 12px;
}
.tldr-box p:last-child { margin: 0; }

/* Callout box */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 6px;
    padding: 20px 24px;
    margin: 24px 0;
}
.callout-warn { border-left-color: var(--destructive); }
.callout-gold { border-left-color: var(--gold); }
.callout strong { color: var(--gold); }

/* Pull quote */
.pull-quote {
    font-family: 'Manrope', sans-serif;
    font-style: italic;
    font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
    line-height: 1.4;
    border-left: 4px solid var(--neon-magenta);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    color: var(--foreground);
}
.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: .9rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: .15em;
}

/* Stat highlight inline */
.stat-highlight {
    display: inline-block;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 4px;
}

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 16px 0;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid var(--border);
    font-size: .8rem;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.badge-age {
    background: rgba(244, 63, 94, 0.15);
    border-color: var(--destructive);
    color: var(--destructive);
}

/* Comparison table */
.table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 8px;
    border: 1px solid var(--border);
    min-width: 0;
    max-width: 100%;
}
table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
    min-width: 480px;
}
.data-table th,
.data-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table thead {
    background: linear-gradient(180deg, var(--card-2), var(--card));
}
.data-table th {
    font-family: 'Cinzel Decorative', serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}
.data-table tbody tr:hover { background: rgba(99, 102, 241, 0.06); }
.data-table .col-recommended { background: rgba(212, 175, 55, 0.08); }

/* Process / steps */
.steps-list {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 20px;
}
.steps-list li {
    counter-increment: step;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 24px 22px 70px;
    position: relative;
}
.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    background: var(--gradient-gold);
    color: #0f0b1e;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steps-list h3,
.steps-list h4 { margin: 0 0 6px; color: var(--foreground); font-size: 1.05rem; font-family: 'Manrope', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.steps-list p { margin: 0; color: var(--muted-foreground); font-size: .95rem; }

/* SEO content blocks */
.prose {
    max-width: 880px;
    margin: 0 auto;
}
.prose p, .prose li {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--foreground);
}
.prose h2, .prose h3 { margin-top: 1.8em; }
.prose a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    text-underline-offset: 3px;
}
.prose a:hover { color: var(--gold-bright); }

/* Ensure inline links inside paragraphs/callouts are visually distinguishable */
.steps-list p a,
.callout p a,
.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.5);
    text-underline-offset: 3px;
}
.steps-list p a:hover,
.callout p a:hover,
.faq-answer a:hover {
    color: var(--gold-bright);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--background-2) 0%, #0a0716 100%);
    border-top: 1px solid var(--border);
    padding: 60px 20px 24px;
    margin-top: 60px;
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 48px; } }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    letter-spacing: .15em;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-tagline {
    color: var(--muted-foreground);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-col h3,
.footer-col h4 {
    font-family: 'Cinzel Decorative', serif;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold);
    margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: var(--foreground);
    font-size: .95rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-linklike {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--foreground);
    font-size: .95rem;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}
.footer-linklike:hover { color: var(--gold); }

.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.pay-pill {
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--card);
    font-size: .75rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: .1em;
}

.footer-bottom {
    max-width: 1240px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: .85rem;
    text-align: center;
}
.footer-bottom p { margin: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(0.2, 0.8, 0.2, 1), transform .7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cyan { color: var(--neon-cyan); }
.text-muted { color: var(--muted-foreground); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

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

/* ============================================
   GAME FILTER BAR (spiele.html)
   ============================================ */
.game-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}
.filter-chip {
    padding: 10px 22px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-height: 44px;
}
.filter-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.filter-chip.is-active {
    background: var(--gradient-gold);
    border-color: var(--gold);
    color: #0f0b1e;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

/* ============================================
   PROVIDER GRID (spiele.html)
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}
@media (min-width: 640px) { .provider-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }

.provider-tile {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 22px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.provider-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}
.provider-tile:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}
.provider-tile:hover::before { transform: scaleX(1); }
.provider-tile h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.provider-tile p {
    margin: 0;
    font-size: .92rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Category filter - hide non-matching cards */
.game-card.is-hidden {
    display: none;
}