/*
 * MILLIONER CASINO - Design System
 * Dunkles Luxury-Theme (einzelnes festes Theme, kein Umschalter)
 * Palette: Espresso-Charcoal, Metallic-Gold, Burgundy-Wine, Champagne
 * Fonts: Playfair Display (Headlines) + Manrope (Body)
 */

:root {
    --background: #14100d;
    --foreground: #f5ead6;
    --card: #2a1518;
    --card-foreground: #f5ead6;
    --popover: #1c1410;
    --popover-foreground: #f5ead6;
    --primary: #d4af37;
    --primary-foreground: #1a1206;
    --secondary: #3d1a20;
    --secondary-foreground: #f2e3c9;
    --muted: #2b241d;
    --muted-foreground: #bfa98a;
    --accent: #e8cf9f;
    --accent-foreground: #241a0a;
    --destructive: #ef4444;
    --destructive-foreground: #1a0505;
    --border: #4a3d2e;
    --input: #221a13;
    --ring: #d4af37;

    /* Design-Token: Typografie */
    --font-head: "Playfair Display", "Georgia", serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;

    /* Design-Token: Abstände & Geometrie */
    --section-gap: 56px;
    --container-max: 1200px;
    --container-wide-max: 1280px;
    --measure: 720px;
    --radius-card: 14px;
    --header-h: 72px;

    /* Design-Token: Gold-Verläufe */
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f0d98a 45%, #d4af37 100%);
    --gold-gradient-hover: linear-gradient(135deg, #e8c355 0%, #fbe9ad 45%, #e8c355 100%);
    --gold-text-gradient: linear-gradient(120deg, #d4af37 0%, #f5e3ae 50%, #d4af37 100%);
    --hairline-gradient: linear-gradient(90deg, rgba(212,175,55,0), rgba(212,175,55,.65), rgba(212,175,55,0));
}

/* ============================================
   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);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--foreground);
    margin: 0 0 0.6em;
}

h1 { font-size: 30px; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }
h4 { font-size: 18px; font-weight: 500; }

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

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

p {
    margin: 0 0 24px;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 3px;
    border-radius: 4px;
}

ul, ol {
    padding-left: 1.4em;
}

strong {
    color: var(--accent);
}

/* Hilfsklassen */
.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;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 1100;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: top 250ms ease-out;
}

.skip-link:focus {
    top: 12px;
    color: var(--primary-foreground);
}

/* Gold-Verlaufstext (Zahlen, Akzentwörter) */
.text-gradient {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}

/* Kleine Gold-Kickerzeile über Überschriften */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

/* ============================================
   LAYOUT - Container, Sektionen, Spalten
   .container      - max 1200px Textzonen
   .container-wide - max 1280px Header/Footer
   .section        - vertikaler Rhythmus (56/96px)
   .measure        - 720px Lesebreite für SEO-Texte
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 20px;
}

.container-wide {
    width: 100%;
    max-width: var(--container-wide-max);
    margin-inline: auto;
    padding-inline: 20px;
}

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

@media (min-width: 1024px) {
    :root { --section-gap: 96px; }
}

.section--tint {
    background: linear-gradient(180deg, rgba(61,26,32,.25), rgba(61,26,32,0));
}

.section-head {
    max-width: var(--measure);
    margin-bottom: 40px;
}

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

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 17px;
    margin-bottom: 0;
}

.measure {
    max-width: var(--measure);
}

/* Zwei-Spalten-Layout (Text + Bild), stapelt auf Mobile */
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 64px;
    }
}

.two-col__media img {
    display: block;
    width: 100%;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}

/* Diamant-Trennornament zwischen Sektionen */
.diamond-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 8px auto 0;
    max-width: 320px;
}

.diamond-sep::before,
.diamond-sep::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--hairline-gradient);
}

.diamond-sep span {
    width: 9px;
    height: 9px;
    background: var(--primary);
    transform: rotate(45deg);
    display: block;
}

/* ============================================
   BUTTONS - Gold-Pill (Primary) & Ghost (Login)
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-out, color 250ms ease-out,
                border-color 250ms ease-out, transform 250ms ease-out,
                box-shadow 250ms ease-out;
}

.btn--gold {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.22);
}

.btn--gold:hover {
    background: var(--gold-gradient-hover);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.35);
}

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

.btn--ghost:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent);
    border-color: var(--accent);
}

.btn--sm {
    min-height: 44px;
    padding: 10px 22px;
    font-size: 15px;
}

.btn--xl {
    min-height: 56px;
    padding: 16px 44px;
    font-size: 18px;
}

/* Auf kleinen Screens streckt sich der Primary-CTA über die volle Breite */
@media (max-width: 640px) {
    .btn--xl,
    .cta-banner__btn,
    .hero__actions .btn {
        width: 100%;
    }
}

