/* ============================================
   CrazyBuzzer Casino - Design System
   Royal Castle × Merkur Spielhalle
   Mobile-first, gold/black palette
   ============================================ */

/* Reset & overflow safety */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
    font-family: "Rubik", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top, rgba(255, 193, 7, 0.06), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.6), transparent 70%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 72px; /* sticky cta */
}

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; }
.table-wrapper { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrapper:focus-visible { outline: 2px solid var(--primary); 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(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

/* Inline links in body text contexts must have underline for a11y */
.callout a,
.faq-answer a,
p a:not(.btn):not(.brand):not(.sticky-cta),
li a:not(.btn):not(.brand):not(.sticky-cta),
td a:not(.btn) {
    text-decoration: underline;
    text-decoration-color: rgba(255, 193, 7, 0.5);
    text-underline-offset: 3px;
}
.callout a:hover,
.faq-answer a:hover,
p a:not(.btn):not(.brand):not(.sticky-cta):hover,
li a:not(.btn):not(.brand):not(.sticky-cta):hover {
    text-decoration-color: var(--accent);
}

ul, ol { list-style: none; }

/* Skip link */
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    padding: 12px 18px; background: var(--primary); color: var(--primary-foreground);
    font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Visually hidden */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   TYPOGRAPHY
   Cinzel for royal headings, Rubik for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--foreground);
    letter-spacing: 0.01em;
}
h1 { font-size: clamp(1.8rem, 5vw + 1rem, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw + 0.8rem, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.2vw + 0.9rem, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.25rem); font-weight: 600; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.4);
    text-shadow: 0 2px 0 rgba(0,0,0,0.4);
}

.eyebrow {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.06);
    margin-bottom: 14px;
}

/* ============================================
   LAYOUT - container, sections, grids
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 1024px) {
    .container { padding-left: 32px; padding-right: 32px; }
}

.section {
    padding: 64px 0;
    position: relative;
}
@media (min-width: 1024px) {
    .section { padding: 112px 0; }
}

.section--stone {
    background:
        linear-gradient(180deg, rgba(20,16,10,0.85) 0%, rgba(20,16,10,0.95) 100%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><rect width='160' height='160' fill='%231a130a'/><g fill='none' stroke='%23332618' stroke-width='1.2'><path d='M0 0h80v40H0zM80 0h80v40H80zM0 40h40v40H0zM40 40h80v40H40zM120 40h40v40h-40zM0 80h80v40H0zM80 80h80v40H80zM0 120h40v40H0zM40 120h80v40H40zM120 120h40v40h-40z'/></g></svg>");
}

.section--torchlit::before,
.section--torchlit::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 80px;
    background: radial-gradient(ellipse at center, rgba(255, 193, 7, 0.18), transparent 60%);
    pointer-events: none;
    animation: flicker 3.5s ease-in-out infinite;
}
.section--torchlit::before { left: 0; }
.section--torchlit::after { right: 0; animation-delay: -1.7s; }

@keyframes flicker {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
    20%, 70% { opacity: 0.85; }
}

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

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.grid-3 { grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
    .grid-2 { gap: 18px; }
}
.grid-games {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (min-width: 600px) { .grid-games { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 1024px) { .grid-games { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1280px) { .grid-games { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

/* ============================================
   BUTTONS - yellow CTA is king
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: var(--gold-grad-bright);
    color: #0a0a0a;
    border-color: #b88a06;
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.3), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 193, 7, 0.5), inset 0 1px 0 rgba(255,255,255,0.5);
    color: #0a0a0a;
}
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; }
.btn-xl { min-height: 60px; padding: 16px 36px; font-size: 18px; }

.btn-pulse { animation: pulse 4s ease-in-out infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(255, 193, 7, 0.3), inset 0 1px 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 8px 30px rgba(255, 193, 7, 0.7), inset 0 1px 0 rgba(255,255,255,0.6); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================
   HEADER - fixed royal banner
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: linear-gradient(180deg, #0c0905 0%, #14100a 100%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.site-header::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -3px;
    height: 3px;
    background: var(--gold-grad);
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
@media (min-width: 1024px) { .header-inner { padding: 0 32px; } }

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    text-decoration: none;
}
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--primary);
    letter-spacing: 0.02em;
}
.brand-sub {
    font-family: "Rubik", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted-foreground);
    margin-top: 2px;
}
@media (min-width: 768px) {
    .brand-name { font-size: 22px; }
    .brand-sub { font-size: 11px; }
}

/* Theme toggle */
.theme-toggle {
    z-index: 1001;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    margin-right: 8px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.theme-toggle:hover {
    background: rgba(255, 193, 7, 0.08);
    border-color: var(--primary);
    transform: rotate(15deg);
}
.theme-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

@media (min-width: 1024px) {
    .theme-toggle { width: 48px; height: 48px; margin-right: 12px; }
}

/* Light theme palette - pergament & royal gold */
[data-theme="light"] {
    --background: #f7efd8;
    --foreground: #1a1208;
    --card: #fffaec;
    --card-foreground: #1a1208;
    --popover: #fffaec;
    --popover-foreground: #1a1208;
    --primary: #c9971b;
    --primary-foreground: #1a1208;
    --secondary: #1a1208;
    --secondary-foreground: #fffaec;
    --muted: #ece1bf;
    --muted-foreground: #5a4a2a;
    --accent: #b8860b;
    --accent-foreground: #fffaec;
    --border: #d8c388;
    --input: #fffaec;
    --ring: #c9971b;
    --shadow-gold: 0 0 24px rgba(184, 134, 11, 0.28);
    --shadow-deep: 0 18px 40px rgba(60, 40, 10, 0.18);
}
[data-theme="light"] body {
    background-image:
        radial-gradient(ellipse at top, rgba(255, 193, 7, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(184, 134, 11, 0.10), transparent 70%);
}

/* Mobile menu toggle */
.menu-toggle {
    z-index: 1001;
    width: 48px; height: 48px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--primary);
    transition: transform .3s ease, opacity .2s 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); }

