/*
 * LIZARO CASINO - Design System
 * Cinematic Wild West Neon Aesthetic · Single Dark Theme
 * Fonts: Bebas Neue (Display) · Barlow (Body) · Rye (Logo/Badges only)
 */

/* ============================================
   DESIGN TOKENS
   Feste Dunkelheit - kein Theme-Umschalter.
   ============================================ */

:root {
    --background: #171008;
    --foreground: #f5e9d5;
    --card: #221709;
    --card-foreground: #f5e9d5;
    --popover: #1b120a;
    --popover-foreground: #f5e9d5;
    --primary: #ff8c1a;
    --primary-foreground: #1a0f05;
    --secondary: #ffc94d;
    --secondary-foreground: #1a0f05;
    --muted: #2b1e10;
    --muted-foreground: #b8a888;
    --accent: #4ade60;
    --accent-foreground: #10220f;
    --destructive: #cc6355;
    --destructive-foreground: #fff1ec;
    --border: #8a642c;
    --input: #241a0d;
    --ring: #ff8c1a;

    --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
    --font-body: "Barlow", "Segoe UI", sans-serif;
    --font-logo: "Rye", serif;

    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 56px;
    --space-7: 96px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --header-h: 72px;
    --content-max: 1200px;
    --text-max: 680px;

    --gold-grad: linear-gradient(180deg, #ffe9a8 0%, #ffc94d 45%, #d99a1f 100%);
    --neon-line: linear-gradient(90deg, #ff8c1a 0%, #ffc94d 50%, #4ade60 100%);
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */

*,
*::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;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

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

p, li, td, th {
    overflow-wrap: break-word;
}

input, textarea, select {
    max-width: 100%;
}

section {
    overflow: clip;
}

/* ============================================
   BASE - Reset, Body, Typografie
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--background);
    background-image:
        radial-gradient(1200px 600px at 85% -10%, rgba(255, 140, 26, 0.07), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(74, 222, 96, 0.04), transparent 60%);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-width: 320px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--foreground);
    margin: 0 0 var(--space-2);
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

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

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 200ms ease-out;
}

a:hover {
    color: var(--primary);
}

ul, ol {
    margin: 0 0 var(--space-3);
    padding-left: var(--space-3);
}

strong {
    color: var(--secondary);
    font-weight: 600;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: var(--space-1) var(--space-2);
    z-index: 2000;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    left: 0;
    color: var(--primary-foreground);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   LAYOUT - Container, Sections, Textspalten
   ============================================ */

.container {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: var(--space-2);
}

.section {
    padding-block: var(--space-6);
}

.section--tight {
    padding-block: var(--space-5);
}

.text-col {
    max-width: var(--text-max);
}

.section__head {
    max-width: var(--text-max);
    margin-bottom: var(--space-5);
}

.section__head--center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-1);
}

.lead {
    font-size: 19px;
    color: var(--foreground);
}

.muted {
    color: var(--muted-foreground);
}

.fine {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   NEON-UNDERLINE - Leuchtröhren-Unterstrich
   Signatur-Element unter Headlines.
   ============================================ */

.neon-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.neon-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    border-radius: 4px;
    background: var(--neon-line);
    box-shadow: 0 0 12px rgba(255, 140, 26, 0.55), 0 0 22px rgba(74, 222, 96, 0.3);
}

.neon-underline--green::after {
    background: linear-gradient(90deg, #4ade60 0%, #ffc94d 100%);
    box-shadow: 0 0 12px rgba(74, 222, 96, 0.55), 0 0 22px rgba(255, 201, 77, 0.3);
}

/* ============================================
   STAT-GOLD - Große Zahlen mit Goldverlauf
   ============================================ */

.stat-gold {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1;
    letter-spacing: 0.02em;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 14px rgba(255, 201, 77, 0.35));
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.stat-block {
    text-align: center;
    padding: var(--space-3);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.stat-block__label {
    display: block;
    margin-top: var(--space-1);
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   BUTTONS - Orange Neon CTA, Ghost, Dark
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 var(--space-3);
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, background-color 250ms ease-out, color 250ms ease-out;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(180deg, #ffa03c 0%, var(--primary) 100%);
    color: var(--primary-foreground);
    box-shadow: 0 0 18px rgba(255, 140, 26, 0.45), 0 4px 0 #a85405;
    animation: halo-pulse 2.6s ease-in-out infinite;
}

.btn--primary:hover {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255, 140, 26, 0.7), 0 6px 0 #a85405;
}

.btn--primary:active {
    transform: translateY(1px);
    box-shadow: 0 0 14px rgba(255, 140, 26, 0.5), 0 2px 0 #a85405;
}

.btn--ghost {
    background: transparent;
    color: var(--secondary);
    border-color: var(--border);
}

.btn--ghost:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(255, 140, 26, 0.3);
}

.btn--dark {
    background: var(--primary-foreground);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(26, 15, 5, 0.5);
    animation: halo-pulse-dark 2.6s ease-in-out infinite;
}

.btn--dark:hover {
    color: #ffe9a8;
    transform: translateY(-2px);
}

.btn--sm {
    min-height: 44px;
    font-size: 17px;
    padding: 0 var(--space-2);
}

.btn--lg {
    min-height: 56px;
    font-size: 24px;
    padding: 0 var(--space-4);
}

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

@keyframes halo-pulse {
    0%, 100% { box-shadow: 0 0 18px rgba(255, 140, 26, 0.45), 0 4px 0 #a85405; }
    50% { box-shadow: 0 0 30px rgba(255, 140, 26, 0.65), 0 4px 0 #a85405; }
}

@keyframes halo-pulse-dark {
    0%, 100% { box-shadow: 0 0 14px rgba(26, 15, 5, 0.45); }
    50% { box-shadow: 0 0 26px rgba(255, 233, 168, 0.35); }
}

/* ============================================
   HEADER - Sticky Saloon-Bar mit Navigation
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(23, 16, 8, 0.97);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.site-header__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: var(--space-2);
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.site-brand__mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-logo);
    font-size: 26px;
    color: var(--secondary);
    text-shadow: 0 0 14px rgba(255, 201, 77, 0.4);
    line-height: 1;
    padding-top: 4px;
}

.site-brand:hover .site-brand__text {
    color: var(--primary);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header__login,
.site-header__cta {
    display: none;
}

/* --- Hamburger Toggle --- */

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: transform 250ms ease-out, opacity 200ms ease-out;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Mobile Drawer (Saloon-Tür) --- */

.site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    background-image:
        linear-gradient(rgba(255, 201, 77, 0.05), rgba(255, 201, 77, 0)),
        repeating-linear-gradient(90deg, rgba(138, 100, 44, 0.08) 0 2px, transparent 2px 80px);
    border-top: 3px solid var(--secondary);
    overflow-y: auto;
    padding: var(--space-4) var(--space-3);
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-4);
}

.site-nav.is-open {
    display: flex;
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
}

.site-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 var(--space-2);
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--foreground);
    border-bottom: 1px solid rgba(138, 100, 44, 0.4);
    text-decoration: none;
}

