/* ============================================================
   JACK CASINO - DESIGN SYSTEM
   Crypto-Noir: Midnight Trading Floor × Private Casino Lounge
   Fonts: Space Grotesk (Display/Zahlen) + IBM Plex Sans (Body)
   Festes Dark-Theme, kein Umschalter. Mobile-first.
   ============================================================ */

/* --------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------- */
:root {
    --background: #070B12;
    --foreground: #EAF2FF;
    --card: #0D1422;
    --card-foreground: #EAF2FF;
    --popover: #111A2C;
    --popover-foreground: #EAF2FF;
    --primary: #F5C542;
    --primary-foreground: #071018;
    --secondary: #16223A;
    --secondary-foreground: #EAF2FF;
    --muted: #26324A;
    --muted-foreground: #A9B6CC;
    --accent: #34F5A3;
    --accent-foreground: #071018;
    --info: #39A7FF;
    --destructive: #B91C1C;
    --destructive-foreground: #FEE2E2;
    --border: #26324A;
    --input: #0A111F;
    --ring: #39A7FF;

    /* Typografie */
    --font-display: "Space Grotesk", "Segoe UI", sans-serif;
    --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;

    /* Abstände (8px-Grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --section-gap: 64px;

    /* Radien & Schatten */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-glow-gold: 0 0 24px rgba(245, 197, 66, 0.28);
    --shadow-glow-blue: 0 0 20px rgba(57, 167, 255, 0.22);
    --shadow-glow-green: 0 0 20px rgba(52, 245, 163, 0.20);

    /* Header */
    --header-height: 64px;
}

/* Festes Dark-Theme: .dark identisch zu :root (kein Umschalter) */
.dark {
    --background: #070B12;
    --foreground: #EAF2FF;
    --card: #0D1422;
    --card-foreground: #EAF2FF;
    --popover: #111A2C;
    --popover-foreground: #EAF2FF;
    --primary: #F5C542;
    --primary-foreground: #071018;
    --secondary: #16223A;
    --secondary-foreground: #EAF2FF;
    --muted: #26324A;
    --muted-foreground: #A9B6CC;
    --accent: #34F5A3;
    --accent-foreground: #071018;
    --info: #39A7FF;
    --destructive: #B91C1C;
    --destructive-foreground: #FEE2E2;
    --border: #26324A;
    --input: #0A111F;
    --ring: #39A7FF;
}

/* --------------------------------------------
   2. OVERFLOW-SCHUTZ & RESET
   -------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: clip;
}

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;
}

h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
    margin: 0;
}

ul, ol {
    padding: 0;
    list-style: none;
}

a {
    color: var(--info);
    text-decoration: none;
}

/* --------------------------------------------
   3. TYPOGRAFIE
   H1 30/54 · H2 26/40 · H3 22/30 · Body 16/17
   -------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--foreground);
}

h1 { font-size: 30px; line-height: 1.12; }
h2 { font-size: 26px; line-height: 1.18; font-weight: 650; }
h3 { font-size: 22px; line-height: 1.22; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

.lead {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 68ch;
}

.prose {
    max-width: 760px;
}

.prose p {
    margin-bottom: var(--space-2);
    max-width: 68ch;
}

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

.prose ul, .prose ol {
    margin: 0 0 var(--space-2);
    padding-left: var(--space-3);
    max-width: 68ch;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: var(--space-1); }

.text-muted {
    color: var(--muted-foreground);
    font-size: 14px;
}

.text-accent { color: var(--accent); }
.text-gold { color: var(--primary); }

.num-display {
    font-family: var(--font-display);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    body { font-size: 17px; }
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    h3 { font-size: 26px; }
}

@media (min-width: 1024px) {
    h1 { font-size: 54px; }
    h2 { font-size: 40px; }
    h3 { font-size: 30px; }
}

/* --------------------------------------------
   4. LAYOUT-SHELLS & SECTIONS
   .shell = 1180px Content · .shell--narrow = 760px SEO-Text
   -------------------------------------------- */
