/*
 * DUDESPIN CASINO - DESIGN SYSTEM
 * Neon-Bowling-Nachtclub: dunkle Oberflächen, violett-rosafarbene Neonakzente,
 * Golddetails. Einzelnes dunkles Theme (kein Umschalter, gemäß Brief).
 */

/* ============================================
   DESIGN TOKENS
   Alle Farben, Abstände, Radien und Typografie-Größen.
   ============================================ */

:root {
    /* Surfaces - dunkles Violett-Spektrum, kein reines Schwarz */
    --background: #160725;
    --background-deep: #10041c;
    --surface: #220f38;
    --surface-raised: #2b1447;
    --surface-overlay: rgba(34, 15, 56, 0.92);

    /* Text - warme, helle Töne mit ausreichendem Kontrast auf Dunkel */
    --foreground: #f4edf9;
    --foreground-soft: #e6d9f2;
    --muted-foreground: #c3aedc;

    /* Neon-Akzente */
    --primary: #9f43f6;
    --primary-hover: #9333ea;
    --primary-foreground: #ffffff;
    --accent: #f042b8;
    --accent-strong: #ff2f9e;
    --gold: #f2c14e;
    --gold-foreground: #241203;
    --cyan: #4be3e8;

    /* Borders & Lines */
    --border: #45246b;
    --border-strong: #6d3aa3;

    /* Status */
    --success: #34d399;
    --warning: #f2c14e;
    --danger: #eb0c0c;

    /* Glows */
    --glow-primary: 0 0 22px rgba(168, 85, 247, 0.5);
    --glow-accent: 0 0 22px rgba(240, 66, 184, 0.55);
    --glow-gold: 0 0 18px rgba(242, 193, 78, 0.35);
    --glow-card: 0 0 0 1px rgba(168, 85, 247, 0.35), 0 0 24px rgba(168, 85, 247, 0.18);

    /* Radii */
    --radius-sm: 0.5rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.4rem;
    --radius-pill: 999px;

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Type */
    --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
    --font-brand: "Pacifico", "Manrope", cursive;

    /* Layout */
    --container: 74rem;
    --header-height: 4.25rem;
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

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

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

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

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

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

details {
    height: fit-content;
}

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

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]):hover {
    color: var(--accent);
}

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

section {
    overflow: clip;
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--foreground);
    background-color: var(--background);
    background-image:
        radial-gradient(52rem 30rem at 88% -8%, rgba(240, 66, 184, 0.14), transparent 62%),
        radial-gradient(46rem 30rem at -10% 22%, rgba(168, 85, 247, 0.16), transparent 60%),
        radial-gradient(40rem 26rem at 50% 110%, rgba(75, 227, 232, 0.06), transparent 65%);
    background-attachment: fixed;
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--foreground);
    margin: 0 0 var(--space-md);
    text-wrap: balance;
}

h1 {
    font-size: clamp(1.9rem, calc(2.4vw + 1.4rem), 3.6rem);
}

h2 {
    font-size: clamp(1.5rem, calc(1.6vw + 1.05rem), 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, calc(0.8vw + 0.95rem), 1.6rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin: 0 0 var(--space-md);
    max-width: 72ch;
}

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

li {
    margin-bottom: var(--space-xs);
}

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

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

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

::selection {
    background: rgba(240, 66, 184, 0.4);
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.skip-link {
    position: absolute;
    top: -4rem;
    left: var(--space-md);
    z-index: 1200;
    background: var(--accent);
    color: #ffffff;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: var(--space-sm);
    color: #ffffff;
}

main:focus {
    outline: none;
}

/* ============================================
   SECTIONS - vertikaler Rhythmus & Neon-Trennlinien
   .section - Standardband
   .section--framed - umrahmte Kartenband wie in der Referenz
   ============================================ */

.section {
    position: relative;
    padding-block: clamp(3rem, 7vw, 5.5rem);
}

.section--tight {
    padding-block: clamp(2rem, 5vw, 3.5rem);
}

.section--framed {
    background: linear-gradient(160deg, rgba(43, 20, 71, 0.75), rgba(22, 7, 37, 0.9));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-block: clamp(1.5rem, 4vw, 3rem);
    margin-inline: clamp(1rem, 4vw, 2rem);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 24px 60px rgba(8, 2, 18, 0.5), inset 0 0 60px rgba(168, 85, 247, 0.05);
}

@media (min-width: 1024px) {
    .section--framed {
        max-width: var(--container);
        margin-inline: auto;
    }
}

.neon-divider {
    display: block;
    height: 2px;
    width: min(90%, 60rem);
    margin-inline: auto;
    border: 0;
    background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--primary) 70%, transparent);
    box-shadow: 0 0 14px rgba(240, 66, 184, 0.7);
}

/* ============================================
   SECTION HEADINGS - Kicker + H2
   ============================================ */

