/* ============================================================
   ALAWIN CASINO - DESIGN SYSTEM
   Feste Dunkeloptik (kein Theme-Umschalter) im Stil einer
   orientalischen Nacht: tiefes Violett, Gold, Tuerkis-Neon.
   Mobile-first, Breakpoints: 768px / 1024px / 1280px.
   ============================================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Flaechen */
    --bg: #0d0724;
    --bg-elevated: #160e38;
    --surface: #1d1245;
    --surface-2: #261a5c;
    --surface-glass: rgba(38, 24, 84, 0.72);

    /* Linien */
    --border: #3a2a72;
    --border-gold: #6b5424;
    --border-teal: rgba(45, 212, 191, 0.45);

    /* Text */
    --text: #f4efff;
    --text-muted: #cfc4ec;
    --text-soft: #a99ad4;

    /* Akzente */
    --gold: #f2b93b;
    --gold-strong: #ffce5c;
    --gold-soft: #ffe1a1;
    --gold-deep: #c98a12;
    --purple: #a064f6;
    --purple-deep: #7c3aed;
    --teal: #2dd4bf;
    --teal-deep: #0e9f8e;
    --on-gold: #241300;

    /* Effekte */
    --glow-gold: 0 10px 30px rgba(242, 185, 59, 0.28);
    --glow-teal: 0 8px 26px rgba(45, 212, 191, 0.22);
    --glow-purple: 0 8px 26px rgba(155, 92, 246, 0.3);

    /* Typografie */
    --font-display: "Baloo 2", "Inter", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

    /* Groessen & Rhythmus */
    --container: 1180px;
    --space-2xs: 0.375rem;
    --space-xs: 0.625rem;
    --space-sm: 0.875rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --header-h: 68px;
}

/* ============================================
   RESET / GRUNDLAGEN (Overflow-Sicherheit)
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(60rem 34rem at 85% -8%, rgba(124, 58, 237, 0.32), transparent 62%),
        radial-gradient(52rem 30rem at -12% 32%, rgba(45, 212, 191, 0.14), transparent 60%),
        radial-gradient(48rem 30rem at 105% 72%, rgba(242, 185, 59, 0.10), transparent 55%),
        var(--bg);
    background-attachment: fixed;
}

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

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

pre,
code {
    max-width: 100%;
    overflow-x: auto;
}

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

details {
    height: fit-content;
}

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

section {
    overflow: clip;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.18;
    margin: 0 0 var(--space-sm);
    text-wrap: balance;
}

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

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

a {
    color: var(--teal);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--teal-deep);
}

/* Prosa-Links: nicht nur ueber Farbe erkennbar */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

/* Fokus sichtbar halten */
:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* 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 */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    z-index: 1100;
    padding: var(--space-xs) var(--space-md);
    background: var(--gold);
    color: var(--on-gold);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

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

/* ============================================
   LAYOUT-PRIMITIVE
   .container - zentrierter Inhaltsrahmen
   .section   - vertikaler Seitenabschnitt
   .prose     - Fliesstext-Begrenzung (Leselaenge)
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
    padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.section--tinted {
    background: linear-gradient(180deg, rgba(29, 18, 69, 0.55), rgba(13, 7, 36, 0));
    border-block: 1px solid rgba(58, 42, 114, 0.5);
}

.prose {
    max-width: 72ch;
}

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

.lead {
    font-size: clamp(1.05rem, calc(0.6vw + 0.95rem), 1.2rem);
    color: var(--text-muted);
}

/* ============================================
   SECTION HEAD - Titel mit Diamant-Ornament
   (zierende Linie-Raute-Linie aus den Referenzen)
   ============================================ */