/* ============================================
   HEADER - Sticky, Blur-Backdrop (nur Desktop),
   Brand, Inline-Nav, Login/Registrieren
   Inline-Nav + Header-CTAs erst ab 1024px,
   darunter kompaktes Hamburger-Layout
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 16, 13, 0.92);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

@media (min-width: 768px) {
    .site-header {
        background: rgba(20, 16, 13, 0.78);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: var(--header-h);
    max-width: var(--container-wide-max);
    margin-inline: auto;
    padding-inline: 20px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.site-brand__accent {
    color: var(--primary);
}

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

/* Mobile/Tablet: Nav standardmäßig versteckt (Drawer via .is-open) */
.primary-nav {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions__login,
.header-actions__cta {
    display: none;
}

/* Hamburger-Toggle */
.mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

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

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

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

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

/* Mobile Drawer (geöffnet) */
.primary-nav.is-open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    overflow-y: auto;
    padding: 24px 20px 48px;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.primary-nav.is-open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav.is-open .nav-list li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.primary-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 4px;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
}

.primary-nav.is-open .nav-actions--drawer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.nav-actions--drawer {
    display: none;
}

/* Desktop: Inline-Navigation erst ab 1024px, damit
   Brand + Nav + CTAs garantiert in den Viewport passen */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav {
        display: flex;
        align-items: center;
        gap: 24px;
        min-width: 0;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 8px 14px;
        font-size: 15px;
        font-weight: 600;
        color: var(--foreground);
        border-radius: 8px;
        white-space: nowrap;
    }

    .nav-link:hover {
        color: var(--primary);
        background: rgba(212, 175, 55, 0.08);
    }

    .header-actions__login,
    .header-actions__cta {
        display: inline-flex;
    }
}

/* ============================================
   HERO - Full-bleed Banner mit Hintergrundbild,
   Overlay, oversized Playfair-Headline
   ============================================ */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(88vh, 760px);
    padding: 72px 0;
    isolation: isolate;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(20,16,13,0.94) 0%, rgba(20,16,13,0.72) 45%, rgba(20,16,13,0.35) 100%),
        linear-gradient(0deg, rgba(20,16,13,0.95) 0%, rgba(20,16,13,0) 40%);
}

.hero__content {
    position: relative;
    max-width: 640px;
}

.hero__title {
    margin-bottom: 20px;
}

.hero__lead {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 520px;
}

@media (min-width: 768px) {
    .hero__lead { font-size: 19px; }
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

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

/* Gold schimmernde Key-Figure im Hero (z. B. 500€ + 100 FS) */
.hero__figure {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(2.4rem, calc(5vw + 1rem), 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 12px;
}

/* ============================================
   CARDS - .info-card (Burgundy + Gold-Hairline)
   Grids: .card-grid (1/2/3), --2, --4 Varianten
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

@media (min-width: 1024px) {
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.info-card {
    min-width: 0;
    background: var(--card);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius-card);
    padding: 20px;
    transition: transform 250ms ease-out, border-color 250ms ease-out,
                box-shadow 250ms ease-out;
}

@media (min-width: 768px) {
    .info-card { padding: 32px; }
}

.info-card:hover {
    transform: scale(1.03);
    border-color: rgba(232, 207, 159, 0.75);
    box-shadow: 0 14px 40px rgba(232, 207, 159, 0.12);
}

.info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 12px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-head);
}

.info-card__media {
    margin: -20px -20px 20px;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .info-card__media { margin: -32px -32px 24px; }
}

.info-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 8 / 5;
    object-fit: cover;
}

.info-card__title {
    font-size: 20px;
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    .info-card__title { font-size: 22px; }
}

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

.info-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
}

.info-card__link:hover {
    color: var(--accent);
}

/* Hervorgehobene Diamond-Karte: Gold-Verlaufsrahmen */
.info-card--diamond {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card), var(--card)) padding-box,
        var(--gold-gradient) border-box;
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.18);
}

.info-card--diamond:hover {
    border-color: transparent;
    box-shadow: 0 16px 44px rgba(232, 207, 159, 0.22);
}

/* 5er-Stufenzeile (VIP): Scroll-Reihe bis Desktop, dann 5 Spalten */
.tier-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.tier-scroll > .info-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
}

@media (min-width: 1024px) {
    .tier-scroll {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow: visible;
        padding-bottom: 0;
    }

    .tier-scroll > .info-card {
        flex: none;
    }
}