/* Mobile nav drawer */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--background);
    background-image:
        linear-gradient(180deg, #14100a 0%, #0a0805 100%);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px 40px;
    border-top: 1px solid var(--border);
}
.main-nav.is-open { display: block; }

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}
.nav-list a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 16px;
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    transition: color .2s, background .2s;
}
.nav-list a:hover { color: var(--primary); background: rgba(255, 193, 7, 0.06); }

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 8px;
}

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex !important;
        position: static;
        background: transparent;
        padding: 0;
        flex: 1;
        align-items: center;
        justify-content: flex-end;
        gap: 28px;
        border: 0;
        overflow: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 4px;
        margin: 0;
    }
    .nav-list a {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        min-height: 40px;
        padding: 0 14px;
        border-bottom: 0;
        border-radius: 6px;
    }
    .nav-cta {
        flex-direction: row;
        gap: 10px;
        padding: 0;
    }
    .nav-cta .btn { min-height: 44px; padding: 10px 18px; font-size: 14px; }
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.sticky-cta {
    position: fixed;
    left: 8px; right: 8px; bottom: 8px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 10px 16px;
    background: var(--gold-grad-bright);
    color: #0a0a0a !important;
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 0 0 2px rgba(0,0,0,0.4);
    animation: pulse 4s ease-in-out infinite;
}
.sticky-cta-icon { font-size: 20px; }
.sticky-cta-arrow { font-size: 22px; }
@media (min-width: 1024px) { .sticky-cta { display: none; } body { padding-bottom: 0; } }

/* ============================================
   HERO - POV through royal castle
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    padding: 80px 0 64px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center top, rgba(255, 193, 7, 0.18), transparent 55%),
        linear-gradient(180deg, #1a130a 0%, #06040a 100%);
    border-bottom: 3px solid var(--primary);
}
.hero-corridor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    perspective: 800px;
    overflow: hidden;
}
.hero-corridor::before,
.hero-corridor::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 35%;
    background:
        repeating-linear-gradient(
            transparent 0 60px,
            rgba(255, 193, 7, 0.06) 60px 62px,
            transparent 62px 120px
        ),
        linear-gradient(90deg, rgba(0,0,0,0.6), transparent);
    transform-origin: center;
}
.hero-corridor::before { left: 0; transform: skewX(15deg) translateX(-10%); }
.hero-corridor::after  { right: 0; transform: skewX(-15deg) translateX(10%); background: linear-gradient(-90deg, rgba(0,0,0,0.6), transparent), repeating-linear-gradient(transparent 0 60px, rgba(255, 193, 7, 0.06) 60px 62px, transparent 62px 120px); }

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero { padding: 140px 0 112px; }
    .hero-inner { grid-template-columns: 1.2fr 1fr; padding: 0 32px; gap: 48px; }
}
.hero-title {
    font-size: clamp(2rem, 5.5vw + 1rem, 4.5rem);
    line-height: 1.05;
    margin-bottom: 16px;
}
.hero-sub {
    font-size: clamp(1rem, 0.5vw + 0.95rem, 1.2rem);
    color: var(--muted-foreground);
    max-width: 560px;
    margin-bottom: 28px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    font-size: 14px;
    color: var(--muted-foreground);
}
.hero-trust strong { color: var(--primary); font-weight: 700; }
.hero-art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin: 0 auto;
}
.hero-art img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(255, 193, 7, 0.25));
}

/* ============================================
   GAME CARD
   ============================================ */