.shell {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--space-2);
}

.shell--narrow {
    max-width: 760px;
}

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

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

.section-head {
    max-width: 760px;
    margin-bottom: var(--space-4);
}

.section-head h2 { margin-bottom: var(--space-2); }

@media (min-width: 768px) {
    .shell { padding-inline: var(--space-3); }
}

@media (min-width: 1024px) {
    :root { --section-gap: 96px; --header-height: 72px; }
    .shell { padding-inline: var(--space-4); }
}

/* --------------------------------------------
   5. BUTTONS & LINKS
   Gold = Hauptaktion · Ghost = ruhiger · Outline = sekundär
   -------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    min-height: 48px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out,
                background-color 200ms ease-out, border-color 200ms ease-out;
}

.btn--gold {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn--gold:hover,
.btn--gold:focus-visible {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow-gold);
    color: var(--primary-foreground);
}

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

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--ring);
    color: var(--foreground);
    box-shadow: var(--shadow-glow-blue);
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    background: rgba(52, 245, 163, 0.08);
    color: var(--accent);
    box-shadow: var(--shadow-glow-green);
}

.btn--sm { min-height: 40px; padding: 8px 18px; font-size: 15px; }
.btn--lg { min-height: 54px; padding: 15px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* Inline-SEO-Anker: natürlicher Textlink mit 2px-Neon-Unterstrich */
.prose a:not(.btn),
.text-link {
    color: var(--info);
    text-decoration: underline;
    text-decoration-color: var(--info);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 160ms ease-out, text-decoration-color 160ms ease-out;
}

.prose a:not(.btn):hover,
.text-link:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* --------------------------------------------
   6. HEADER & NAVIGATION
   Sticky, gläsern-dunkel; Burger < 1024px; Drawer fixed opak
   -------------------------------------------- */
.skip-link {
    position: absolute;
    top: -60px;
    left: var(--space-2);
    z-index: 1100;
    padding: 10px 18px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top 160ms ease-out;
}

.skip-link:focus { top: var(--space-1); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    max-width: 1280px;
    margin-inline: auto;
    height: var(--header-height);
    padding-inline: var(--space-2);
}

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

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

.site-brand__accent { color: var(--primary); }
.site-brand__text--footer { font-size: 22px; }

/* Mobile: Nav versteckt, Drawer bei .is-open */
.primary-nav {
    display: none;
}

.primary-nav.is-open {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    padding: var(--space-3) var(--space-2) var(--space-5);
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 var(--space-2);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    transition: background-color 160ms ease-out, color 160ms ease-out;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible,
.primary-nav__link[aria-current="page"] {
    background: var(--secondary);
    color: var(--accent);
}

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border);
}

.header-actions {
    display: none;
    align-items: center;
    gap: var(--space-1);
    margin-left: auto;
}

/* Burger-Button */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 200ms ease-out, opacity 200ms ease-out;
}

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

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

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

@media (min-width: 768px) {
    .header-inner { padding-inline: var(--space-3); }
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(7, 11, 18, 0.86);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .menu-toggle { display: none; }
    .header-actions { display: flex; }
    .primary-nav__actions { display: none; }

    .primary-nav {
        display: block;
        margin-inline: auto;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 2px;
    }

    .primary-nav__link {
        min-height: 44px;
        padding: 0 14px;
        font-size: 15px;
    }
}

@media (min-width: 1280px) {
    .primary-nav__link { padding: 0 18px; font-size: 16px; }
}

/* --------------------------------------------
   7. JACK BEAM - diagonale Neonlinie mit Goldfunke
   Signatur-Element: Hero, CTA-Bänder, Cards, Divider
   -------------------------------------------- */
.jack-beam {
    position: absolute;
    pointer-events: none;
    width: 140%;
    height: 2px;
    left: -20%;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 35%, var(--info) 65%, transparent 100%);
    transform: rotate(-8deg);
    opacity: 0.5;
}