.section-head {
    max-width: 52rem;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.section-head__kicker {
    margin: 0 0 var(--space-2xs);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.section-head__title {
    font-size: clamp(1.55rem, calc(1.9vw + 1.1rem), 2.35rem);
    color: var(--text);
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.ornament-divider__line {
    width: clamp(2.5rem, 8vw, 5rem);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
    border-radius: 2px;
}

.ornament-divider__line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-divider__diamond {
    width: 9px;
    height: 9px;
    background: var(--teal);
    transform: rotate(45deg);
    box-shadow: var(--glow-teal);
}

/* ============================================
   BUTTONS
   .btn--gold    Primaer-CTA (Gold, dunkler Text)
   .btn--teal    Sekundaer-Akzent
   .btn--outline Login / dezente Aktion
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.7rem 1.6rem;
    border: 0;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-deep) 100%);
    color: var(--on-gold);
    box-shadow: var(--glow-gold);
}

.btn--gold:hover {
    color: var(--on-gold);
    box-shadow: 0 14px 36px rgba(242, 185, 59, 0.4);
}

.btn--teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    color: #052b27;
    box-shadow: var(--glow-teal);
}

.btn--teal:hover {
    color: #052b27;
}

.btn--outline {
    background: transparent;
    color: var(--gold-strong);
    border: 2px solid var(--gold);
}

.btn--outline:hover {
    background: rgba(242, 185, 59, 0.12);
    color: var(--gold-strong);
}

.btn--sm {
    min-height: 44px;
    padding: 0.5rem 1.2rem;
    font-size: 0.92rem;
}

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

/* Kleiner rechtlicher Hinweis unter CTAs */
.terms-note {
    margin: var(--space-xs) 0 0;
    font-size: 0.82rem;
    color: var(--text-soft);
}

/* ============================================
   SITE HEADER
   Fixierte Kopfzeile mit Brand, Navigation,
   Login/Registrieren und Burger-Toggle.
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 7, 36, 0.94);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: var(--header-h);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, calc(0.5vw + 1.05rem), 1.4rem);
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
}

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

.site-brand__mark {
    display: inline-flex;
    filter: drop-shadow(0 0 8px rgba(242, 185, 59, 0.45));
}

.site-brand__accent {
    color: var(--text);
    font-weight: 600;
}

/* Burger-Toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2.5px;
    border-radius: 2px;
    background: var(--gold);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

/* Navigation - mobil: fixierter Vollflaechen-Drawer */
.site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--bg);
    overflow-y: auto;
    padding: var(--space-lg) clamp(1rem, 4vw, 2rem) var(--space-2xl);
}

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

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

.site-nav__link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: var(--space-xs) var(--space-md);
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.site-nav__link:hover {
    color: var(--gold-strong);
    background: rgba(242, 185, 59, 0.08);
    border-color: var(--border-gold);
}

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

/* ============================================
   HERO
   Integrierte Komposition: Copy links, transparente
   Vordergrund-Grafik (Figur auf Teppich) rechts,
   Neon-Glow via CSS-Pseudoelementen.
   ============================================ */
.hero {
    position: relative;
    padding-block: clamp(2.5rem, 6vw, 5rem);
    overflow: clip;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10%;
    z-index: -1;
    background:
        radial-gradient(26rem 22rem at 78% 42%, rgba(45, 212, 191, 0.20), transparent 62%),
        radial-gradient(30rem 26rem at 62% 30%, rgba(155, 92, 246, 0.26), transparent 64%),
        radial-gradient(22rem 18rem at 92% 12%, rgba(242, 185, 59, 0.14), transparent 60%);
}

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

.hero__copy {
    max-width: 34rem;
}

.hero__title {
    font-size: clamp(2rem, calc(2.6vw + 1.4rem), 3.4rem);
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 2px 24px rgba(242, 185, 59, 0.25);
}

.hero__title .hero__title-light {
    color: var(--text);
}

.hero__text {
    color: var(--text-muted);
    font-size: clamp(1rem, calc(0.5vw + 0.92rem), 1.12rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.hero__art {
    position: relative;
    align-self: center;
    width: min(100%, 30rem);
}

.hero__art::before {
    content: "";
    position: absolute;
    inset: 12% 6% 8%;
    z-index: -1;
    background: radial-gradient(50% 50% at 50% 55%, rgba(45, 212, 191, 0.22), transparent 70%);
    filter: blur(6px);
}

.hero__art img {
    display: block;
    width: 100%;
    filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.5));
}

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

    .hero__art {
        flex: 0 1 48%;
        width: auto;
        margin-right: -1.5rem;
    }
}