.game-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #1f1810 0%, #14100a 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.game-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold), var(--shadow-deep);
}
.game-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}
.game-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.game-card:hover .game-card-media img { transform: scale(1.06); }
.game-card-media::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}
.game-card-shine {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .8s ease;
    pointer-events: none;
}
.game-card:hover .game-card-shine { transform: translateX(100%); }
.game-card-badge {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    padding: 4px 10px;
    background: var(--gold-grad-bright);
    color: #0a0a0a;
    font-family: "Cinzel", serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
}
.game-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
@media (min-width: 768px) { .game-card-body { padding: 20px; } }
.game-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
@media (min-width: 768px) { .game-card-title { font-size: 18px; } }
.game-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0 0 8px;
}
.game-card-rtp {
    color: var(--accent);
    font-weight: 600;
}
.game-card .btn { font-size: 13px; min-height: 44px; padding: 10px 14px; margin-top: auto; }

/* ============================================
   BONUS CARD - royal banner
   ============================================ */
.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #1f1810 0%, #0c0805 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 52px 24px 28px;
    margin-top: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold), var(--shadow-deep); }
.bonus-card--featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), var(--shadow-deep);
}
.bonus-card-banner {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold-grad);
    color: #0a0a0a;
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 10px 28px;
    border: 2px solid #0a0a0a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
    white-space: nowrap;
}
.bonus-card-shield {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin: 14px 0 12px;
    padding: 8px 24px;
    background:
        radial-gradient(ellipse at center, rgba(255, 193, 7, 0.15), transparent 70%);
}
.bonus-card-amount {
    font-family: "Cinzel", serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 5vw + 1rem, 5rem);
    line-height: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    -webkit-text-stroke: 1px rgba(0,0,0,0.5);
}
.bonus-card-unit {
    font-family: "Cinzel", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}