.jack-beam::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 58%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 14px rgba(245, 197, 66, 0.85);
}

.jack-beam--hero { top: 34%; }
.jack-beam--cta { top: 22%; opacity: 0.35; }
.jack-beam--gold {
    background: linear-gradient(90deg, transparent 0%, var(--primary) 40%, var(--accent) 70%, transparent 100%);
}

/* --------------------------------------------
   8. HERO
   Full-Bleed, Modell + Headline, stapelt mobil
   -------------------------------------------- */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: var(--space-6);
    background:
        radial-gradient(900px 480px at 85% 12%, rgba(57, 167, 255, 0.14), transparent 60%),
        radial-gradient(700px 420px at 8% 88%, rgba(52, 245, 163, 0.10), transparent 60%),
        var(--background);
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.hero__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.hero__content { max-width: 640px; }
.hero__content h1 { margin-bottom: var(--space-2); }
.hero__content .lead { margin-bottom: var(--space-3); }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.hero__note {
    font-size: 14px;
    color: var(--muted-foreground);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-2);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

@media (min-width: 1024px) {
    .hero { padding-top: calc(var(--header-height) + 24px); }

    .hero__inner {
        flex-direction: row;
        align-items: center;
        gap: var(--space-6);
    }

    .hero__inner--reverse { flex-direction: row-reverse; }
    .hero__content { flex: 1 1 52%; }
    .hero__media { flex: 1 1 48%; }

    .hero__media img { aspect-ratio: 5 / 4; }
}

/* Live-Puls-Punkt für Live-Badges */
.live-pulse {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(52, 245, 163, 0.6);
    animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 245, 163, 0.55); }
    70% { box-shadow: 0 0 0 9px rgba(52, 245, 163, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 245, 163, 0); }
}

/* --------------------------------------------
   9. CARDS & GRIDS
   Basiskarte + responsive Grid-Utilities
   -------------------------------------------- */
.card {
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    transition: transform 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
}

.card--hover:hover {
    transform: translateY(-4px);
    border-color: var(--ring);
    box-shadow: var(--shadow-glow-blue);
}

.card--gold { border-color: rgba(245, 197, 66, 0.45); }
.card--green { border-color: rgba(52, 245, 163, 0.4); }

.card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    margin-bottom: var(--space-1);
}

.card__text {
    color: var(--muted-foreground);
    font-size: 15px;
}

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

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

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

/* Asymmetrischer Split: 60/40 auf Desktop */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 1024px) {
    .split { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); }
    .split--reverse { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
}

/* --------------------------------------------
   10. STAT BLOCK (Komponente stat_block)
   Tabulare Zahlen, Blockchain-Grid-Textur, Count-up
   -------------------------------------------- */
.stat-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2);
}

.stat-card {
    position: relative;
    min-width: 0;
    padding: var(--space-3);
    background:
        linear-gradient(rgba(57, 167, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 167, 255, 0.035) 1px, transparent 1px),
        var(--card);
    background-size: 28px 28px, 28px 28px, auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 200ms ease-out, border-color 200ms ease-out;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--ring);
}

.stat-card__number {
    font-family: var(--font-display);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-card__number--gold { color: var(--primary); }
.stat-card__number--green { color: var(--accent); }
.stat-card__number--blue { color: var(--info); }

.stat-card__label {
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
}

.stat-card__caption {
    font-size: 14px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat-card__number { font-size: 36px; }
}

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

/* --------------------------------------------
   11. FAQ-ACCORDION (Komponente faq_accordion)
   Native details/summary, Neon-Plus, aktive Akzentkante
   -------------------------------------------- */
.faq {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    max-width: 760px;
}

.faq--rail { max-width: none; }

.faq__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 200ms ease-out;
}

.faq__item[open] {
    border-left-color: var(--info);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    min-height: 56px;
    padding: var(--space-2) var(--space-3);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    list-style: none;
}

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

.faq__icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--info);
    border-radius: 2px;
    transition: transform 200ms ease-out;
}