/* ============================================
   GRIDS - Kartenraster je nach Inhaltszahl
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-md);
    align-items: start;
}

.grid--2,
.grid--3,
.grid--4,
.grid--5 {
    grid-template-columns: 1fr;
}

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

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

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

@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--5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* ============================================
   FEATURE CARD - Icon-Karte (Auf-einen-Blick etc.)
   ============================================ */
.feature-card {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    background: linear-gradient(180deg, var(--surface), rgba(29, 18, 69, 0.55));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
}

.feature-card__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    margin-bottom: var(--space-sm);
    color: var(--teal);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.5));
}

.feature-card__title {
    font-size: 1.15rem;
    color: var(--text);
}

.feature-card__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================
   STAT CARD - Kennzahl mit goldener Zahl
   ============================================ */
.stat-card {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    background: var(--surface-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat-card__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, calc(1.4vw + 1.3rem), 2.4rem);
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 18px rgba(242, 185, 59, 0.35);
}

.stat-card__label {
    display: block;
    margin-top: var(--space-2xs);
    font-weight: 600;
    color: var(--text);
}

.stat-card__note {
    display: block;
    margin-top: var(--space-2xs);
    font-size: 0.8rem;
    color: var(--text-soft);
}

/* ============================================
   BONUS STAGES - Stufenpfad (Willkommenspaket)
   Vertikal auf Mobile, horizontale Strecke auf Desktop.
   ============================================ */
.bonus-stages {
    position: relative;
    display: grid;
    gap: var(--space-xl);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: stage;
}

.bonus-stage {
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) 4.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.bonus-stage__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 9px;
    color: var(--gold-strong);
    background: rgba(242, 185, 59, 0.1);
    border: 2px solid var(--gold);
    clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    filter: drop-shadow(0 0 12px rgba(242, 185, 59, 0.4));
}

.bonus-stage__step {
    display: inline-block;
    margin-bottom: var(--space-2xs);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
}

.bonus-stage__title {
    font-size: 1.1rem;
}

.bonus-stage__text {
    margin: 0;
    font-size: 0.93rem;
    color: var(--text-muted);
}

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

    .bonus-stages::before {
        content: "";
        position: absolute;
        top: 2.6rem;
        left: 6%;
        right: 6%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
        opacity: 0.55;
    }

    .bonus-stage {
        padding: 4.5rem var(--space-md) var(--space-md);
        text-align: center;
        background: transparent;
        border-color: transparent;
    }

    .bonus-stage__badge {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 84px;
        height: 84px;
        padding: 20px;
        background: var(--surface);
    }
}

/* ============================================
   VIP LEVELS - Treueprogramm-Stufen
   ============================================ */
.vip-levels {
    position: relative;
    display: grid;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
    list-style: none;
}

.vip-level {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--space-2xs) var(--space-md);
    align-items: center;
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.vip-level__crown {
    grid-row: span 2;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 8px;
    color: var(--gold);
}

.vip-level__crown svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(242, 185, 59, 0.45));
}

.vip-level__step {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple);
}

.vip-level__title {
    margin: 0;
    font-size: 1.05rem;
}

.vip-level__text {
    grid-column: 2;
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

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

    /* Fuenf Stufen: letzte Karte zentriert in eigener Reihe */
    .vip-level:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin-inline: auto;
        width: 100%;
    }
}

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

    .vip-level {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .vip-level__crown {
        grid-row: auto;
    }

    .vip-level__text {
        grid-column: auto;
    }

    .vip-level:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }
}

/* ============================================
   MEDIA CARD - Bildkarte fuer Produktbereiche
   ============================================ */
.media-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.media-card__img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.media-card__body {
    padding: var(--space-md);
}

.media-card__title {
    font-size: 1.15rem;
    color: var(--gold-strong);
}

.media-card__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================
   RELATED CARD - Verlinkte Themenseiten
   ============================================ */