.bonus-card-mascot {
    position: absolute;
    top: 12px; right: 8px;
    width: 72px; height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.bonus-card-headline {
    font-size: 1.2rem;
    color: var(--foreground);
    margin-bottom: 10px;
}
.bonus-card-desc {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: 16px;
}
.bonus-card-terms {
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bonus-card-terms li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--foreground);
}
.bonus-card-terms .check {
    flex-shrink: 0;
    width: 20px; height: 20px;
    background: var(--gold-grad);
    color: #0a0a0a;
    font-weight: 900;
    font-size: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bonus-card-fineprint {
    margin-top: 12px;
    font-size: 11px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion { max-width: 880px; margin: 0 auto; }
.faq-heading { text-align: center; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.faq-item[open] { box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 18px 56px 18px 20px;
    position: relative;
    font-family: "Cinzel", serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.35;
}
@media (min-width: 768px) { .faq-question { font-size: 19px; padding: 20px 64px 20px 24px; } }
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    position: absolute;
    right: 20px; top: 50%;
    width: 28px; height: 28px;
    transform: translateY(-50%);
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: transform .3s ease, background .3s ease;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--primary);
    transition: opacity .3s ease;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { transform: translateY(-50%) rotate(180deg); background: var(--primary); }
.faq-item[open] .faq-icon::before { background: #0a0a0a; }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-answer {
    padding: 4px 24px 22px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--foreground);
    background: rgba(255, 193, 7, 0.03);
    border-top: 1px solid var(--border);
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol { margin: 12px 0 12px 20px; }
.faq-answer ul { list-style: disc; }
.faq-answer ol { list-style: decimal; }
.faq-answer li { margin-bottom: 6px; }
.faq-answer a { color: var(--primary); text-decoration: underline; }

/* ============================================
   CTA BANNER - full-width torch-lit
   ============================================ */
.cta-banner {
    position: relative;
    padding: 64px 16px;
    margin: 64px 0 0;
    background:
        linear-gradient(180deg, rgba(255, 193, 7, 0.12) 0%, transparent 30%),
        linear-gradient(180deg, #1a130a 0%, #0c0805 100%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><rect width='160' height='160' fill='%231a130a'/><g fill='none' stroke='%23332618' stroke-width='1.2'><path d='M0 0h80v40H0zM80 0h80v40H80zM0 40h40v40H0zM40 40h80v40H40zM120 40h40v40h-40zM0 80h80v40H0zM80 80h80v40H80zM0 120h40v40H0zM40 120h80v40H40zM120 120h40v40h-40z'/></g></svg>");
    background-size: cover, cover, 160px 160px;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    text-align: center;
    overflow: hidden;
}
@media (min-width: 1024px) { .cta-banner { padding: 112px 32px; } }
.torch {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; height: 120px;
    background: radial-gradient(ellipse at top, rgba(255, 193, 7, 0.6), transparent 60%);
    animation: flicker 2.4s ease-in-out infinite;
    pointer-events: none;
}
.torch-left { left: -10px; }
.torch-right { right: -10px; animation-delay: -1s; }
.cta-banner-inner {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 24px;
    align-items: center;
}
@media (min-width: 768px) { .cta-banner-inner { grid-template-columns: auto 1fr; gap: 40px; text-align: left; } }
.cta-banner-mascot {
    width: 160px; height: 160px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5)) drop-shadow(0 0 24px rgba(255, 193, 7, 0.3));
}
@media (min-width: 768px) { .cta-banner-mascot { width: 220px; height: 220px; } }
.cta-banner-title {
    font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
    margin-bottom: 14px;
}
.cta-banner-sub {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
}
.cta-banner-fine {
    margin-top: 16px;
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 193, 7, 0.02));
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 28px 0;
}
.tldr-box h2,
.tldr-box h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
}

.callout {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    margin: 24px 0;
    background: var(--card);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.callout-icon {
    flex-shrink: 0;
    font-size: 24px;
}
.callout-warn { border-left-color: var(--destructive); }
.callout-tip  { border-left-color: var(--accent); }

.stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0;
}
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat-highlight {
    text-align: center;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.stat-number {
    display: block;
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}
.stat-source {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--muted-foreground);
    opacity: 0.8;
}

.pull-quote {
    font-family: "Cinzel", serif;
    font-size: clamp(1.2rem, 1.5vw + 0.8rem, 1.75rem);
    font-style: italic;
    line-height: 1.4;
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 32px 0;
    color: var(--foreground);
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.05), transparent);
}
.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-family: "Rubik", sans-serif;
    font-style: normal;
    font-size: 14px;
    color: var(--muted-foreground);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 15px;
}
.comparison-table thead {
    background: linear-gradient(180deg, #2a1f12, #1a130a);
}
.comparison-table th {
    padding: 14px 16px;
    text-align: left;
    font-family: "Cinzel", serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}
.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table .col-recommended {
    background: rgba(255, 193, 7, 0.08);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    font-weight: 600;
    color: var(--primary);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}
.trust-row .trust-item {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    font-family: "Cinzel", serif;
    font-size: 13px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.testimonial-stars { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
.testimonial-text { font-size: 16px; margin-bottom: 16px; }
.testimonial-author { font-size: 14px; color: var(--muted-foreground); }
.testimonial-author strong { color: var(--foreground); }

/* ============================================
   PROSE - long form text after visuals
   ============================================ */
.prose {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.75;
    color: var(--foreground);
}
.prose h2 { margin: 40px 0 16px; }
.prose h3 { margin: 28px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--primary); }
.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(245, 197, 66, 0.4);
    text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: var(--accent); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: 16px 0 0;
    font-size: 14px;
    color: var(--muted-foreground);
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--accent);
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs [aria-current="page"] { color: var(--foreground); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #0c0805 0%, #050402 100%);
    border-top: 3px solid var(--primary);
    padding: 56px 0 24px;
    color: var(--muted-foreground);
    margin-top: 80px;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    gap: 36px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 32px; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; } }

