/* ============================================
   CRAZYBUZZER CASINO - ROYAL GLASSMORPHISM
   Single dark theme, mobile-first, GSAP-ready
   ============================================ */

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

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

body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 199, 0, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 30%, rgba(255, 199, 0, 0.08), transparent 60%),
        radial-gradient(ellipse 60% 40% at 0% 70%, rgba(232, 37, 58, 0.06), transparent 60%),
        var(--background);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

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; }
pre code { display: block; min-width: 0; }

p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }

section { overflow: clip; position: relative; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: #fff5b8; }

/* Prose links inside body copy must be distinguishable without color alone */
.lead a,
.seo-text p a,
.faq-answer a,
.responsible a,
.tldr a {
    text-decoration: underline;
    text-decoration-color: rgba(255, 199, 0, 0.6);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.lead a:hover,
.seo-text p a:hover,
.faq-answer a:hover,
.responsible a:hover,
.tldr a:hover {
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
}

::selection { background: var(--primary); color: var(--primary-foreground); }

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: #0a0a0a;
    padding: 8px 16px;
    z-index: 9999;
    font-weight: 700;
    text-decoration: none;
    -webkit-text-fill-color: #0a0a0a;
}
.skip-link:focus { top: 0; }
.skip-link:hover { color: #0a0a0a; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.6em;
    color: var(--foreground);
    letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw + 0.25rem, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw + 0.5rem, 2rem); }
h4 { font-size: clamp(1.1rem, 1vw + 0.75rem, 1.4rem); }

.gold-text,
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 18px rgba(255, 199, 0, 0.35));
}

.eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 199, 0, 0.08);
}

p { margin: 0 0 1.25rem; color: var(--muted-foreground); }
p strong { color: var(--foreground); }

.lead {
    font-size: clamp(1.05rem, 1vw + 0.85rem, 1.25rem);
    color: var(--foreground);
    max-width: 60ch;
}

blockquote {
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--foreground);
    background: rgba(255, 199, 0, 0.05);
    border-radius: 0 12px 12px 0;
}
blockquote cite { display: block; margin-top: 0.5rem; font-size: 0.9rem; font-style: normal; color: var(--muted-foreground); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 1rem;
}
@media (min-width: 768px) {
    .container { padding-inline: 2rem; }
}

.section {
    padding-block: clamp(4rem, 8vw, 7.5rem);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0 1.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background 300ms;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    box-shadow: 0 8px 24px rgba(255, 199, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(255, 199, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: var(--primary-foreground);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    background: rgba(255, 199, 0, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-xl {
    min-height: 56px;
    padding: 0 2.25rem;
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .btn-xl { min-height: 64px; padding: 0 3rem; font-size: 1.15rem; }
}

.btn-pulse {
    position: relative;
    animation: royalPulse 3s ease-in-out infinite;
}

@keyframes royalPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(255, 199, 0, 0.35), 0 0 0 0 rgba(255, 199, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 12px 36px rgba(255, 199, 0, 0.55), 0 0 0 16px rgba(255, 199, 0, 0), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
}

@media (prefers-reduced-motion: reduce) {
    .btn-pulse { animation: none; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   BUZZER SEAL - Round red B-stamp
   ============================================ */
.buzzer-seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff5263, #e8253a 50%, #a51424 100%);
    color: #fff;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    font-size: 1.25rem;
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 199, 0, 0.3), 0 0 24px rgba(232, 37, 58, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}
.buzzer-seal-lg { width: 64px; height: 64px; font-size: 1.75rem; border-width: 3px; }

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass {
    background: rgba(20, 20, 20, 0.55);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px -20px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}
.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.6), transparent 40%, transparent 60%, rgba(255, 199, 0, 0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}
@media (min-width: 1024px) {
    .site-header {
        background: rgba(10, 10, 10, 0.65);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

.header-inner {
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media (min-width: 768px) { .header-inner { padding: 0 2rem; } }

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
}
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff5263, #e8253a 50%, #a51424 100%);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(255, 199, 0, 0.4);
    flex-shrink: 0;
}
.buzzer-stamp {
    color: #fff;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    margin-top: 3px;
}

/* Desktop nav */
.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}
.nav-link {
    position: relative;
    color: var(--foreground);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 200ms;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 250ms;
    transform: translateX(-50%);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta { display: flex; gap: 0.75rem; }

@media (min-width: 1024px) {
    .main-nav { display: flex; }
}

/* Mobile menu toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 300ms, opacity 200ms;
}
.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 nav drawer */
@media (max-width: 1023px) {
    .main-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        background-image:
            radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 199, 0, 0.12), transparent 70%),
            var(--background);
        padding: 2rem 1.5rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        gap: 1.5rem;
        align-items: stretch;
        border-top: 1px solid var(--border);
    }
    .main-nav.is-open { transform: translateX(0); }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-list li {
        border-bottom: 1px solid var(--border);
    }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 0 0.5rem;
        font-family: 'Cinzel Decorative', serif;
        font-size: 1.25rem;
        width: 100%;
    }
    .nav-link::after { display: none; }
    .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: auto;
        padding-top: 2rem;
    }
    .nav-cta .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), #050505);
    border-top: 1px solid var(--border);
    padding-block: 4rem 1.5rem;
    margin-top: 4rem;
}
.footer-glow {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gold-gradient);
    filter: blur(2px);
    box-shadow: var(--gold-glow);
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) { .footer-inner { padding: 0 2rem; } }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); }
}