.related-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    text-decoration: none;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.related-card__icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin: 0 auto var(--space-2xs);
    color: var(--teal);
}

.related-card__icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.45));
}

.related-card__title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text);
}

.related-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.related-card__more {
    margin-top: var(--space-2xs);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

/* ============================================
   FAQ - Native details/summary-Akkordeons
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 52rem;
    margin-inline: auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: 56px;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}

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

.faq-item__chevron {
    flex: 0 0 auto;
    display: inline-flex;
    width: 26px;
    height: 26px;
    color: var(--teal);
    transition: transform 0.25s ease;
}

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

.faq-item__answer {
    padding: 0 var(--space-md) var(--space-md);
    border-top: 1px dashed var(--border);
}

.faq-item__answer p {
    margin: var(--space-sm) 0 0;
    color: var(--text-muted);
}

/* ============================================
   CALLOUT / TLDR - Hinweis- und Kurzfassungsboxen
   ============================================ */
.callout {
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid var(--border-teal);
    border-left: 5px solid var(--teal);
    border-radius: var(--radius-sm);
}

.callout--gold {
    background: rgba(242, 185, 59, 0.08);
    border-color: var(--border-gold);
    border-left-color: var(--gold);
}

.callout--purple {
    background: rgba(155, 92, 246, 0.1);
    border-color: rgba(155, 92, 246, 0.5);
    border-left-color: var(--purple);
}

.callout__title {
    margin: 0 0 var(--space-2xs);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
}

.callout__text {
    margin: 0;
    color: var(--text-muted);
}

.tldr-box {
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--surface-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    box-shadow: inset 0 0 40px rgba(242, 185, 59, 0.05);
}

.tldr-box__title {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-strong);
}

.tldr-box__list {
    margin: 0;
    padding-left: 1.2em;
    color: var(--text-muted);
}

.tldr-box__list li + li {
    margin-top: var(--space-2xs);
}

/* ============================================
   CTA BAND - Abschliessender Conversion-Block
   mit orientalischem Muster und Figur.
   ============================================ */
.cta-band {
    position: relative;
    overflow: clip;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
    background:
        radial-gradient(30rem 18rem at 88% 30%, rgba(155, 92, 246, 0.28), transparent 65%),
        linear-gradient(120deg, #123f4b 0%, #16445c 40%, #1c3a68 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    text-align: center;
}

.cta-band__title {
    margin: 0;
    font-size: clamp(1.5rem, calc(1.6vw + 1.1rem), 2.2rem);
    color: var(--text);
}

.cta-band__text {
    max-width: 46ch;
    margin: 0;
    color: var(--text-muted);
}

.cta-band__art {
    flex: 0 0 auto;
    width: min(46vw, 15rem);
}

.cta-band__art img {
    display: block;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
}

@media (min-width: 1024px) {
    .cta-band__inner {
        flex-direction: row;
        text-align: left;
    }

    .cta-band__body {
        flex: 1 1 60%;
    }
}

/* ============================================
   TRUST ITEMS - Seriositaets-Pruefpunkte
   ============================================ */
.trust-item {
    padding: var(--space-lg) var(--space-md);
    background: rgba(29, 18, 69, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.trust-item__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-bottom: var(--space-sm);
    color: var(--teal);
}

.trust-item__icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.4));
}

.trust-item__title {
    font-size: 1.08rem;
}

.trust-item__text {
    margin: 0;
    font-size: 0.93rem;
    color: var(--text-muted);
}

/* ============================================
   PAYMENT ICONS - Zahlungsarten-Leiste
   ============================================ */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xs);
    margin: 0 0 var(--space-sm);
    padding: 0;
    list-style: none;
}

.payment-icons__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 34px;
    padding: 5px;
    background: #f7f5ff;
    border-radius: 8px;
}

.payment-icons__item svg {
    width: 22px;
    height: 22px;
}

.payment-icons__item--btc {
    color: #f7931a;
}

.payment-icons__item--eth {
    color: #627eea;
}