.section-heading {
    margin-bottom: var(--space-xl);
}

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

.section-heading--center h2 {
    margin-inline: auto;
}

.section-heading__kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    padding: 0.3rem 0.9rem;
    border: 1px solid rgba(242, 193, 78, 0.45);
    border-radius: var(--radius-pill);
    box-shadow: var(--glow-gold);
}

/* ============================================
   BUTTONS - Neon-CTAs
   .button--primary - magentafarbener Haupt-CTA mit Glow
   .button--secondary - violett umrandet
   .button--header - kompakter Header-CTA
   ============================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.9rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button--primary {
    background: linear-gradient(120deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--primary-foreground);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: var(--glow-accent), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button--primary:hover {
    background: linear-gradient(120deg, var(--accent-strong) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(240, 66, 184, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button--secondary {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border-strong);
    box-shadow: var(--glow-card);
}

.button--secondary:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--glow-accent);
}

.button--header {
    background: linear-gradient(120deg, var(--accent) 0%, var(--primary) 100%);
    color: #ffffff;
    min-height: 44px;
    padding: 0.55rem 1.3rem;
    font-size: 0.95rem;
    box-shadow: var(--glow-accent);
}

.button--header:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* ============================================
   HEADER - Brand, Navigation, Login/Registrieren
   Mobile: Burger + Drawer (fixiert, opak, unter Header).
   Desktop ab 1024px: Inline-Navigation.
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    background: rgba(16, 4, 28, 0.96);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(16, 4, 28, 0.82);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-height: var(--header-height);
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(0.75rem, 3vw, 2rem);
}

.site-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    text-decoration: none;
    line-height: 1;
    margin-right: auto;
}

.site-brand__name {
    font-family: var(--font-brand);
    font-size: clamp(1.35rem, 4.6vw, 1.9rem);
    color: var(--accent);
    text-shadow: 0 0 12px rgba(240, 66, 184, 0.75), 0 0 30px rgba(168, 85, 247, 0.4);
}

.site-brand__descriptor {
    font-size: clamp(0.62rem, 1.8vw, 0.8rem);
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}

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

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--foreground);
    box-shadow: 0 0 8px rgba(240, 66, 184, 0.8);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.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 Drawer */
.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-deep);
    overflow-y: auto;
    padding: var(--space-xl) clamp(1rem, 5vw, 2rem) var(--space-2xl);
    border-top: 1px solid var(--border);
}

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

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 var(--space-lg);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-nav__list a:hover,
.primary-nav__list a[aria-current="page"] {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--glow-accent);
}

/* Header-Aktionen */
.site-header__actions {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.header-login {
    display: none;
    align-items: center;
    min-height: 44px;
    padding: 0.55rem 1.1rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.header-login:hover {
    color: var(--accent);
    border-color: var(--accent);
}

@media (min-width: 400px) {
    .header-login {
        display: inline-flex;
    }
}

/* Desktop-Header */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .site-brand {
        margin-right: var(--space-xl);
    }

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

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: clamp(0.25rem, 1vw, 0.75rem);
    }

    .primary-nav__list a {
        min-height: 46px;
        padding: 0 clamp(0.75rem, 1.4vw, 1.3rem);
        font-size: 1.05rem;
        background: transparent;
        border: none;
        border-radius: var(--radius-sm);
    }

    .primary-nav__list a:hover,
    .primary-nav__list a[aria-current="page"] {
        box-shadow: none;
        text-shadow: 0 0 12px rgba(240, 66, 184, 0.8);
    }
}

/* ============================================
   HERO - Neon-Bowling-Bühne
   .hero - Bühne mit Neonbalken und Punktraster
   .hero--split - Desktop: Text links, integriertes Artwork rechts
   ============================================ */

.hero {
    position: relative;
    padding-block: clamp(3rem, 8vw, 6.5rem);
    background:
        radial-gradient(60% 55% at 78% 20%, rgba(240, 66, 184, 0.16), transparent 65%),
        radial-gradient(45% 50% at 12% 80%, rgba(168, 85, 247, 0.18), transparent 60%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(200, 150, 255, 0.13) 1px, transparent 1.5px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 75%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 75%);
}

.hero__inner {
    position: relative;
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.hero__copy {
    max-width: 40rem;
}

.hero__copy > * {
    max-width: 100%;
}

.hero h1 {
    margin-bottom: var(--space-lg);
}

.hero__neon-word {
    color: var(--accent);
    text-shadow: 0 0 16px rgba(240, 66, 184, 0.85), 0 0 42px rgba(168, 85, 247, 0.5);
}

.hero__copy p {
    font-size: clamp(1rem, 0.5vw + 0.95rem, 1.18rem);
    color: var(--foreground-soft);
}

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

.hero__microcopy {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

/* Integriertes Hero-Artwork: transparent, keine Karte, kein Rahmen */
.hero__art {
    position: relative;
    margin-inline: auto;
    width: min(100%, 34rem);
}

.hero__art img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 26px rgba(240, 66, 184, 0.35)) drop-shadow(0 18px 40px rgba(8, 2, 18, 0.6));
}

