/* ============================================
   CRAZYBUZZER CASINO - RETRO SPIELOTHEK 1980s
   Pixel-arcade aesthetic, amber + black + red buzzer
   Mobile-first, WCAG AA
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*,
*::before,
*::after { box-sizing: border-box; }

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

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

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

.table-wrapper { max-width: 100%; overflow-x: auto; min-width: 0; }
.table-wrapper table { min-width: 560px; width: 100%; }

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

/* ============================================
   BASE TYPOGRAPHY & RESET
   Press Start 2P → display headings
   VT323 → tabletop / scoreboard
   Rubik → body text
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Rubik", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(circle at 20% 10%, rgba(245,181,10,0.08), transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(214,40,40,0.06), transparent 40%);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.2; color: var(--foreground); }

h1 {
    font-family: "Press Start 2P", "Courier New", monospace;
    font-size: clamp(1.6rem, 5.5vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--primary);
    text-shadow:
        0 0 0 #1a1208,
        2px 2px 0 #1a1208,
        4px 4px 0 rgba(214,40,40,0.55),
        0 0 24px rgba(245,181,10,0.45);
}

h2 {
    font-family: "VT323", "Courier New", monospace;
    font-size: clamp(1.75rem, 4.2vw, 2.5rem);
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.01em;
}

h3 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}

p { margin: 0 0 1.25rem; max-width: 70ch; }

a { color: #a51d1d; text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: #1a1208; }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .35rem; }

strong, b { font-weight: 700; color: #1a1208; }

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

img { display: block; }

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

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   LAYOUT - container, sections, spacing rhythm
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section {
    padding: 56px 0;
}
@media (min-width: 1024px) {
    .section { padding: 80px 0; }
}

/* ============================================
   /spin.html - redirect stub
   ============================================ */
.spin-stage {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1208;
    background-image:
        repeating-linear-gradient(0deg, rgba(245,181,10,0.04) 0 2px, transparent 2px 4px),
        radial-gradient(circle at 50% 30%, rgba(245,181,10,0.18), transparent 60%);
    color: #fdf6e3;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.spin-stage::before {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0 3px, rgba(0,0,0,0.18) 3px 4px);
    pointer-events: none;
}
.spin-stage-inner { width: 100%; position: relative; z-index: 1; }
.spin-frame {
    max-width: 640px;
    margin: 0 auto;
    background: #0f0905;
    border: 4px solid var(--primary);
    box-shadow:
        0 0 0 4px #1a1208,
        0 0 0 8px var(--primary),
        0 0 32px rgba(245,181,10,0.35);
    padding: 32px 20px;
    text-align: center;
}
@media (min-width: 768px) { .spin-frame { padding: 48px 40px; } }