.faq__icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
    padding: 0 var(--space-3) var(--space-3);
    color: var(--foreground);
    font-size: 16px;
    max-width: 68ch;
}

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

/* --------------------------------------------
   12. CTA-BAND (Komponente cta_banner)
   Full-Bleed, Jack-Beam, Gold-Button, 18+ Microcopy
   -------------------------------------------- */
.cta-band {
    position: relative;
    padding-block: var(--space-6);
    background:
        radial-gradient(800px 360px at 50% 0%, rgba(245, 197, 66, 0.09), transparent 65%),
        var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.cta-band__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.cta-band__headline {
    font-size: 28px;
    max-width: 700px;
}

.cta-band__subline {
    color: var(--muted-foreground);
    max-width: 560px;
}

.cta-band__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-1);
}

.cta-band__actions .btn { width: 100%; max-width: 340px; }

.cta-band__login {
    color: var(--muted-foreground);
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.cta-band__login:hover { color: var(--info); }

.cta-band__note {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 520px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .cta-band { padding-block: 88px; }
    .cta-band__headline { font-size: 38px; }
    .cta-band__actions { flex-direction: row; }
    .cta-band__actions .btn { width: auto; }
}

/* --------------------------------------------
   13. ENGAGEMENT-PATTERNS
   TL;DR, Callouts, Stat-Highlight, Pull-Quote
   -------------------------------------------- */

/* TL;DR / Key-Takeaways-Box */
.tldr-box {
    background: var(--popover);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    margin-bottom: var(--space-4);
}

.tldr-box__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-1);
}

.tldr-box ul {
    padding-left: var(--space-3);
    list-style: disc;
    color: var(--foreground);
}

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

/* Callout / Highlight-Box (Tipp, Warnung, Info) */
.callout {
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--info);
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    margin-block: var(--space-3);
}

.callout--gold { border-left-color: var(--primary); }
.callout--green { border-left-color: var(--accent); }
.callout--warning { border-left-color: #D9A03B; background: rgba(217, 160, 59, 0.06); }
.callout--danger { border-left-color: var(--destructive); background: rgba(185, 28, 28, 0.07); }

.callout__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.callout p { color: var(--muted-foreground); font-size: 15px; }
.callout p:last-child { margin-bottom: 0; }

/* Stat-Highlight: große Zahl mit Label und Quelle */
.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-3);
    background: var(--card);
    border: 1px solid rgba(245, 197, 66, 0.4);
    border-radius: var(--radius-md);
    margin-block: var(--space-3);
    max-width: 420px;
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-size: 44px;
    line-height: 1;
    color: var(--primary);
}

.stat-highlight__label { font-weight: 600; }
.stat-highlight__source { font-size: 14px; color: var(--muted-foreground); }

/* Pull-Quote mit Attribution */
.pull-quote {
    margin-block: var(--space-4);
    padding: var(--space-3) var(--space-4);
    border-left: 4px solid var(--primary);
    background: var(--card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-2);
    font-style: normal;
    font-size: 14px;
    color: var(--info);
}

/* --------------------------------------------
   14. CRO-PATTERNS
   Trust-Badges, Vergleichstabellen, Testimonials
   -------------------------------------------- */

/* Trust-Badges-Reihe (Lizenz, 18+, Provably Fair) */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
}

.trust-badge img { width: 40px; height: 40px; object-fit: contain; }

.trust-badge small {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* Vergleichstabelle: empfohlene Spalte gold getönt */
.compare-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 15px;
}

.compare-table th,
.compare-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.compare-table thead th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    background: var(--popover);
}

.compare-table .compare-col--featured {
    background: rgba(245, 197, 66, 0.07);
    border-left: 1px solid rgba(245, 197, 66, 0.35);
    border-right: 1px solid rgba(245, 197, 66, 0.35);
}

.compare-table thead .compare-col--featured {
    border-top: 2px solid var(--primary);
    color: var(--primary);
}

.check-yes { color: var(--accent); font-weight: 700; }
.check-no { color: var(--muted-foreground); font-weight: 700; }