/* ============================================
   STATS - Große Gold-Zahlen mit Labels
   (stat_highlight Makro)
   ============================================ */

.stats-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 32px 0;
}

@media (min-width: 640px) {
    .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .stats-row {
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 1fr);
        grid-template-columns: none;
        gap: 0;
    }

    .stats-row .stat + .stat {
        border-left: 1px solid rgba(212, 175, 55, 0.28);
    }
}

.stat {
    text-align: center;
    padding: 8px 16px;
}

.stat__number {
    display: block;
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 42px rgba(232, 207, 159, 0.18);
}

.stat__label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

/* ============================================
   FAQ ACCORDION - details/summary, Gold-Chevron,
   nur ein Element offen (via JS)
   ============================================ */

.faq-accordion {
    max-width: var(--measure);
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.24);
}

.faq-item:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.24);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 20px 8px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    transition: color 250ms ease-out;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question:hover {
    color: var(--primary);
}

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 250ms ease-out;
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    background: rgba(61, 26, 32, 0.35);
    border-radius: 0 0 10px 10px;
    padding: 4px 20px 8px;
    margin-bottom: 8px;
}

.faq-item__answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin: 12px 0;
}

/* ============================================
   CTA BANNER - Burgundy-Band, Goldrahmen mit
   Diamant-Ornamenten, großer Gold-Pill-Button
   ============================================ */

.cta-banner {
    padding: var(--section-gap) 20px;
}

.cta-banner__frame {
    position: relative;
    max-width: var(--container-max);
    margin-inline: auto;
    background:
        radial-gradient(ellipse 60% 55% at 50% 32%, rgba(232, 207, 159, 0.14), rgba(232, 207, 159, 0) 70%),
        linear-gradient(160deg, #3d1a20 0%, #2a1518 100%);
    border: 1px solid transparent;
    border-radius: 20px;
    background-clip: padding-box;
    padding: 56px 24px;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.35);
}

@media (min-width: 768px) {
    .cta-banner__frame { padding: 80px 48px; }
}

.cta-banner__diamond {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    transform: rotate(45deg);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}

.cta-banner__diamond--tl { top: -6px; left: 32px; }
.cta-banner__diamond--tr { top: -6px; right: 32px; }
.cta-banner__diamond--bl { bottom: -6px; left: 32px; }
.cta-banner__diamond--br { bottom: -6px; right: 32px; }

.cta-banner__inner {
    text-align: center;
    max-width: 680px;
}

.cta-banner__title {
    font-size: 30px;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .cta-banner__title { font-size: 40px; }
}

.cta-banner__text {
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.cta-banner__btn {
    margin-bottom: 16px;
}

.cta-banner__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   ENGAGEMENT PATTERNS
   .summary-box  - TL;DR/Kernaussagen-Box
   .callout      - Hinweis/Tipp-Box mit Goldkante
   .pull-quote   - großes Zitat mit Quellenangabe
   .steps        - nummerierte Schritt-Timeline
   ============================================ */

.summary-box {
    max-width: var(--measure);
    background: linear-gradient(160deg, rgba(61,26,32,0.6), rgba(42,21,24,0.6));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-card);
    padding: 24px;
    margin-bottom: 32px;
}

.summary-box__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 12px;
}

.summary-box p:last-child,
.summary-box ul:last-child {
    margin-bottom: 0;
}

.callout {
    max-width: var(--measure);
    background: var(--card);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    padding: 20px 24px;
    margin: 32px 0;
}

.callout__title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 8px;
}

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

/* Callout-Variante: große Kennzahl (z. B. 35x Umsatz) */
.callout--figure {
    text-align: center;
    border-left: none;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-card);
}

.callout__figure {
    display: block;
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 10px;
}

.pull-quote {
    max-width: var(--measure);
    margin: 40px 0;
    padding: 8px 0 8px 28px;
    border-left: 3px solid var(--primary);
    font-family: var(--font-head);
    font-size: 24px;
    font-style: italic;
    line-height: 1.4;
    color: var(--accent);
}

.pull-quote cite {
    display: block;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--muted-foreground);
}

.steps {
    list-style: none;
    counter-reset: step;
    margin: 32px 0;
    padding: 0;
    max-width: var(--measure);
}

.steps li {
    counter-increment: step;
    position: relative;
    padding: 0 0 32px 64px;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
}

.steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 48px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, rgba(212,175,55,.6), rgba(212,175,55,.12));
}