.site-nav__link:hover {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(255, 140, 26, 0.5);
}

.site-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

/* ============================================
   FOOTER - Linkspalten, Zahlungen, Lizenz
   ============================================ */

.site-footer {
    background: #100a04;
    border-top: 2px solid var(--border);
    margin-top: var(--space-7);
}

.site-footer__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--space-6) var(--space-2) var(--space-3);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.site-footer__heading {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: var(--space-2);
}

.site-footer__tagline,
.site-footer__legal {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.site-footer__links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: var(--muted-foreground);
    font-size: 16px;
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--primary);
}

.site-footer__trust {
    list-style: none;
    margin: var(--space-2) 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.trust-badge__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    color: var(--destructive);
    font-weight: 700;
    font-size: 13px;
}

.trust-badge__icon--shield {
    border-color: var(--accent);
    color: var(--accent);
    border-radius: var(--radius-sm);
}

.site-footer__bar {
    margin-top: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid rgba(138, 100, 44, 0.4);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.site-footer__copy,
.site-footer__notice {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 2.5px solid var(--destructive);
    border-radius: 50%;
    color: #e87a68;
    font-weight: 700;
    font-size: 14px;
}

/* ============================================
   PAY-CHIPS - Zahlungsmethoden-Chips
   ============================================ */

.pay-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 var(--space-2);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================
   LEATHER CARD - Basis für gebrauchte Lederflächen
   ============================================ */

.leather-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    min-width: 0;
}

