/* ============================================================
   MILLIONER CASINO - Design System
   Dark-Luxury: tiefes Onyx, Champagner-Gold, Playfair Display
   + Manrope. Ein festes Dark-Theme (kein Umschalter).
   Mobile-first: Basis 360px, Breakpoints 768 / 1024 / 1280px.
   ============================================================ */

/* ============================================
   DESIGN TOKENS
   Einzelnes Dark-Theme - :root ist die einzige Quelle.
   ============================================ */
:root {
    --background: #0E0B08;
    --foreground: #F5EFE4;
    --card: #1A1510;
    --card-foreground: #F5EFE4;
    --popover: #1A1510;
    --popover-foreground: #F5EFE4;
    --primary: #D4AF37;
    --primary-foreground: #14100B;
    --secondary: #241D15;
    --secondary-foreground: #F5EFE4;
    --muted: #3A2F22;
    --muted-foreground: #B8AE9C;
    --accent: #F0D98C;
    --accent-foreground: #14100B;
    --destructive: #C0392B;
    --destructive-foreground: #F5EFE4;
    --border: #3A2F22;
    --input: #14100B;
    --ring: #D4AF37;

    /* Typografie */
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

    /* Radien & Linien */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --gold-line: rgba(212, 175, 55, 0.55);
    --gold-line-soft: rgba(212, 175, 55, 0.28);
    --bronze-line: rgba(58, 47, 34, 0.9);

    /* Schatten & Glow */
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
    --glow-gold: 0 8px 32px rgba(212, 175, 55, 0.22);

    /* Layout */
    --container: 1200px;
    --container-narrow: 800px;
    --header-h: 64px;

    /* Bewegung */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --dur: 300ms;
}

/* ============================================
   RESET & OVERFLOW-SAFETY (Safety Net)
   ============================================ */
*,
*::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: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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 {
    margin-top: 0;
}

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

/* ============================================
   TYPOGRAFIE
   Playfair Display für Headlines, Manrope für Fließtext.
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: var(--space-2);
}

h1 {
    font-size: clamp(30px, calc(5vw + 12px), 52px);
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-size: clamp(26px, calc(3.4vw + 10px), 38px);
    font-weight: 600;
}

h3 {
    font-size: clamp(20px, calc(2vw + 8px), 26px);
    font-weight: 500;
}

h4 {
    font-size: 19px;
    font-weight: 500;
}

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

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

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

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

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

/* Goldverlauf für Jackpot-Zahlen, Bonusbeträge, "Millioner" */
.gold-text {
    background: linear-gradient(100deg, var(--accent) 0%, var(--primary) 45%, #B8912B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================
   UTILITIES - Container, Sections, Labels
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

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

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

/* Uppercase Gold-Label über Überschriften */
.eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.section-title {
    margin-bottom: var(--space-3);
}

.section-intro {
    color: var(--muted-foreground);
    margin-bottom: var(--space-4);
}

/* Haarlinien-Trenner in Gold */
.gold-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
    margin-block: var(--space-5);
}

/* Screenreader-Text */
.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;
    top: -48px;
    left: 16px;
    z-index: 1100;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: top var(--dur) var(--ease-out);
}

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

/* ============================================
   BUTTONS - Gold (primär) & Ghost (sekundär)
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
        background var(--dur) var(--ease-out), color var(--dur) var(--ease-out),
        border-color var(--dur) var(--ease-out);
}

.btn--gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 55%, #B8912B 100%);
    color: var(--primary-foreground);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28);
}

.btn--gold:hover {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}

/* Langsamer diagonaler Schimmer über dem Gold-Button */
.btn--gold::after {
    content: "";
    position: absolute;
    inset: -40% -80%;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
    transform: translateX(-70%);
    animation: shimmer 3.8s ease-in-out infinite;
    pointer-events: none;
}

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

.btn--ghost:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary);
    color: var(--accent);
    transform: translateY(-2px);
}

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

.btn--lg {
    min-height: 56px;
    padding: 15px 40px;
    font-size: 18px;
}

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

/* ============================================
   HEADER - Sticky Dark-Glass mit Gold-Logo
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--gold-line-soft);
    transition: box-shadow var(--dur) var(--ease-out);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6);
}

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    z-index: 1001;
}

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

.site-brand__text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(100deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.site-brand__suffix {
    font-weight: 400;
    margin-left: 6px;
    color: var(--muted-foreground);
    -webkit-text-fill-color: var(--muted-foreground);
}

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

.header-login,
.header-cta {
    display: none;
}

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

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

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

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

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

/* ============================================
   MOBILE NAV DRAWER (< 1024px)
   Solide, deckende Fläche, von rechts eingeschoben.
   ============================================ */
.primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-3) 20px var(--space-5);
    background: var(--background);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--dur) var(--ease-out), visibility var(--dur);
}

.primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
}

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

.nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding-inline: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--bronze-line);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta--bottom {
    margin-top: auto;
}

/* ============================================
   HERO - Full-Bleed mit radialem Gold-Glow
   ============================================ */
.hero {
    position: relative;
    padding-block: var(--space-6);
    background:
        radial-gradient(ellipse 60% 55% at 72% 28%, rgba(212, 175, 55, 0.16), transparent 70%),
        var(--background);
}

.hero__grid {
    display: grid;
    gap: var(--space-4);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
}

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

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--space-2);
}

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

.hero__media {
    position: relative;
    z-index: 1;
}

.hero__media img {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* Live-Badge mit rubinrotem Punkt */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--foreground);
}

.live-badge::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--destructive);
    box-shadow: 0 0 10px rgba(192, 57, 43, 0.9);
}

/* ============================================
   FRAMES & DEKORATION
   Doppelter Gold-Haarlinienrahmen (Luxus-Einladungskarte)
   ============================================ */
.frame-gold {
    position: relative;
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-md);
}

.frame-gold::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid var(--gold-line-soft);
    border-radius: calc(var(--radius-md) - 5px);
    pointer-events: none;
}

/* Weicher radialer Gold-Glow hinter Key-Visuals */
.glow-gold {
    position: relative;
}

.glow-gold::before {
    content: "";
    position: absolute;
    inset: -12% -8%;
    background: radial-gradient(ellipse at 50% 45%, rgba(212, 175, 55, 0.18), transparent 65%);
    pointer-events: none;
}

/* ============================================
   CARDS & GRIDS
   .card - Basis-Panel (Warm Charcoal, Bronze-Border)
   ============================================ */
.card {
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    box-shadow: var(--shadow-card);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--glow-gold), var(--shadow-card);
}

.card--gold-border {
    border-color: var(--gold-line-soft);
}

.card__title {
    margin-bottom: 8px;
}

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

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

/* Spiel-Miniaturkarten (3:4 Hochformat) */
.game-card {
    min-width: 0;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--gold-line-soft);
    border-radius: var(--radius-md);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

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

.game-card__label {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-gold);
}

/* Anbieter-Kacheln */
.provider-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    padding: var(--space-2);
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.provider-tile img {
    display: block;
    width: 100%;
    max-width: 140px;
    height: auto;
    margin-inline: auto;
}

.provider-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-gold);
}

/* Preis-Chips (Bonus Crab Tiers) */
.prize-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--gold-line-soft);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(212, 175, 55, 0.06);
}

/* ============================================
   STAT HIGHLIGHT - Gold-Gradient-Zahlen
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
    padding-block: var(--space-2);
}

.stat-item {
    min-width: 0;
    text-align: center;
    padding: var(--space-2);
    border-top: 1px solid var(--gold-line-soft);
}

.stat-value {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(40px, calc(4vw + 20px), 56px);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    background: linear-gradient(100deg, var(--accent), var(--primary) 55%, #B8912B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    display: block;
    margin-top: 6px;
    font-weight: 600;
    color: var(--foreground);
}

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

/* Ticker-Band zwischen Hero und Content */
.ticker {
    border-top: 1px solid var(--gold-line-soft);
    border-bottom: 1px solid var(--gold-line-soft);
    background: var(--secondary);
}

/* ============================================
   STEPS - Bonus Crab Ablauf (5 Schritte)
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
}

.step {
    position: relative;
    min-width: 0;
    padding: var(--space-3);
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius-md);
    text-align: center;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.08);
}

.step__title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

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

/* ============================================
   VIP LEITER - aufsteigende Stufen
   ============================================ */
.vip-tiers {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
}

.vip-tier {
    min-width: 0;
    padding: var(--space-3);
    background: var(--secondary);
    border: 1px solid var(--gold-line-soft);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.vip-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-gold);
}

.vip-tier__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

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

/* ============================================
   PILLS & TRUST BADGES
   Zahlungsmethoden-Pills und Sicherheits-Siegel
   ============================================ */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pill {
    padding: 8px 18px;
    border: 1px solid var(--bronze-line);
    border-radius: 999px;
    background: var(--card);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.trust-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    color: var(--foreground);
}