.hero__art::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -4%;
    height: 1.4rem;
    background: radial-gradient(50% 100% at 50% 0%, rgba(240, 66, 184, 0.4), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .hero__art {
        width: 100%;
        max-width: 40rem;
    }
}

/* ============================================
   GRIDS - ausgewogene Kartenraster
   ============================================ */

.grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

@media (min-width: 768px) {
    .grid--3 {
        grid-template-columns: repeat(2, 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));
    }
}

/* ============================================
   CARDS - Neon-umrandete Inhaltskarten
   .feature-card - Icon + Titel + Text
   .verdict-box, .callout - Engagement-Muster
   ============================================ */

.feature-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: clamp(1.3rem, 3vw, 2rem);
    background: linear-gradient(165deg, var(--surface-raised), var(--surface));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-card), 0 18px 44px rgba(8, 2, 18, 0.45);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--glow-accent), 0 22px 50px rgba(8, 2, 18, 0.55);
}

.feature-card__icon {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(240, 66, 184, 0.7));
}

.feature-card h3 {
    margin-bottom: 0;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--foreground-soft);
}

.feature-card .text-link {
    margin-top: auto;
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 800;
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.text-link:hover {
    color: var(--accent);
}

/* Kurzfazit / TL;DR */
.verdict-box {
    padding: clamp(1.3rem, 3vw, 2rem);
    background: linear-gradient(160deg, rgba(75, 227, 232, 0.08), rgba(43, 20, 71, 0.85));
    border: 1px solid rgba(75, 227, 232, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 24px rgba(75, 227, 232, 0.14);
}

.verdict-box__title {
    font-size: 1.15rem;
    color: var(--cyan);
}

.verdict-box__list {
    margin-bottom: 0;
}

.verdict-box__list li::marker {
    color: var(--cyan);
}

/* Callout-Varianten */
.callout {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--cyan);
    background: rgba(75, 227, 232, 0.07);
    margin-block: var(--space-lg);
}

.callout--tip {
    border-left-color: var(--success);
    background: rgba(52, 211, 153, 0.07);
}

.callout--warning {
    border-left-color: var(--warning);
    background: rgba(242, 193, 78, 0.08);
}

.callout--note {
    border-left-color: var(--cyan);
}

.callout__title {
    font-weight: 800;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

.callout__text {
    margin-bottom: 0;
    color: var(--foreground-soft);
}

/* Pros/Cons Listen in Callouts */
.callout ul {
    margin: 0;
    padding-left: 1.2rem;
}

.callout ul li {
    margin-bottom: var(--space-xs);
}

.callout ul li::marker {
    color: var(--accent);
}

.callout--tip ul li::marker {
    color: var(--success);
}

.callout--warning ul li::marker {
    color: var(--warning);
}

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

/* ============================================
   STATS - große Zahlen mit Neon-Behandlung
   ============================================ */

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: clamp(1.2rem, 3vw, 1.8rem);
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-block__number {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 0 18px rgba(240, 66, 184, 0.65);
}

.stat-block__label {
    font-weight: 700;
    color: var(--foreground);
}

.stat-block__note {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

/* ============================================
   CTA-BAND - Conversion-Abschluss
   ============================================ */

.cta-band {
    position: relative;
    text-align: center;
    padding: clamp(2.2rem, 6vw, 4rem) clamp(1.2rem, 4vw, 3rem);
    background:
        radial-gradient(70% 120% at 50% 0%, rgba(240, 66, 184, 0.2), transparent 70%),
        linear-gradient(160deg, var(--surface-raised), var(--background-deep));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-accent), 0 26px 60px rgba(8, 2, 18, 0.55);
}

.cta-band__content {
    max-width: 46rem;
    margin-inline: auto;
}

.cta-band__content h2 {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(240, 66, 184, 0.6);
}

.cta-band__content p {
    margin-inline: auto;
    color: var(--foreground-soft);
}

.cta-band .button {
    margin-top: var(--space-md);
}

.cta-band__note {
    margin-top: var(--space-md);
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

/* ============================================
   FAQ - native details/summary Akkordeon-Liste
   ============================================ */

.faq-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: var(--border-strong);
    box-shadow: var(--glow-card);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: 56px;
    padding: var(--space-sm) var(--space-lg);
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--foreground);
}

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

.faq-item summary:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
    border-radius: var(--radius-md);
}

.faq-item__question {
    flex: 1 1 auto;
}

.faq-item__chevron {
    position: relative;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    filter: drop-shadow(0 0 6px rgba(240, 66, 184, 0.7));
}

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