.payment-icons__item--usdt {
    color: #26a17b;
}

.payment-icons__item--ltc {
    color: #345d9d;
}

.payment-icons__word--visa {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.04em;
    color: #1a1f71;
}

/* ============================================
   AGE BADGE - 18+ Hinweis
   ============================================ */
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-top: var(--space-md);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    background: #b3222c;
    border: 3px solid #fff;
    border-radius: 50%;
}

/* ============================================
   SITEMAP ENTRY - Eintraege der Seitenuebersicht
   ============================================ */
.sitemap-entry {
    padding: var(--space-md) var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.sitemap-entry__title {
    margin: 0 0 var(--space-2xs);
    font-size: 1.1rem;
}

.sitemap-entry__title a {
    color: var(--gold-strong);
    text-decoration: none;
}

.sitemap-entry__title a:hover {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.sitemap-entry__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================
   SPLIT - Text neben Bild (Produktbereiche)
   ============================================ */
.split {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .split {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: var(--space-2xl);
    }

    .split--reverse > .split__media {
        order: -1;
    }
}

.split__media img {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border-gold);
    box-shadow: var(--glow-purple);
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl) 0 var(--space-lg);
    background: linear-gradient(180deg, rgba(22, 14, 56, 0.4), #0a051d);
    border-top: 1px solid var(--border-gold);
}

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

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

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

.site-footer__heading {
    font-size: 1.05rem;
    color: var(--gold);
}

.site-footer__col p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.site-footer__small {
    font-size: 0.8rem;
    color: var(--text-soft);
}

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

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--text-muted);
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--gold-strong);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.site-footer__bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-soft);
}

/* ============================================
   DESKTOP-NAVIGATION (ab 1024px)
   ============================================ */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .site-nav {
        display: flex;
        position: static;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        overflow: visible;
    }

    .site-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-2xs);
        margin: 0;
    }

    .site-nav__link {
        min-height: 44px;
        padding: var(--space-2xs) var(--space-sm);
        font-size: 0.98rem;
    }

    .site-nav__actions {
        flex-direction: row;
    }
}

/* ============================================
   SCROLL-REVEAL (Progressive Enhancement)
   Unenhanced bleibt sichtbar; JS fuegt .js-reveal
   hinzu und steuert den sichtbaren Endzustand.
   ============================================ */
.js-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   SHARED EYEBROW (used across content pages)
   ============================================ */
.home-hero__eyebrow {
    margin-bottom: .65rem;
    color: var(--teal);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
}

.home-related-intro {
    max-width: 66ch;
    margin: 0 auto var(--space-xl);
    text-align: center;
    color: var(--text-muted);
}

/* ============================================
   VIP TABLE - Responsive comparison table
   ============================================ */
.vip-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: var(--space-lg) 0 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border-gold);
}

.vip-table caption {
    caption-side: top;
    padding: var(--space-xs) 0;
    font-size: .85rem;
    color: var(--text-soft);
    text-align: left;
}

.vip-table th,
.vip-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-size: .92rem;
    border-bottom: 1px solid var(--border);
}

.vip-table thead th {
    background: linear-gradient(135deg, rgba(242, 185, 59, 0.14), rgba(29, 18, 69, 0.8));
    color: var(--gold-strong);
    font-family: var(--font-display);
    font-weight: 700;
}

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

.vip-table tbody tr:hover {
    background: rgba(45, 212, 191, 0.06);
}

.vip-table td:first-child {
    font-weight: 700;
    color: var(--gold);
}

.vip-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   VIP SHELL - Bonus/stage container
   ============================================ */
.vip-shell {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    background: linear-gradient(145deg, rgba(38, 26, 92, .9), rgba(18, 56, 79, .62));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 70px rgba(242, 185, 59, .06);
}

.vip-shell__actions {
    margin-top: var(--space-xl);
    text-align: center;
}

/* ============================================
   SPLIT BODY - Text column in split layout
   ============================================ */
.split__body > :last-child {
    margin-bottom: 0;
}

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

    .js-reveal {
        opacity: 1;
        transform: none;
    }
}