/* ============================================
   FAQ ACCORDION - natives <details>, Gold-Chevron
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    padding: 20px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--foreground);
    min-height: 48px;
}

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

.faq-q:hover {
    color: var(--accent);
}

.faq-chevron {
    flex-shrink: 0;
    display: inline-flex;
    color: var(--primary);
    transition: transform var(--dur) var(--ease-out);
}

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

.faq-a {
    padding: 0 20px 20px;
}

.faq-a p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-item[open] .faq-a {
    animation: faqSlide 300ms var(--ease-out);
}

/* ============================================
   CTA BANNER - Full-Bleed Conversion-Band
   ============================================ */
.cta-banner {
    position: relative;
    padding-block: var(--section-gap);
    background:
        radial-gradient(ellipse 55% 70% at 50% 50%, rgba(212, 175, 55, 0.14), transparent 70%),
        var(--background);
}

.cta-banner__inner {
    max-width: 760px;
    margin-inline: auto;
    padding: 40px 28px;
    background: rgba(26, 21, 16, 0.7);
    text-align: center;
}

.cta-banner__title {
    font-size: clamp(28px, calc(3.4vw + 10px), 40px);
}

.cta-banner__text {
    color: var(--muted-foreground);
    margin-inline: auto;
    margin-bottom: var(--space-3);
}

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

/* ============================================
   ENGAGEMENT-BLÖCKe
   Summary-Box, Callout, Pull-Quote, Tabellen, Testimonials
   ============================================ */
.summary-box {
    padding: var(--space-3);
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
}

.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-bottom: 10px;
}

.summary-box ul {
    margin: 0;
    color: var(--muted-foreground);
}

.callout {
    display: flex;
    gap: var(--space-2);
    align-items: flex-start;
    padding: var(--space-3);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--gold-line-soft);
    border-radius: var(--radius-md);
    margin-block: var(--space-3);
}

.callout--warning {
    background: rgba(192, 57, 43, 0.08);
    border-color: rgba(192, 57, 43, 0.45);
}

.callout__icon {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.callout--warning .callout__icon {
    color: var(--destructive);
}

.callout p {
    margin-bottom: 0;
    color: var(--foreground);
}

.pull-quote {
    margin-block: var(--space-4);
    padding-left: var(--space-3);
    border-left: 3px solid var(--primary);
    font-family: var(--font-display);
    font-size: clamp(20px, calc(2vw + 10px), 26px);
    font-style: italic;
    line-height: 1.45;
    color: var(--foreground);
}

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

/* Vergleichstabelle - empfohlene Spalte hervorgehoben */
.table-wrapper {
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-block: var(--space-3);
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.table-wrapper th,
.table-wrapper td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--bronze-line);
}

.table-wrapper th {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--secondary);
}

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

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

.table-wrapper .is-recommended {
    background: rgba(212, 175, 55, 0.08);
    color: var(--foreground);
}

/* Testimonials / Social Proof */
.proof-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: minmax(0, 1fr);
}

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

.proof-card__quote {
    font-style: italic;
    color: var(--foreground);
}

.proof-card__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

/* ============================================
   FOOTER - 4 Spalten, Zahlungs-Pills, 18+
   ============================================ */
.site-footer {
    background: #0A0806;
    border-top: 1px solid var(--gold-line-soft);
    padding-block: var(--space-5) var(--space-3);
}

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

.footer-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

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

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

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

.footer-links {
    list-style: none;
    margin: 0 0 var(--space-2);
    padding: 0;
}

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

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

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

.pill-list--footer {
    margin-bottom: var(--space-2);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px var(--space-3);
    justify-content: space-between;
    margin-top: var(--space-4);
    padding-top: var(--space-2);
    border-top: 1px solid var(--bronze-line);
}

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

/* ============================================
   STICKY MOBILE CTA BAR (< 1024px)
   ============================================ */
.mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--primary) 55%, #B8912B);
    color: var(--primary-foreground);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.03em;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
}

.mobile-cta-bar:hover {
    color: var(--primary-foreground);
}

@media (max-width: 1023px) {
    body {
        padding-bottom: 56px;
    }
}

/* ============================================
   ANIMATIONEN - Reveal, Float, Shimmer
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

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

/* Gestaffelte Reveals (80ms Versatz) */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

/* Sanftes Schweben (Bonus Crab Klaue, 4s Loop) */
.animate-float {
    animation: floatBob 4s ease-in-out infinite;
}

@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes shimmer {
    0% { transform: translateX(-70%); }
    55%, 100% { transform: translateX(70%); }
}

@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BREAKPOINT 640px - 2-Spalten-Grids
   ============================================ */