.faq-item__answer {
    padding: 0 var(--space-lg) var(--space-md);
    color: var(--foreground-soft);
}

.faq-item__answer p {
    margin-bottom: 0;
}

/* ============================================
   TABLES - responsive Datentabellen
   .data-table--highlight hebt eine empfohlene Spalte hervor
   ============================================ */

.table-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-block: var(--space-lg);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 34rem;
}

.data-table caption {
    padding: var(--space-sm) var(--space-md);
    font-weight: 700;
    text-align: left;
    color: var(--foreground-soft);
    background: var(--surface-raised);
    border-bottom: 1px solid var(--border);
}

.data-table th,
.data-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.data-table thead th {
    background: var(--surface-raised);
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.data-table tbody th {
    font-weight: 700;
    color: var(--foreground);
}

.data-table tbody tr:nth-child(even) {
    background: rgba(43, 20, 71, 0.4);
}

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   TRUST & PROOF - Badges, Zahlungs-Chips, Pull Quote
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
    padding: var(--space-md);
    border-block: 1px solid var(--border);
}

.trust-badges__item {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.payment-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.payment-chips span {
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--foreground-soft);
    background: var(--surface-raised);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
}

.pull-quote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--accent);
    background: linear-gradient(120deg, rgba(240, 66, 184, 0.08), transparent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote p {
    font-size: clamp(1.15rem, 1vw + 0.95rem, 1.5rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--foreground);
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-style: normal;
    font-weight: 600;
    color: var(--muted-foreground);
}

/* ============================================
   BREADCRUMB - inner pages only
   ============================================ */

.breadcrumb {
    padding-block: var(--space-md) 0;
    font-size: 0.9rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    margin: 0;
    color: var(--muted-foreground);
}

.breadcrumb li + li::before {
    content: "/";
    margin-right: var(--space-xs);
    color: var(--border-strong);
}

.breadcrumb [aria-current="page"] {
    color: var(--foreground);
    font-weight: 700;
}

/* ============================================
   FOOTER - Links, Zahlungen, Lizenz, 18+
   ============================================ */

.site-footer {
    position: relative;
    margin-top: var(--space-3xl);
    padding-block: var(--space-2xl) var(--space-xl);
    background: var(--background-deep);
    border-top: 1px solid var(--border);
}

.site-footer__glow {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 50rem);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
    box-shadow: 0 0 16px rgba(240, 66, 184, 0.8);
    pointer-events: none;
}

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

.site-footer__brand-column p {
    color: var(--muted-foreground);
    max-width: 34ch;
}

.site-brand--footer {
    margin-bottom: var(--space-md);
}

.site-footer__nav h2,
.site-footer__trust h2 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.site-footer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--foreground-soft);
    text-decoration: none;
    font-weight: 600;
}

.site-footer__nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(240, 66, 184, 0.7);
}

.legal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.legal-badges span {
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--foreground-soft);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
}

.legal-badges .age-badge {
    color: #ffffff;
    background: var(--danger);
    border-color: var(--danger);
    min-width: 2.6rem;
    text-align: center;
}

.site-footer__bottom {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.site-footer__bottom p {
    font-size: 0.88rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xs);
}

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

/* ============================================
   SITEMAP-PAGE - Verzeichniseinträge
   ============================================ */

.sitemap-entry {
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.sitemap-entry h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.05rem;
}

.sitemap-entry p {
    margin-bottom: 0;
    color: var(--foreground-soft);
}

.sitemap-entry a {
    font-weight: 700;
}

/* ============================================
   PROSE - SEO-Fließtext
   ============================================ */

.prose {
    max-width: 72ch;
}

.prose > * {
    max-width: 100%;
}

.prose h2 {
    margin-top: var(--space-2xl);
}

.prose h3 {
    margin-top: var(--space-xl);
}

.prose li::marker {
    color: var(--accent);
}

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

/* ============================================
   SPLIT LAYOUTS & FRAMED MEDIA - Homepage-Sektionen
   .split - Desktop: Bild neben Text (Referenz-Zweiteilung)
   .media-frame - gerahmte, gerundete Rastergrafik mit Neon-Glow
   .card-icon - Neon-SVG-Icon in Karten
   ============================================ */

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

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

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

.media-frame {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glow-card), 0 22px 50px rgba(8, 2, 18, 0.5);
    background: var(--surface);
}

.media-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.card-icon {
    width: 2.6rem;
    height: 2.6rem;
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(240, 66, 184, 0.7));
}

/* ============================================
   SCROLL REVEAL - progressive Enhancement
   Nur aktiv, wenn JS die Klasse .js setzt; Reduzierung bei reduced-motion.
   ============================================ */

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ============================================
   ACCESSIBILITY HELPERS & REDUCED MOTION
   ============================================ */

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

@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;
        transition: none;
    }
}