.steps__title {
    display: block;
    font-weight: 800;
    font-size: 17px;
    color: var(--foreground);
    margin-bottom: 6px;
    padding-top: 8px;
}

.steps p {
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 16px;
}

/* Gold-Punktliste (Strategie-Tipps etc.) */
.gold-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    max-width: var(--measure);
}

.gold-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
}

.gold-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--primary);
    transform: rotate(45deg);
}

/* ============================================
   TABELLEN - Dark mit Gold-Hairlines
   .table-wrapper scrollt horizontal auf Mobile
   ============================================ */

.table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    margin: 32px 0;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius-card);
}

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

.table-wrapper thead th {
    background: var(--secondary);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.table-wrapper tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    color: var(--foreground);
}

.table-wrapper tbody tr:last-child td {
    border-bottom: none;
}

.table-wrapper tbody tr:nth-child(even) {
    background: rgba(61, 26, 32, 0.25);
}

/* Hervorgehobene "empfohlene" Spalte in Vergleichstabellen */
.table-wrapper .is-highlighted {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   TRUST & PAYMENT STRIPS - muted Chips mit
   Gold-Hairline (Zahlungsmethoden, Provider)
   ============================================ */

.chip-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-card);
    background: rgba(43, 36, 29, 0.4);
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--muted);
    color: var(--muted-foreground);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    filter: grayscale(0.4);
}

/* ============================================
   WINNERS - horizontale Scroll-Reihe (Scroll-Snap)
   für aktuelle Gewinner (kein CSS-Marquee).
   Vier Karten passen auf Desktop komplett in den
   Container; darunter scrollt die Reihe horizontal.
   ============================================ */

.winners-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.winner-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius-card);
    padding: 18px 20px;
}

.winner-card__name {
    display: block;
    font-weight: 800;
    color: var(--foreground);
    font-size: 16px;
}

.winner-card__game {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 4px 0 10px;
}

.winner-card__amount {
    display: block;
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================
   SONSTIGE PAGE-BAUSTEINE
   .feature-image      - freistehendes Bild (transp. PNGs)
   .badge-row          - Trust-Badges nebeneinander
   .age-badge          - 18+ Plakette
   .claw-bob           - sanfte Schwebanimation
   ============================================ */

.feature-image {
    display: block;
    max-width: 420px;
    margin-inline: auto;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    color: #f0b9b9;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
}

.claw-bob {
    animation: claw-bob 3.2s ease-in-out infinite;
}

@keyframes claw-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ============================================
   SITEMAP - vertikale Seitenliste mit
   Gold-Hairlines zwischen den Einträgen
   ============================================ */

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

.sitemap-list__item {
    padding: 28px 4px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.sitemap-list__item:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.sitemap-list__title {
    font-size: 20px;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .sitemap-list__title { font-size: 22px; }
}

.sitemap-list__title a {
    color: var(--primary);
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sitemap-list__title a:hover {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.sitemap-list__text {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 0;
}

/* ============================================
   FOOTER - 4 Spalten (Links, Zahlungen, Lizenz,
   18+), stapelt auf Mobile
   ============================================ */

.site-footer {
    margin-top: var(--section-gap);
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    background: #100c0a;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-block: 56px 32px;
}

@media (min-width: 768px) {
    .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; }
}

.site-brand--footer {
    margin-bottom: 16px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 18px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 15px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
}

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

.footer-text {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.footer-text--small {
    font-size: 14px;
}

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

.pay-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    filter: grayscale(0.5);
}

.footer-badge-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0 0;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    padding-block: 20px;
}

.footer-bottom__inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .footer-bottom__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================================
   SCROLL-ANIMATIONEN - .animate-on-scroll wird
   via JS (IntersectionObserver) mit .is-visible
   eingeblendet. Stagger via nth-child in Grids.
   ============================================ */

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

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

.card-grid .animate-on-scroll:nth-child(2),
.tier-scroll .animate-on-scroll:nth-child(2) { transition-delay: 90ms; }
.card-grid .animate-on-scroll:nth-child(3),
.tier-scroll .animate-on-scroll:nth-child(3) { transition-delay: 180ms; }
.card-grid .animate-on-scroll:nth-child(4),
.tier-scroll .animate-on-scroll:nth-child(4) { transition-delay: 270ms; }
.card-grid .animate-on-scroll:nth-child(5),
.tier-scroll .animate-on-scroll:nth-child(5) { transition-delay: 360ms; }

/* ============================================
   REDUCED MOTION - alle Animationen deaktiviert,
   Inhalte sofort sichtbar
   ============================================ */

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

    .claw-bob {
        animation: 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;
}