@media (min-width: 640px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .stat-item {
        border-top: 0;
    }

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

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

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

/* ============================================
   BREAKPOINT 768px - Tablet
   ============================================ */
@media (min-width: 768px) {
    .card,
    .step {
        padding: var(--space-4);
    }

    .faq-q {
        padding: 24px 32px;
    }

    .faq-a {
        padding: 0 32px 24px;
    }

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

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

/* ============================================
   BREAKPOINT 1024px - Desktop: Inline-Navigation
   ============================================ */
@media (min-width: 1024px) {
    :root {
        --header-h: 80px;
    }

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

    .container {
        padding-inline: 32px;
    }

    /* Header: Dark-Glass-Blur nur auf Desktop
       (Backdrop-Filter würde den fixed Mobile-Drawer einschließen) */
    .site-header {
        background: rgba(14, 11, 8, 0.82);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .menu-toggle {
        display: none;
    }

    .header-login,
    .header-cta {
        display: inline-flex;
    }

    .primary-nav {
        position: static;
        transform: none;
        visibility: visible;
        overflow: visible;
        flex-direction: row;
        align-items: center;
        padding: 0;
        background: transparent;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }

    .nav-link {
        min-height: 44px;
        padding: 8px 18px;
        font-size: 16px;
        border-bottom: 0;
        border-radius: var(--radius-sm);
    }

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

    .nav-cta {
        display: none;
    }

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

    .hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: var(--space-5);
    }

    .hero__media img {
        transform: translateY(12px);
    }

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

    .stat-item + .stat-item {
        border-left: 1px solid var(--gold-line-soft);
    }

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

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

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

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

    /* Verbindungslinie zwischen Steps auf Desktop */
    .step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50px;
        left: calc(100% - 12px);
        width: 24px;
        border-top: 2px dashed var(--gold-line-soft);
    }

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

    /* Aufsteigende Leiter-Optik */
    .vip-tier:nth-child(2) { transform: translateY(-8px); }
    .vip-tier:nth-child(3) { transform: translateY(-16px); }
    .vip-tier:nth-child(4) { transform: translateY(-24px); }
    .vip-tier:nth-child(5) { transform: translateY(-32px); }

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

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

    .cta-banner__inner {
        padding: 56px 64px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
        gap: var(--space-5);
    }

    .mobile-cta-bar {
        display: none;
    }
}

/* ============================================
   BREAKPOINT 1280px - Maximalbreite
   ============================================ */
@media (min-width: 1280px) {
    .container,
    .header-inner {
        max-width: var(--container);
    }
}

/* ============================================
   REDUCED MOTION - Animationen deaktivieren
   ============================================ */
@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;
    }

    .btn--gold::after {
        animation: none;
    }
}

/* ============================================
   HOMEPAGE - Seitenspezifische Layouts
   Split-Grids, Game-Teaser, Medien-Trio, Pay-Badges
   ============================================ */
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    align-items: center;
}

.panel-pad {
    padding: clamp(24px, 4vw, 48px);
}

.text-center {
    text-align: center;
}

.text-center .eyebrow,
.text-center .section-title {
    margin-inline: auto;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.media-trio,
.media-duo {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-block: var(--space-3);
}

.media-trio img,
.media-duo img {
    display: block;
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--gold-line-soft);
    box-shadow: var(--shadow-card);
}

.media-duo > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.crab-visual {
    max-width: 420px;
    margin-inline: auto;
}

.pay-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-3);
}

.pay-badges img {
    width: 92px;
    height: auto;
    opacity: 0.85;
    transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.pay-badges img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

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

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

    .pay-badges img {
        width: 110px;
    }
}

@media (min-width: 768px) {
    .split-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: var(--space-5);
    }

    .game-grid {
        gap: 20px;
    }
}

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

/* ============================================
   BONUS CRAB (bonus-crab.html) - Icons & Checkliste
   ============================================ */
.step__icon {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.prize-icon {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 14px;
}

.check-list {
    list-style: none;
    margin: 0 0 var(--space-2);
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--muted-foreground);
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 800;
}

.check-list strong {
    color: var(--foreground);
}

.xl-visual {
    max-width: 340px;
    margin-inline: auto;
}

.pvp-media img {
    display: block;
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--gold-line-soft);
    box-shadow: var(--shadow-card);
}

/* ============================================
   SEITENÜBERSICHT (sitemap.html) - schlichte Liste
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
}

.sitemap-item {
    padding-block: var(--space-3);
    border-bottom: 1px solid var(--gold-line-soft);
}

.sitemap-item:first-child {
    padding-top: 0;
}

.sitemap-item:last-child {
    border-bottom: 0;
}

.sitemap-item__title {
    font-size: clamp(20px, calc(1.6vw + 10px), 24px);
    margin-bottom: 8px;
}

.sitemap-item__title a {
    color: var(--primary);
}

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

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

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