.footer-tagline { font-size: 0.95rem; color: var(--muted-foreground); margin-top: 1rem; }

.footer-heading {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin: 0 0 1.25rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--muted-foreground); font-size: 0.95rem; transition: color 200ms; }
.footer-links a:hover { color: var(--primary); }

.payment-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pay-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 199, 0, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

.license-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.license-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(255, 199, 0, 0.05);
}
.age-badge {
    background: #c4172a;
    color: #fff;
    border-color: #c4172a;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    font-size: 0.9rem;
}
.responsible { font-size: 0.82rem; color: var(--muted-foreground); margin: 0; line-height: 1.5; }
.responsible a { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted-foreground); margin: 0; }

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

.game-card {
    display: flex;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: var(--foreground);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms, border-color 350ms;
    position: relative;
}
.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px -15px rgba(255, 199, 0, 0.45), var(--gold-glow);
    color: var(--primary);
}
.game-card-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0a0a0a;
}
.game-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms;
}
.game-card:hover .game-card-cover img { transform: scale(1.08); }
.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 199, 0, 0.4);
}
.game-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 199, 0, 0.92);
    color: #0a0a0a;
    border-radius: 50%;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
    transform: scale(0.7);
    box-shadow: 0 0 32px rgba(255, 199, 0, 0.6);
}
.game-card:hover .game-play { opacity: 1; transform: scale(1); }

.game-card-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.game-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    margin: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.game-provider {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.bonus-card {
    position: relative;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 1.75rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 24px 60px -25px rgba(0, 0, 0, 0.7);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 400ms;
}
.bonus-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 30px 80px -20px rgba(255, 199, 0, 0.4);
}
.bonus-card.is-highlight {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 199, 0, 0.08), rgba(15, 15, 15, 0.7));
    box-shadow: 0 24px 60px -20px rgba(255, 199, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.bonus-ornament {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 199, 0, 0.15), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(255, 199, 0, 0.12), transparent 40%);
    pointer-events: none;
}
.bonus-mascot {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 8px 24px rgba(255, 199, 0, 0.4));
}
.bonus-amount {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.75rem, 8vw, 3.75rem);
    font-weight: 900;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px rgba(255, 199, 0, 0.5));
    margin-bottom: 0.75rem;
}
.bonus-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary);
    margin-bottom: 1rem;
}
.bonus-desc {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin-bottom: 1.75rem;
    min-height: 3em;
}
.bonus-cta { width: 100%; }
.bonus-card .buzzer-seal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    transition: background 250ms;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] {
    background: linear-gradient(90deg, rgba(255, 199, 0, 0.08), transparent 60%);
    box-shadow: inset 4px 0 0 var(--primary);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
@media (min-width: 768px) {
    .faq-question { padding: 1.75rem 2rem; }
}
.faq-q-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}
.faq-toggle {
    flex-shrink: 0;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 199, 0, 0.12);
    border: 1px solid var(--primary);
    transition: transform 300ms;
}
.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary);
    transition: transform 300ms;
}
.faq-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}
@media (min-width: 768px) {
    .faq-answer { padding: 0 2rem 2rem; }
}
.faq-answer p { margin: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding-block: clamp(4rem, 8vw, 7.5rem);
    margin-top: 2rem;
}
.cta-glow {
    position: absolute;
    top: 50%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.35), transparent 70%);
    transform: translateY(-50%);
    filter: blur(40px);
    pointer-events: none;
}
.cta-glow-left { left: -120px; }
.cta-glow-right { right: -120px; background: radial-gradient(circle, rgba(232, 37, 58, 0.3), transparent 70%); }