.spin-eyebrow {
    font-family: "VT323", monospace;
    font-size: 1.25rem;
    color: var(--accent-bright);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.spin-title {
    color: var(--primary);
    margin: 0 0 16px;
    font-size: clamp(1.4rem, 5vw, 2.25rem);
}
.spin-text {
    color: #fdf6e3;
    font-size: 1.05rem;
    margin: 0 auto 28px;
    max-width: 52ch;
}
.spin-loader {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 24px 0 28px;
}
.spin-loader span {
    width: 14px; height: 28px;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(245,181,10,0.6);
    animation: spinBars 1s ease-in-out infinite;
}
.spin-loader span:nth-child(2) { animation-delay: .12s; background: var(--accent-bright); box-shadow: 0 0 12px rgba(255,45,85,0.6); }
.spin-loader span:nth-child(3) { animation-delay: .24s; }
.spin-loader span:nth-child(4) { animation-delay: .36s; background: var(--accent-bright); box-shadow: 0 0 12px rgba(255,45,85,0.6); }
.spin-loader span:nth-child(5) { animation-delay: .48s; }
@keyframes spinBars {
    0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
    50%      { transform: scaleY(1.0); opacity: 1; }
}
.spin-mini {
    font-family: "VT323", monospace;
    font-size: 1.1rem;
    color: #f5e6c8;
    margin: 0 0 20px;
}
.spin-mini a { color: var(--primary); text-decoration: underline; }
.spin-mini a:hover { color: var(--accent-bright); }

.spin-meta {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
}
.spin-meta li {
    font-family: "Press Start 2P", monospace;
    font-size: 0.65rem;
    color: #1a1208;
    background: var(--primary);
    padding: 8px 12px;
    border: 2px solid #1a1208;
    margin: 0;
}
@media (prefers-reduced-motion: reduce) {
    .spin-loader span { animation: none; }
}

.section-tight { padding: 32px 0; }
.section-bg-dark { background: #1a1208; color: var(--card-foreground); }
.section-bg-dark h1, .section-bg-dark h2, .section-bg-dark h3 { color: var(--primary); }
.section-bg-dark p, .section-bg-dark li { color: #fdf6e3; }
.section-bg-dark a { color: var(--primary); }
.section-bg-dark a:hover { color: var(--primary-bright); }
.section-bg-dark a.btn-buzzer { color: #fff; }
.section-bg-dark a.btn-buzzer:hover { color: #fff; }
.section-bg-dark a.btn-primary { color: #1a1208; }
.section-bg-dark a.btn-primary:hover { color: #1a1208; }
.section-bg-muted { background: var(--muted); }

.eyebrow {
    display: inline-block;
    font-family: "VT323", monospace;
    font-size: 1.25rem;
    color: #a51d1d;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.section-title {
    margin-bottom: 32px;
    text-align: center;
}
.section-title h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 8px; }
.section-title p { color: var(--muted-foreground); margin: 0 auto; max-width: 60ch; }

/* ============================================
   BUTTONS
   .btn-primary    → amber/yellow Spielen button
   .btn-buzzer     → red Buzzer Jetzt-spielen CTA
   .btn-ghost      → outline, header Anmelden
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: "Rubik", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid #1a1208;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform .15s ease-out, box-shadow .2s, background-color .2s;
    box-shadow: 4px 4px 0 #1a1208;
    line-height: 1.1;
    text-align: center;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #1a1208; text-decoration: none; }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #1a1208; }

.btn-primary {
    background: var(--primary);
    color: #1a1208;
}
.btn-primary:hover { background: var(--primary-bright); color: #1a1208; }

.btn-buzzer {
    background: var(--accent);
    color: #fff;
    font-family: "Press Start 2P", monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    min-height: 56px;
    padding: 14px 28px;
    box-shadow: 4px 4px 0 #1a1208, 0 0 0 0 rgba(214,40,40,0.7);
    animation: buzzer-pulse 2s ease-in-out infinite;
}
.btn-buzzer:hover { background: var(--accent-bright); color: #fff; }

.btn-buzzer-lg {
    min-height: 64px;
    font-size: 1rem;
    padding: 18px 36px;
}
.btn-buzzer-sm {
    min-height: 44px;
    font-size: 0.7rem;
    padding: 10px 18px;
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}
.btn-ghost:hover {
    background: var(--primary);
    color: #1a1208;
    box-shadow: 4px 4px 0 #1a1208;
}

.btn-block { display: flex; width: 100%; }

@keyframes buzzer-pulse {
    0%, 100% { box-shadow: 4px 4px 0 #1a1208, 0 0 0 0 rgba(214,40,40,0.7); }
    50% { box-shadow: 4px 4px 0 #1a1208, 0 0 0 12px rgba(214,40,40,0); }
}

/* ============================================
   HEADER - fixed, pixel-bordered, dark
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #1a1208;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 0 rgba(0,0,0,0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 16px;
    min-height: var(--header-h);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
}
.brand:hover { color: var(--primary-bright); }
.logo {
    width: 44px; height: 44px;
    border-radius: 4px;
    image-rendering: pixelated;
    box-shadow: 2px 2px 0 #d62828;
    background: #fdf6e3;
}
.brand-name {
    display: flex; flex-direction: column;
    line-height: 1;
    font-family: "Press Start 2P", monospace;
}
.brand-name-top { font-size: 0.78rem; color: var(--primary); letter-spacing: 0.04em; }
.brand-name-bottom { font-size: 0.62rem; color: #fdf6e3; margin-top: 4px; letter-spacing: 0.18em; }
@media (min-width: 1024px) {
    .brand-name-top { font-size: 0.95rem; }
    .brand-name-bottom { font-size: 0.7rem; }
}

.header-scanline {
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary) 0 6px, transparent 6px 12px);
    opacity: 0.6;
}

/* Burger toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px; height: 48px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary);
    transition: transform .25s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Nav drawer (mobile) */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #1a1208;
    border-top: 3px solid var(--primary);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px 40px;
}
.main-nav.is-open { display: flex; flex-direction: column; gap: 24px; }

.nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: stretch;
    gap: 4px;
}
.nav-list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 16px;
    color: var(--primary);
    font-family: "VT323", monospace;
    font-size: 1.6rem;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: background .2s, border-color .2s;
}
.nav-list a:hover {
    background: rgba(245,181,10,0.12);
    border-color: var(--primary);
    color: var(--primary-bright);
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px dashed rgba(245,181,10,0.4);
}

/* Desktop nav */
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex !important;
        position: static;
        background: transparent;
        border-top: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        overflow: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 4px;
    }
    .nav-list a {
        font-size: 1.15rem;
        padding: 8px 14px;
        min-height: 40px;
    }
    .nav-cta {
        flex-direction: row;
        gap: 10px;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
}

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

/* ============================================
   HERO BLOCKS (per-page templates extend these)
   ============================================ */
.hero {
    position: relative;
    min-height: 480px;
    padding: 48px 0 64px;
    background: #1a1208;
    color: #fdf6e3;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(0,0,0,0.18) 0 2px, transparent 2px 4px),
        radial-gradient(ellipse at center, rgba(245,181,10,0.18), transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute; inset: auto 0 0 0; height: 8px;
    background: repeating-linear-gradient(90deg, var(--primary) 0 12px, #1a1208 12px 24px);
}
.hero-inner {
    position: relative;
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: center;
    z-index: 1;
}
.hero-content h1 { color: var(--primary); margin-bottom: 16px; }
.hero-lead {
    font-family: "VT323", monospace;
    font-size: 1.5rem;
    color: #fdf6e3;
    margin-bottom: 24px;
    max-width: 50ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-mascot {
    position: relative;
    text-align: center;
}
.hero-mascot img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    image-rendering: pixelated;
    filter: drop-shadow(6px 6px 0 #d62828);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    max-width: 540px;
}
.hero-stat {
    background: rgba(245,181,10,0.08);
    border: 2px solid var(--primary);
    padding: 12px 8px;
    text-align: center;
    border-radius: 4px;
}
.hero-stat .num {
    display: block;
    font-family: "VT323", monospace;
    font-size: 1.75rem;
    color: var(--primary-bright);
    line-height: 1;
}
.hero-stat .lab {
    font-size: 0.78rem;
    color: #fdf6e3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
    .hero { padding: 80px 0 96px; min-height: 560px; }
    .hero-inner {
        grid-template-columns: 1.1fr 1fr;
        gap: 48px;
    }
}

/* ============================================
   SLOT CARD - pixel double border, hover lift
   ============================================ */
.slots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 560px) { .slots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .slots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
@media (min-width: 1280px) { .slots-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.slot-card {
    background: #1a1208;
    border: 3px solid var(--primary);
    box-shadow: inset 0 0 0 2px #1a1208, inset 0 0 0 5px var(--primary), 4px 4px 0 #d62828;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease-out, box-shadow .2s;
}
.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 2px #1a1208, inset 0 0 0 5px var(--primary-bright),
                6px 6px 0 #d62828, 0 0 28px rgba(245,181,10,0.55);
}
.slot-card-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #2b1f10;
    overflow: hidden;
}
.slot-card-cover img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; }
.slot-card-scanlines {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, rgba(0,0,0,0.18) 0 2px, transparent 2px 4px);
    pointer-events: none; mix-blend-mode: multiply;
}
.slot-badge {
    position: absolute; top: 8px; left: 8px;
    background: var(--accent); color: #fff;
    font-family: "Press Start 2P", monospace;
    font-size: 0.55rem;
    padding: 6px 8px;
    border: 2px solid #1a1208;
    z-index: 2;
    letter-spacing: 0.05em;
}
.slot-card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.slot-card-title {
    font-family: "VT323", monospace;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0;
    line-height: 1.05;
}
.slot-card-meta {
    display: flex; flex-wrap: wrap; gap: 10px;
    font-size: 0.85rem; color: #c9b88a; margin: 0;
}
.slot-rtp {
    background: rgba(245,181,10,0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 2px;
    font-family: "VT323", monospace;
    font-size: 1rem;
}

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

.bonus-card {
    background: #1a1208;
    color: #fdf6e3;
    border: 4px solid var(--primary);
    box-shadow: 6px 6px 0 #d62828;
    padding: 24px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}
@media (min-width: 1024px) { .bonus-card { padding: 32px; } }

.bonus-card-highlight {
    border-color: var(--primary-bright);
    box-shadow: 6px 6px 0 #d62828, 0 0 32px rgba(245,181,10,0.4);
}
.bonus-card-highlight::before {
    content: "TOP";
    position: absolute;
    top: -14px; right: 16px;
    background: var(--accent);
    color: #fff;
    font-family: "Press Start 2P", monospace;
    font-size: 0.6rem;
    padding: 6px 10px;
    border: 2px solid #1a1208;
    letter-spacing: 0.08em;
}

.bonus-card-head { display: flex; align-items: center; gap: 14px; }
.bonus-icon {
    width: 64px; height: 64px;
    background: var(--primary);
    border: 3px solid #fdf6e3;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.bonus-icon img { width: 100%; height: 100%; object-fit: cover; }
.bonus-icon-coin {
    color: #1a1208;
    font-family: "Press Start 2P", monospace;
    font-size: 1.5rem;
}
.bonus-title {
    font-family: "Press Start 2P", monospace;
    font-size: 0.85rem;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}
@media (min-width: 768px) { .bonus-title { font-size: 1rem; } }

.bonus-amount {
    font-family: "VT323", monospace;
    font-size: 3rem;
    color: var(--primary-bright);
    line-height: 1;
    text-shadow: 0 0 12px rgba(255,214,10,0.6), 3px 3px 0 #d62828;
    letter-spacing: 0.02em;
}
@media (min-width: 1024px) { .bonus-amount { font-size: 3.5rem; } }

.bonus-subtitle { font-family: "VT323", monospace; font-size: 1.25rem; color: #fdf6e3; margin: 0; }

.bonus-terms { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.bonus-terms li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: #fdf6e3; margin: 0; }
.bonus-terms .check {
    color: var(--primary-bright);
    font-weight: 900;
    font-family: "Press Start 2P", monospace;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.bonus-mini { font-size: 0.78rem; color: #c9b88a; margin: 0; }

/* ============================================
   CTA BANNER - full-bleed conversion anchor
   ============================================ */
.cta-banner {
    position: relative;
    min-height: 480px;
    padding: 56px 16px;
    background: #1a1208;
    color: #fdf6e3;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.cta-banner-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-floor {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 50% 30%, rgba(245,181,10,0.18), transparent 60%),
        repeating-linear-gradient(45deg, rgba(245,181,10,0.05) 0 4px, transparent 4px 12px);
}
.cta-scanlines {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, rgba(0,0,0,0.22) 0 2px, transparent 2px 4px);
    animation: scanslide 8s linear infinite;
}
@keyframes scanslide {
    from { background-position: 0 0; }
    to { background-position: 0 60px; }
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    text-align: center;
}
.cta-mascot { order: 0; }
.cta-mascot img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    image-rendering: pixelated;
    filter: drop-shadow(4px 4px 0 #d62828);
}
.cta-content { order: 1; }
.cta-title {
    font-family: "Press Start 2P", monospace;
    font-size: clamp(1.25rem, 4vw, 2.25rem);
    color: var(--primary);
    text-shadow: 3px 3px 0 #d62828, 0 0 24px rgba(245,181,10,0.4);
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-subtitle {
    font-family: "VT323", monospace;
    font-size: 1.4rem;
    color: #fdf6e3;
    max-width: 50ch;
    margin: 0 auto 24px;
}
.cta-mini { font-size: 0.78rem; color: #c9b88a; margin-top: 14px; }

@media (min-width: 768px) {
    .cta-banner { padding: 80px 24px; min-height: 520px; }
    .cta-banner-inner {
        grid-template-columns: 1fr 1.2fr;
        text-align: left;
        gap: 48px;
    }
    .cta-content { text-align: left; }
    .cta-subtitle { margin-left: 0; margin-right: 0; }
    .cta-mascot img { max-width: 420px; }
}

/* ============================================
   FAQ ACCORDION - details/summary, no JS needed
   ============================================ */
.faq-section { max-width: 920px; margin: 0 auto; }
.faq-heading { text-align: center; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
    background: var(--muted);
    border: 3px solid var(--primary);
    border-bottom: none;
    overflow: hidden;
}
.faq-item:first-child { border-radius: 4px 4px 0 0; }
.faq-item:last-child { border-bottom: 3px solid var(--primary); border-radius: 0 0 4px 4px; }
.faq-item[open] {
    background: #fff;
    border-left: 6px solid var(--primary);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-family: "VT323", monospace;
    font-size: 1.4rem;
    color: #2b1810;
    line-height: 1.2;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(245,181,10,0.18); }

.faq-toggle {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: var(--primary);
    border: 2px solid #1a1208;
    color: #1a1208;
    font-family: "Press Start 2P", monospace;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    transition: transform .2s;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }

.faq-answer { padding: 0 20px 20px; }
.faq-answer p { font-size: 1rem; line-height: 1.65; color: #2b1810; margin: 0; max-width: none; }

/* Pixel dotted divider between items */
.faq-item + .faq-item { border-top: 2px dashed rgba(245,181,10,0.4); }

/* ============================================
   PAYMENT METHOD ROW - trust signal
   ============================================ */
.payment-row {
    background: #1a1208;
    border: 3px solid var(--primary);
    box-shadow: inset 0 0 0 2px #1a1208, inset 0 0 0 5px var(--primary);
    border-radius: 4px;
    padding: 24px 16px;
    text-align: center;
}
.payment-row-title {
    font-family: "VT323", monospace;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.payment-row-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.payment-cell {
    width: 80px; height: 80px;
    background: rgba(253,246,227,0.06);
    border: 2px solid rgba(245,181,10,0.5);
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
    border-radius: 4px;
    transition: box-shadow .2s, border-color .2s;
}
.payment-cell:hover {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(245,181,10,0.5);
}
.payment-cell img {
    max-width: 100%; max-height: 100%;
    filter: brightness(0) invert(1) sepia(1) hue-rotate(8deg) saturate(2);
    object-fit: contain;
}
.payment-text {
    font-family: "VT323", monospace;
    font-size: 1.05rem;
    color: var(--primary);
    text-align: center;
    word-break: break-word;
    padding: 4px;
    line-height: 1.1;
}

/* ============================================
   INFO STEP - numbered process blocks
   ============================================ */
.info-steps { max-width: 1200px; margin: 0 auto; }
.info-steps-heading { text-align: center; margin-bottom: 32px; }
.info-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    counter-reset: step;
}
@media (min-width: 768px) { .info-steps-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .info-steps-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }

.info-step {
    background: var(--muted);
    border: 3px solid var(--primary);
    box-shadow: 4px 4px 0 #1a1208;
    padding: 24px 20px;
    border-radius: 4px;
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.info-step-num {
    width: 56px; height: 56px;
    background: var(--primary);
    color: #1a1208;
    border: 3px solid #1a1208;
    border-radius: 50%;
    font-family: "Press Start 2P", monospace;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 3px 3px 0 #d62828;
}
.info-step-title {
    font-family: "VT323", monospace;
    font-size: 1.5rem;
    color: #1a1208;
    margin: 0;
}
.info-step-text {
    font-size: 0.95rem;
    color: #2b1810;
    margin: 0;
    line-height: 1.55;
}

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
.tldr-box {
    background: var(--muted);
    border-left: 6px solid var(--primary);
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    padding: 20px 24px;
    margin: 0 0 32px;
    border-radius: 0 4px 4px 0;
}
.tldr-box .tldr-label {
    display: inline-block;
    font-family: "Press Start 2P", monospace;
    font-size: 0.75rem;
    color: #a51d1d;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    font-weight: 700;
}
.tldr-box p:last-child { margin-bottom: 0; }

.callout {
    background: #fff8e1;
    border: 2px dashed var(--primary);
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 4px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.callout-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--primary);
    color: #1a1208;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: "Press Start 2P", monospace;
    font-size: 0.9rem;
}
.callout p:last-child { margin-bottom: 0; }

.stat-highlight {
    text-align: center;
    padding: 24px 16px;
    background: #1a1208;
    border: 3px solid var(--primary);
    border-radius: 4px;
}
.stat-highlight .num {
    display: block;
    font-family: "VT323", monospace;
    font-size: 3rem;
    color: var(--primary-bright);
    line-height: 1;
    text-shadow: 0 0 16px rgba(255,214,10,0.6);
    margin-bottom: 8px;
}
.stat-highlight .lab { color: #fdf6e3; font-size: 1rem; }
.stat-highlight .src { display: block; color: #c9b88a; font-size: 0.78rem; margin-top: 6px; }

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

.pull-quote {
    border-left: 6px solid var(--accent);
    padding: 16px 24px;
    margin: 32px 0;
    font-family: "VT323", monospace;
    font-size: 1.6rem;
    color: #1a1208;
    line-height: 1.4;
    background: rgba(245,181,10,0.12);
    border-radius: 0 4px 4px 0;
}
.pull-quote cite {
    display: block;
    font-family: "Rubik", sans-serif;
    font-size: 0.95rem;
    color: var(--muted-foreground);
    font-style: normal;
    margin-top: 12px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.feature-card {
    background: #fff;
    border: 3px solid var(--primary);
    box-shadow: 4px 4px 0 #1a1208;
    padding: 24px 20px;
    border-radius: 4px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    min-width: 0;
}
.feature-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #1a1208; }
.feature-card .icon {
    width: 64px; height: 64px;
    margin: 0 auto 14px;
    background: var(--primary);
    color: #1a1208;
    border: 3px solid #1a1208;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: "Press Start 2P", monospace;
    font-size: 1.2rem;
    box-shadow: 3px 3px 0 #d62828;
}
.feature-card h3 {
    font-family: "VT323", monospace;
    font-size: 1.4rem;
    color: #1a1208;
    margin: 0 0 8px;
}
.feature-card p { font-size: 0.95rem; color: #2b1810; margin: 0; }

/* Comparison / data tables */
.data-table-wrapper {
    border: 3px solid var(--primary);
    border-radius: 4px;
    overflow-x: auto;
    background: #fff;
    box-shadow: 4px 4px 0 #1a1208;
}
.data-table-wrapper:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}
.data-table { width: 100%; min-width: 560px; border-collapse: collapse; color: #1a1208; }
.data-table th, .data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px dashed rgba(245,181,10,0.5);
    font-size: 0.95rem;
    color: #1a1208;
}
.data-table thead th {
    background: #1a1208;
    color: var(--primary);
    font-family: "VT323", monospace;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 3px solid var(--primary);
}
.data-table tbody tr:nth-child(even) { background: var(--muted); }
.data-table .recommended { background: rgba(245,181,10,0.18) !important; font-weight: 700; }
.data-table .recommended td:first-child::before {
    content: "★ ";
    color: var(--accent);
    font-weight: 900;
}

/* Trust badge row alt (light bg) */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
    background: var(--muted);
    border-top: 3px dashed var(--primary);
    border-bottom: 3px dashed var(--primary);
}
.trust-badge {
    font-family: "VT323", monospace;
    font-size: 1.1rem;
    color: #1a1208;
    background: #fff;
    border: 2px solid var(--primary);
    padding: 8px 14px;
    border-radius: 4px;
}

/* SEO text block */
.seo-text {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 4px;
}
.seo-text h2 { margin-top: 40px; font-size: clamp(1.5rem, 3vw, 2rem); }
.seo-text h3 { margin-top: 28px; font-size: clamp(1.15rem, 2vw, 1.4rem); }
.seo-text p { font-size: 1rem; }
.seo-text ul, .seo-text ol { margin: 0 0 1.25rem; }

/* Crazy ribbon (decorative section header) */
.ribbon {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: "Press Start 2P", monospace;
    font-size: 0.7rem;
    padding: 8px 14px;
    border: 2px solid #1a1208;
    box-shadow: 3px 3px 0 #1a1208;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0e0905;
    color: #fdf6e3;
    border-top: 4px solid var(--primary);
    padding: 48px 16px 16px;
    margin-top: 48px;
}
.site-footer::before {
    content: "";
    display: block;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--primary) 0 12px, #d62828 12px 24px);
    margin: -48px -16px 32px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; } }

.footer-col { min-width: 0; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-tagline { font-size: 0.95rem; color: #c9b88a; max-width: 36ch; }

.age-badge {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 56px; height: 56px;
    background: var(--accent);
    color: #fff;
    border: 3px solid #fdf6e3;
    border-radius: 50%;
    font-family: "Press Start 2P", monospace;
    font-size: 0.85rem;
    margin-top: 12px;
    box-shadow: 3px 3px 0 var(--primary);
}

.footer-title {
    font-family: "Press Start 2P", monospace;
    font-size: 0.8rem;
    color: var(--primary);
    margin: 0 0 14px;
    letter-spacing: 0.06em;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: #fdf6e3;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px dashed transparent;
    transition: color .2s, border-color .2s;
}
.footer-links a:hover { color: var(--primary); border-color: var(--primary); }

.trust-line {
    display: inline-block;
    color: #fdf6e3;
    font-size: 0.92rem;
    padding-left: 18px;
    position: relative;
}
.trust-line::before {
    content: "▣";
    position: absolute; left: 0; top: 0;
    color: var(--primary);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pay-chip {
    display: inline-block;
    background: rgba(245,181,10,0.12);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: "VT323", monospace;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 3px;
}

.responsible {
    margin-top: 14px;
    font-size: 0.85rem;
    color: #c9b88a;
    line-height: 1.5;
}
.responsible strong { color: var(--primary); }

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px dashed rgba(245,181,10,0.3);
    text-align: center;
    font-size: 0.85rem;
    color: #c9b88a;
}
.footer-bottom p { margin: 0; max-width: none; }

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

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 16px; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

/* Pixel divider */
.pixel-divider {
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--primary) 0 8px, transparent 8px 16px);
    margin: 32px 0;
    border: none;
}

/* Two-column content layout */
.split-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) {
    .split-2 { grid-template-columns: 1fr 1fr; gap: 48px; }
    .split-2.reverse > :first-child { order: 2; }
}
.split-image img {
    width: 100%;
    border: 4px solid var(--primary);
    border-radius: 4px;
    box-shadow: 6px 6px 0 #d62828;
    image-rendering: pixelated;
}