.leather-card--framed {
    border: 2px solid var(--secondary);
    outline: 1px solid rgba(255, 201, 77, 0.35);
    outline-offset: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BONUS CARD - Wanted-Poster Aktionskarte
   Doppel-Goldrahmen, Nagelpunkte, Rotation,
   Hover-Lift mit Goldglühen.
   ============================================ */

.bonus-card {
    position: relative;
    background:
        repeating-linear-gradient(45deg, rgba(255, 233, 168, 0.02) 0 3px, transparent 3px 7px),
        var(--card);
    border: 2px solid var(--secondary);
    outline: 1px solid rgba(255, 201, 77, 0.35);
    outline-offset: 5px;
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    margin: var(--space-1);
    transform: rotate(-1.2deg);
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
    min-width: 0;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.bonus-card--flip {
    transform: rotate(1.2deg);
}

.bonus-card:hover {
    transform: rotate(0deg) translateY(-4px) scale(1.02);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 26px rgba(255, 201, 77, 0.35);
}

.bonus-card__nails,
.bonus-card__nails::before,
.bonus-card__nails::after {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffe9a8, #8a642c 70%);
    content: "";
}

.bonus-card__nails {
    top: 9px;
    left: 9px;
}

.bonus-card__nails::before {
    left: calc(100% + 2px);
    right: auto;
    position: absolute;
    top: 0;
}

.bonus-card__nails::after {
    display: none;
}

.bonus-card__media {
    margin: calc(var(--space-3) * -1) calc(var(--space-3) * -1) var(--space-2);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.bonus-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.bonus-card__eyebrow {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.bonus-card__title {
    font-size: 26px;
    margin-bottom: var(--space-1);
}

.bonus-card__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: var(--space-1) 0 var(--space-2);
}

.bonus-card__stat-label {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.08em;
    color: var(--foreground);
    text-transform: uppercase;
}

.bonus-card__terms {
    list-style: none;
    margin: 0 0 var(--space-3);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-card__terms li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    color: var(--foreground);
}

.bonus-card__terms li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-size: 14px;
}

.bonus-card__cta {
    width: 100%;
}

.bonus-card__fine {
    margin-top: var(--space-2);
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.bonus-card--featured {
    padding: var(--space-4);
}

/* --- Karten-Raster: 1 Spalte mobil, 2 ab 768px, 3-4 Desktop --- */

.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
}

.card-grid--center {
    max-width: 560px;
    margin-inline: auto;
}

/* ============================================
   GAME CARDS - Spiele-Lobby Vorschau
   ============================================ */

.game-card {
    position: relative;
    background: var(--card);
    border: 2px solid var(--secondary);
    outline: 1px solid rgba(255, 201, 77, 0.3);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transform: rotate(-0.8deg);
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
    min-width: 0;
}

.game-card:nth-child(2n) {
    transform: rotate(0.8deg);
}

.game-card:hover {
    transform: rotate(0deg) translateY(-4px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 201, 77, 0.3);
}

.game-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.game-card__body {
    padding: var(--space-2) var(--space-3) var(--space-3);
}

.game-card__title {
    font-size: 24px;
    margin-bottom: 6px;
}

.game-card__text {
    font-size: 16px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   VIP TRAIL - 5-Stufen Wanted-Poster Stepper
   ============================================ */

.vip-trail {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
}

.vip-badge {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    text-align: center;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
}

.vip-badge:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 201, 77, 0.25);
}

.vip-badge--top {
    border-color: var(--accent);
    box-shadow: 0 0 22px rgba(74, 222, 96, 0.3);
}

.vip-badge__level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: var(--space-1);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--secondary);
    background: radial-gradient(circle, rgba(255, 201, 77, 0.12), transparent 70%);
}

.vip-badge--top .vip-badge__level {
    border-color: var(--accent);
    color: var(--accent);
    background: radial-gradient(circle, rgba(74, 222, 96, 0.14), transparent 70%);
}

.vip-badge__name {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 4px;
}

.vip-badge__perk {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   WIN TICKER - Gewinn-Streifen (scrollbar, kein Loop)
   ============================================ */

.win-ticker {
    background: #100a04;
    border-block: 2px solid var(--border);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.win-ticker::-webkit-scrollbar {
    display: none;
}

.win-ticker__track {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-2);
    width: max-content;
    max-width: none;
}

.win-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px var(--space-2);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 14px;
    color: var(--muted-foreground);
    white-space: nowrap;
    scroll-snap-align: start;
}

.win-ticker__amount {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--secondary);
}

/* ============================================
   HERO - Full-Bleed Bühne
   ============================================ */