.cta-panel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid var(--border-strong);
    border-radius: 32px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
    overflow: hidden;
}
@media (min-width: 768px) {
    .cta-panel { padding: 4rem 3rem; }
}

.cta-mascot {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 12px 36px rgba(255, 199, 0, 0.5));
}
@media (min-width: 768px) {
    .cta-mascot { width: 220px; height: 220px; }
}

.cta-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 32px rgba(255, 199, 0, 0.4));
}
.cta-subtitle {
    font-size: 1.05rem;
    color: var(--foreground);
    margin: 0 auto 2rem;
    max-width: 56ch;
}
.cta-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .stat-highlight { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}

.stat-tile {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.75rem 1rem;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    transition: transform 300ms, box-shadow 300ms;
}
@media (min-width: 768px) { .stat-tile { padding: 2.25rem 1.25rem; } }
.stat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(255, 199, 0, 0.4);
}

.stat-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 900;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 199, 0, 0.5));
    margin-bottom: 0.75rem;
}
.stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-foreground);
}

/* ============================================
   PROVIDER LOGO ROW
   ============================================ */
.provider-row { width: 100%; }
.provider-row-title {
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.provider-row-panel {
    background: rgba(15, 15, 15, 0.55);
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem 1rem;
    box-shadow: 0 -8px 32px -16px rgba(255, 199, 0, 0.4) inset, 0 16px 40px -16px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) { .provider-row-panel { padding: 1.75rem 2rem; } }
.provider-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 768px) {
    .provider-list { gap: 1.5rem 3rem; flex-wrap: nowrap; }
}
.provider-item { display: inline-flex; }
.provider-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.4rem);
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    transition: color 300ms, text-shadow 300ms, transform 300ms;
    white-space: nowrap;
}
.provider-item:hover .provider-logo {
    color: var(--primary);
    text-shadow: 0 0 18px rgba(255, 199, 0, 0.6);
    transform: scale(1.05);
}

/* ============================================
   HERO SECTIONS (page-shared)
   ============================================ */
.hero {
    position: relative;
    padding-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
    overflow: clip;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero { min-height: auto; }
}
.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.35), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 3rem; }
}
.hero-content { text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }
.hero-title { margin-bottom: 1rem; }
.hero-subtitle {
    font-size: clamp(1.05rem, 1vw + 0.85rem, 1.25rem);
    color: var(--foreground);
    margin-bottom: 2rem;
    max-width: 56ch;
}
@media (max-width: 1023px) { .hero-subtitle { margin-inline: auto; } }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust span::before { content: '✦'; color: var(--primary); }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-visual img {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 30px 80px rgba(255, 199, 0, 0.4));
    position: relative;
    z-index: 2;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.25), transparent 60%);
    filter: blur(40px);
    z-index: 1;
}

/* ============================================
   INTERNAL LINK TILES
   ============================================ */
.link-tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) { .link-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .link-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.75rem; } }
.link-tiles.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .link-tiles.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.link-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--foreground);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 300ms, border-color 300ms, box-shadow 300ms;
    overflow: hidden;
    min-height: 220px;
}
.link-tile:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 24px 60px -20px rgba(255, 199, 0, 0.4);
    color: var(--foreground);
}
.link-tile-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(255, 199, 0, 0.4));
}
.link-tile-emoji {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.link-tile-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.link-tile-desc {
    font-size: 0.92rem;
    color: var(--muted-foreground);
    margin: 0 0 1.25rem;
    flex: 1;
}
.link-tile-cta {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.link-tile-cta::after { content: '→'; transition: transform 250ms; }
.link-tile:hover .link-tile-cta::after { transform: translateX(4px); }

/* ============================================
   SEO TEXT BLOCK
   ============================================ */
.seo-text {
    max-width: 820px;
    margin: 0 auto;
}
.seo-text h2 { text-align: center; margin-bottom: 2rem; }
.seo-text p { font-size: 1.02rem; line-height: 1.75; }
.seo-text h3 { margin-top: 2rem; color: var(--primary); }

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.table-wrapper:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}
.data-table th, .data-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table th {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(255, 199, 0, 0.05);
    font-weight: 700;
}
.data-table td { color: var(--foreground); font-size: 0.95rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255, 199, 0, 0.04); }
.data-table .num {
    font-family: 'Cinzel Decorative', serif;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   CALLOUT / TLDR / PULL QUOTE
   ============================================ */
.tldr {
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.1), rgba(255, 199, 0, 0.02));
    border: 1px solid var(--border-strong);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}