.footer-col .brand { margin-bottom: 14px; }
.footer-tag {
    font-size: 14px;
    margin-bottom: 16px;
    max-width: 320px;
    line-height: 1.55;
}
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    color: var(--destructive);
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 22px;
    background: rgba(220, 38, 38, 0.08);
}
.age-badge span { font-size: 14px; }

.footer-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: var(--muted-foreground);
    font-size: 15px;
    transition: color .2s;
}
.footer-links a:hover { color: var(--primary); }

.payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 36px;
    padding: 0 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: "Cinzel", serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.06em;
}
.pay-paypal { color: #66b2ff; }
.pay-visa { color: #1a1f71; background: #fff; border-color: #fff; }
.pay-mc { color: #ff6b7a; }
.pay-klarna { color: #ffa8cd; background: #0a0a0a; }

.trust-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.trust-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 193, 7, 0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.responsible { font-size: 12px; line-height: 1.5; }
.responsible strong { color: var(--primary); }

.footer-bottom {
    max-width: var(--container);
    margin: 32px auto 0;
    padding: 24px 16px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}
.footer-bottom .copyright { color: var(--foreground); margin-bottom: 8px; }
.disclaimer { color: var(--muted-foreground); max-width: 760px; margin: 0 auto; }

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease-out, transform .8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Filter chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
}
.chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-family: "Cinzel", serif;
    font-size: 13px;
    color: var(--foreground);
    cursor: pointer;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.chip:hover, .chip[aria-pressed="true"] {
    background: var(--gold-grad-bright);
    color: #0a0a0a;
    border-color: var(--primary);
}

/* Loader spinner */
.spinner {
    width: 64px; height: 64px;
    border: 5px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

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

/* ============================================
   CLAIM PAGE - redirect stub
   ============================================ */
.claim-stage {
    position: relative;
    min-height: calc(100vh - var(--header-h) - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    background:
        radial-gradient(ellipse at center, rgba(255, 193, 7, 0.18), transparent 60%),
        linear-gradient(180deg, #1a130a 0%, #06040a 100%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><rect width='160' height='160' fill='%231a130a'/><g fill='none' stroke='%23332618' stroke-width='1.2'><path d='M0 0h80v40H0zM80 0h80v40H80zM0 40h40v40H0zM40 40h80v40H40zM120 40h40v40h-40zM0 80h80v40H0zM80 80h80v40H80zM0 120h40v40H0zM40 120h80v40H40zM120 120h40v40h-40z'/></g></svg>");
    background-size: cover, cover, 160px 160px;
    overflow: hidden;
    text-align: center;
}
.claim-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.claim-mascot-wrap {
    position: relative;
    width: 240px;
    height: 240px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .claim-mascot-wrap { width: 300px; height: 300px; }
}
.claim-mascot {
    position: relative;
    z-index: 2;
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(255, 193, 7, 0.45));
    animation: claim-bounce 1.6s ease-in-out infinite;
}
@keyframes claim-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.claim-spinner {
    position: absolute;
    inset: 0;
    border: 4px solid rgba(255, 193, 7, 0.15);
    border-top-color: var(--primary);
    border-right-color: var(--accent);
    border-radius: 50%;
    animation: spin 1.4s linear infinite;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.25);
}
.claim-title {
    font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
    margin-bottom: 14px;
}
.claim-sub {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 520px;
    margin-bottom: 24px;
}
.claim-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Cinzel", serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    padding: 12px 22px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid var(--border);
    border-radius: 999px;
    margin-bottom: 28px;
}
.claim-dots {
    display: inline-flex;
    gap: 4px;
}
.claim-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: claim-dot 1.2s ease-in-out infinite;
}
.claim-dots span:nth-child(2) { animation-delay: 0.2s; }
.claim-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes claim-dot {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1.2); }
}
.claim-fine {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: 480px;
}

/* Hide sticky CTA on claim page (no double-CTA on stub) */
.claim-stage ~ .sticky-cta-wrap,
body:has(.claim-stage) .sticky-cta-wrap { display: none; }