.hero {
    position: relative;
    padding-block: var(--space-6);
    overflow: clip;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 16, 8, 0.55) 0%, rgba(23, 16, 8, 0.82) 70%, var(--background) 100%);
}

.hero__inner {
    position: relative;
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: var(--space-2);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    align-items: center;
}

.hero__content {
    max-width: var(--text-max);
}

.hero__title {
    font-size: 34px;
    margin-bottom: var(--space-2);
}

.hero__text {
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: var(--space-3);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.hero__mascot {
    justify-self: center;
    max-width: 320px;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.6));
}

/* ============================================
   SPLIT LAYOUT - Text + Bild zweispaltig
   ============================================ */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    align-items: center;
}

.split__media img {
    display: block;
    width: 100%;
    border-radius: var(--radius-md);
    border: 2px solid var(--secondary);
    outline: 1px solid rgba(255, 201, 77, 0.3);
    outline-offset: 4px;
}

/* ============================================
   LIVE INDICATOR - Pulsierendes Grün
   ============================================ */

.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
}

.live-dot::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(74, 222, 96, 0.8);
    animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.8); }
}

/* ============================================
   FEATURE CHIPS - Markt-/Icon-Chips
   ============================================ */

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 var(--space-3);
    padding: 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 var(--space-2);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--foreground);
}

.chip--accent {
    border-color: rgba(74, 222, 96, 0.55);
    color: var(--accent);
}

/* ============================================
   FAQ - Native Details-Akkordeon, Gold-Chevron
   ============================================ */

.faq {
    max-width: var(--text-max);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.faq__item {
    background: var(--card);
    border-bottom: 2px solid var(--secondary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    min-height: 48px;
    padding: var(--space-2);
    cursor: pointer;
    list-style: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question-text {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--foreground);
    line-height: 1.3;
}

.faq__chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--secondary);
    transition: transform 300ms ease-out;
}

.faq__item[open] .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 var(--space-2) var(--space-2);
}

.faq__answer p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    margin: 0;
}

/* ============================================
   CTA BANNER - Full-Bleed Orange Abschluss
   ============================================ */

.cta-banner {
    position: relative;
    padding-block: var(--space-6);
    background: linear-gradient(160deg, #ffa03c 0%, var(--primary) 45%, #e06a00 100%);
    overflow: clip;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 300px at 20% 0%, rgba(255, 233, 168, 0.35), transparent 60%),
        repeating-linear-gradient(-45deg, rgba(26, 15, 5, 0.06) 0 6px, transparent 6px 18px);
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    max-width: var(--text-max);
    margin-inline: auto;
    padding-inline: var(--space-2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.cta-banner__mascot {
    width: 140px;
    filter: drop-shadow(0 8px 20px rgba(26, 15, 5, 0.45));
}

.cta-banner__headline {
    font-size: 34px;
    color: var(--primary-foreground);
    letter-spacing: 0.06em;
    margin: 0;
}

.cta-banner__text {
    font-size: 18px;
    color: #3a2408;
    max-width: 520px;
    margin: 0;
}

.cta-banner__btn {
    width: 100%;
    min-height: 56px;
    font-size: 24px;
    margin-top: var(--space-1);
}

.cta-banner__micro {
    font-size: 14px;
    color: #4a2f0d;
    margin: 0;
}

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR, Callout, Pull-Quote, Tabellen
   ============================================ */

.tldr-box {
    max-width: var(--text-max);
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    margin-bottom: var(--space-4);
}

.tldr-box__title {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: var(--space-1);
}

.tldr-box ul {
    margin: 0;
    padding-left: var(--space-3);
}

.tldr-box li {
    margin-bottom: 6px;
}

.callout {
    max-width: var(--text-max);
    background: var(--muted);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    margin-block: var(--space-4);
}

.callout--warning {
    border-left-color: var(--primary);
}

.callout__title {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--accent);
}

.callout--warning .callout__title {
    color: var(--primary);
}

.pull-quote {
    max-width: var(--text-max);
    margin-block: var(--space-4);
    padding: var(--space-3) var(--space-3) var(--space-3) var(--space-5);
    position: relative;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--foreground);
}

.pull-quote::before {
    content: "\201E";
    position: absolute;
    left: 0;
    top: -18px;
    font-family: var(--font-display);
    font-style: normal;
    font-size: 96px;
    line-height: 1;
    color: var(--accent);
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-1);
    font-style: normal;
    font-size: 15px;
    color: var(--muted-foreground);
}