/* Testimonial-Karten */
.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    transition: transform 200ms ease-out, border-color 200ms ease-out;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--ring);
}

.testimonial-card__media {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.testimonial-card__media img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testimonial-card__handle {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--info);
    font-size: 15px;
}

.testimonial-card__meta {
    font-size: 13px;
    color: var(--muted-foreground);
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.55;
}

.testimonial-card__stat {
    font-family: var(--font-display);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--primary);
    font-size: 18px;
}

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

/* --------------------------------------------
   15. DATENTABELLEN (Zahlungen, VIP-Level, Leaderboard)
   Horizontal scrollbar, sticky erste Spalte, Fokus sichtbar
   -------------------------------------------- */
.table-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    margin-block: var(--space-3);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

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

.data-table thead th {
    font-family: var(--font-display);
    font-weight: 600;
    background: var(--popover);
    position: sticky;
    top: 0;
}

.data-table th:first-child,
.data-table td:first-child {
    position: sticky;
    left: 0;
    background: var(--popover);
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 600;
}

.data-table .num {
    font-family: var(--font-display);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.data-table .num--green { color: var(--accent); }
.data-table .num--gold { color: var(--primary); }

.data-table tr.row--legend td {
    background: rgba(245, 197, 66, 0.08);
}

.data-table tr.row--legend td:first-child {
    background: #1A2338;
    color: var(--primary);
}

.table-wrapper:focus-within {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* --------------------------------------------
   16. STEPPER & SCHRITT-KARTEN
   Nummerierte Abläufe (Bonus-Aktivierung, Einzahlung)
   -------------------------------------------- */
.steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    counter-reset: step;
}

.step-card {
    position: relative;
    display: flex;
    gap: var(--space-2);
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
}

.step-card__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    font-variant-numeric: tabular-nums;
}

.step-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 4px;
}

.step-card__text {
    font-size: 15px;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .steps--row {
        flex-direction: row;
        align-items: stretch;
    }

    .steps--row .step-card {
        flex: 1 1 0;
        flex-direction: column;
    }
}

/* --------------------------------------------
   17. COIN-/LOGO-STRIPS & PROVIDER-GRIDS
   Monochrome Marks mit Neon-Hover
   -------------------------------------------- */
.coin-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-2);
    overflow-x: auto;
    padding-block: var(--space-1);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.coin-strip__item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 88px;
    padding: var(--space-2);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    scroll-snap-align: start;
    transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
}

.coin-strip__item:hover {
    border-color: var(--ring);
    box-shadow: var(--shadow-glow-blue);
}

.coin-strip__item img { width: 44px; height: 44px; object-fit: contain; }

.coin-strip__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
}

.coin-strip__network {
    font-size: 12px;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .coin-strip { flex-wrap: wrap; justify-content: center; overflow-x: visible; scroll-snap-type: none; }
}

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

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

/* Provider-Logo-Strip (Live Casino) */
.provider-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-2);
    overflow-x: auto;
    padding-block: var(--space-1);
}

.provider-strip__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 72px;
    padding: var(--space-2) var(--space-3);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    filter: grayscale(0.6);
    transition: filter 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
}

.provider-strip__item:hover {
    filter: grayscale(0);
    border-color: var(--ring);
    box-shadow: var(--shadow-glow-blue);
}

.provider-strip__item img { max-height: 36px; width: auto; object-fit: contain; }

@media (min-width: 1024px) {
    .provider-strip { flex-wrap: wrap; justify-content: center; overflow-x: visible; }
}

/* --------------------------------------------
   18. SONDERMODULE
   Live-Odds-Card, Wettschein, Leaderboard, Breadcrumbs
   -------------------------------------------- */

/* Live-Quoten / Wettschein-Card */
.odds-card {
    background: var(--popover);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    max-width: 480px;
}

.odds-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-weight: 600;
}

.odds-card__live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
}

.odds-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.odds-row:last-child { border-bottom: 0; }