.tldr-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}
.tldr p:last-child { margin-bottom: 0; }

.callout {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.callout-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary);
}
.callout p:last-child { margin-bottom: 0; }
.callout.callout-warn { border-color: var(--accent); background: rgba(232, 37, 58, 0.06); }
.callout.callout-warn .callout-icon { color: var(--accent); }

.pull-quote {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.3rem, 2vw + 0.75rem, 1.75rem);
    line-height: 1.4;
    font-style: italic;
    text-align: center;
    color: var(--foreground);
    padding: 2rem 1rem;
    margin: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.pull-quote::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary);
    background: var(--background);
    padding: 0 1rem;
    line-height: 1;
}

/* ============================================
   COMPARISON TABLE WINNER COLUMN
   ============================================ */
.data-table .col-winner {
    background: linear-gradient(180deg, rgba(255, 199, 0, 0.12), rgba(255, 199, 0, 0.03));
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

/* ============================================
   ANIMATE ON SCROLL (works with JS)
   ============================================ */
.animate-on-scroll {
    opacity: 0.001;
    transform: translateY(30px);
    transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1), transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Hero content is above the fold - render visible immediately to preserve contrast */
.hero .animate-on-scroll {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* VIP door reveal - wrap 2 panels side by side */
.vip-doors {
    position: relative;
    overflow: hidden;
}
.vip-doors::before, .vip-doors::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.7));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 5;
    transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1), opacity 800ms;
    pointer-events: none;
}
.vip-doors::before { left: 0; border-right: 1px solid var(--primary); box-shadow: 4px 0 24px rgba(255, 199, 0, 0.3); }
.vip-doors::after { right: 0; border-left: 1px solid var(--primary); box-shadow: -4px 0 24px rgba(255, 199, 0, 0.3); }
.vip-doors.is-open::before { transform: translateX(-100%); opacity: 0; }
.vip-doors.is-open::after { transform: translateX(100%); opacity: 0; }

/* ============================================
   GO PAGE (redirect stub)
   ============================================ */
.redirect-stub {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--background);
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 199, 0, 0.25), transparent 60%);
}
.redirect-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 12px 36px rgba(255, 199, 0, 0.5));
}
.redirect-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.redirect-note { font-size: 0.95rem; color: var(--muted-foreground); margin-top: 1.5rem; max-width: 32ch; }
.redirect-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(255, 199, 0, 0.2);
    border-top-color: var(--primary);
    animation: spin 0.9s linear infinite;
    margin: 1.5rem auto 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   PROVIDER FILTER (spiele page)
   ============================================ */
.provider-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 1.25rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.filter-chip:hover {
    color: var(--primary);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.filter-chip.is-active {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(255, 199, 0, 0.4), 0 0 0 1px rgba(255, 199, 0, 0.5);
}
.filter-status {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin: 0 0 1.75rem;
}
.filter-status strong {
    color: var(--primary);
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
}
#slots-grid > div {
    transition: opacity 350ms, transform 350ms;
}
#slots-grid > div.is-hidden {
    display: none;
}

/* ============================================
   ADVANTAGE LIST (index page)
   ============================================ */
.advantage-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    transition: transform 300ms, border-color 300ms;
}
.advantage-item:hover {
    transform: translateX(6px);
    border-color: var(--primary);
}
.advantage-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 199, 0, 0.12);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    font-size: 1.5rem;
}
.advantage-item h3 {
    font-size: 1.15rem;
    margin: 0 0 0.25rem;
    color: var(--primary);
}
.advantage-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

/* Header scrolled state */
.site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-md { gap: 1rem; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}