.table-wrapper {
    max-width: var(--text-max);
    margin-block: var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 480px;
}

th, td {
    padding: 12px var(--space-2);
    text-align: left;
    border-bottom: 1px solid rgba(138, 100, 44, 0.4);
}

thead th {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--card);
}

tbody tr:last-child td {
    border-bottom: 0;
}

td.col--highlight,
th.col--highlight {
    background: rgba(255, 140, 26, 0.08);
    color: var(--foreground);
}

/* ============================================
   TRUST STRIP - Lizenz- & Sicherheitsleiste
   ============================================ */

.trust-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
}

.trust-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-item__title {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--foreground);
    margin: 0;
}

.trust-item__text {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   SITEMAP LIST - Seitenübersicht
   ============================================ */

.breadcrumb {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-2);
}

.breadcrumb a {
    color: var(--muted-foreground);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span[aria-current] {
    color: var(--foreground);
}

.page-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--text-max);
}

.page-list__item {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--secondary);
}

.page-list__link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
}

.page-list__link:hover {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(255, 140, 26, 0.45);
}

.page-list__desc {
    font-size: 17px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   CHECKLIST - Bonus-Bewertungscheckliste
   ============================================ */

.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.checklist li {
    position: relative;
    padding-left: 36px;
    line-height: 1.5;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

/* ============================================
   SCROLL ANIMATIONS - Fade-Up & Tilt
   JS fügt .is-visible hinzu.
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.animate-on-scroll--tilt {
    transform: translateY(24px) rotate(-6deg);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.card-grid > .animate-on-scroll:nth-child(2) { transition-delay: 60ms; }
.card-grid > .animate-on-scroll:nth-child(3) { transition-delay: 120ms; }
.card-grid > .animate-on-scroll:nth-child(4) { transition-delay: 180ms; }
.card-grid > .animate-on-scroll:nth-child(5) { transition-delay: 240ms; }
.card-grid > .animate-on-scroll:nth-child(6) { transition-delay: 300ms; }

/* ============================================
   BREAKPOINT 768px - Tablet
   ============================================ */

@media (min-width: 768px) {
    h1 { font-size: 44px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }

    .hero__title { font-size: 48px; }
    .cta-banner__headline { font-size: 44px; }

    .hero__actions {
        flex-direction: row;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid--center {
        grid-template-columns: minmax(0, 1fr);
    }

    .card-grid--2x2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vip-trail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split--reverse .split__media {
        order: 2;
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-banner__btn {
        width: auto;
        padding: 0 var(--space-5);
    }
}

/* ============================================
   BREAKPOINT 1024px - Desktop, volle Navigation
   ============================================ */

@media (min-width: 1024px) {
    h1 { font-size: 52px; }
    h2 { font-size: 38px; }
    h3 { font-size: 26px; }

    .section { padding-block: var(--space-7); }
    .hero__title { font-size: 56px; }
    .cta-banner__headline { font-size: 52px; }
    .cta-banner { padding-block: var(--space-7); }

    .container { padding-inline: var(--space-3); }

    .nav-toggle { display: none; }
    .site-header__login,
    .site-header__cta { display: inline-flex; }

    .site-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--space-4);
        background: none;
        border: 0;
        padding: 0;
        overflow: visible;
        flex: 1;
    }

    .site-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-3);
    }

    .site-nav__link {
        min-height: 48px;
        font-size: 20px;
        border-bottom: 0;
        padding: 0 var(--space-1);
    }

    .site-nav__actions { display: none; }

    .hero__inner {
        grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    }

    .hero__mascot {
        max-width: 420px;
        justify-self: end;
    }

    .card-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid--4,
    .card-grid--2x2 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card-grid--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .vip-trail {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .trust-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    }

    .site-footer__bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================================
   BREAKPOINT 1280px - Maximalbreite
   ============================================ */

@media (min-width: 1280px) {
    .container,
    .site-header__inner,
    .site-footer__inner,
    .hero__inner {
        padding-inline: var(--space-3);
    }
}

/* ============================================
   REDUCED MOTION - Animationen deaktivieren
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .btn--primary,
    .btn--dark,
    .live-dot::before {
        animation: none;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .bonus-card,
    .game-card,
    .faq__chevron,
    .nav-toggle span {
        transition: none;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