.odds-row__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--info);
    font-size: 17px;
}

.odds-row__value--gold { color: var(--primary); }

/* Leaderboard-Tabelle: Top 3 mit Akzentkanten */
.leaderboard tr:nth-child(1) td { border-left: 3px solid var(--primary); }
.leaderboard tr:nth-child(2) td { border-left: 3px solid var(--accent); }
.leaderboard tr:nth-child(3) td { border-left: 3px solid var(--info); }

/* Breadcrumbs */
.breadcrumbs {
    padding-block: var(--space-2);
    font-size: 14px;
    color: var(--muted-foreground);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.breadcrumbs li + li::before {
    content: "›";
    margin-right: 6px;
    color: var(--muted-foreground);
}

.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--info); }
.breadcrumbs [aria-current="page"] { color: var(--foreground); }

/* Bild-Plates, die 24px aus der Karte brechen (asymmetrischer Overlap) */
.plate {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.plate img { display: block; width: 100%; object-fit: cover; }

@media (min-width: 1024px) {
    .plate--break { margin: calc(-1 * var(--space-3)); }
}

/* Floating Stat-Chips über dem Beam */
.stat-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 18px;
    background: var(--popover);
    border: 1px solid rgba(245, 197, 66, 0.5);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow-gold);
}

.stat-chip__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-size: 24px;
    color: var(--primary);
    line-height: 1.1;
}

.stat-chip__label {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* --------------------------------------------
   19. FOOTER
   4 Spalten Desktop, Krypto-Marks, Lizenz, 18+
   -------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--border);
    background: var(--popover);
    padding-block: var(--space-5) var(--space-3);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
    margin-bottom: var(--space-2);
}

.footer-text {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-2);
    max-width: 46ch;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--foreground);
    font-size: 15px;
    transition: color 160ms ease-out;
}

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

.footer-badges {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-2);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--destructive-foreground);
    background: rgba(185, 28, 28, 0.25);
}

.license-badge {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.crypto-marks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crypto-mark {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--muted-foreground);
}

.footer-bottom {
    padding-top: var(--space-3);
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
}

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

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}

/* --------------------------------------------
   20. SCROLL-ANIMATIONEN & REDUCED MOTION
   .animate-on-scroll: 18px translateY + Opacity, gestaffelt
   -------------------------------------------- */
.js .animate-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 480ms ease-out, transform 480ms ease-out;
    transition-delay: var(--reveal-delay, 0ms);
}

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

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

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

    .live-pulse { animation: none; }

    .btn, .card, .stat-card, .testimonial-card,
    .coin-strip__item, .provider-strip__item {
        transition: none;
    }
}

/* --------------------------------------------
   21. SPORTWETTEN-SONDERKLASSEN
   Esports-Game-Cards & Promo-Badges
   -------------------------------------------- */
.game-card__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: var(--space-2);
}

.game-card__live {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-2);
    font-size: 14px;
    color: var(--muted-foreground);
}

.promo-badge {
    display: inline-block;
    margin-bottom: var(--space-2);
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(245, 197, 66, 0.12);
    border: 1px solid rgba(245, 197, 66, 0.45);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* --------------------------------------------
   21b. SEITENÜBERSICHT (sitemap.html)
   Schlichte vertikale Liste, 24px Trennung
   -------------------------------------------- */
.sitemap-list {
    display: flex;
    flex-direction: column;
}

.sitemap-entry {
    padding-block: var(--space-3);
    border-bottom: 1px solid var(--border);
}

.sitemap-entry:first-child { padding-top: 0; }
.sitemap-entry:last-child { border-bottom: 0; }

.sitemap-entry__title {
    font-size: 20px;
    margin-bottom: var(--space-1);
}

.sitemap-entry__text {
    color: var(--muted-foreground);
    font-size: 16px;
    max-width: 68ch;
}

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

/* Kleine transparente Badge-Icons in Cards (Zahlungsseite) */
.icon-badge {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.center { text-align: center; }
