/*
 * DudeSpin Casino - Design System
 * Neon-Bowling-Ästhetik: dunkler violetter Grund, pinke/violette Neon-Akzente,
 * goldene Münz-Highlights. Festes Dark-Theme (kein Theme-Umschalter laut Brief).
 * Mobile-first: Basis = 320px, Breakpoints 768px / 1024px / 1280px.
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Flächen */
    --bg: #10051d;
    --bg-deep: #0a0312;
    --surface: #1b0a30;
    --surface-raised: #241040;
    --line: rgba(216, 180, 254, 0.16);

    /* Neon-Akzente */
    --pink: #f0abfc;
    --pink-hot: #ff4ecd;
    --pink-deep: #d946ef;
    --violet: #a855f7;
    --violet-deep: #7c3aed;
    --gold: #fbbf24;

    /* Text */
    --text: #f5f0fa;
    --text-soft: #e9d5ff;
    --text-muted: #c3a6e6;

    /* Buttons */
    --btn-grad: linear-gradient(135deg, #ff4ecd 0%, #a855f7 100%);
    --btn-grad-hover: linear-gradient(135deg, #ff6fd8 0%, #b96bf7 100%);
    --on-primary: #ffffff;

    /* Glows & Schatten */
    --glow-pink: 0 0 18px rgba(255, 78, 205, 0.45), 0 0 42px rgba(255, 78, 205, 0.2);
    --glow-violet: 0 0 18px rgba(168, 85, 247, 0.4), 0 0 42px rgba(168, 85, 247, 0.18);
    --shadow-card: 0 8px 28px rgba(3, 0, 10, 0.55);

    /* Typografie */
    --font-body: "Rubik", "Segoe UI", system-ui, sans-serif;
    --font-display: "Titan One", "Rubik", system-ui, sans-serif;

    /* Layout */
    --container: 1200px;
    --header-h: 64px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Abstände */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

/* ============================================
   RESET & BASIS
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(1100px 620px at 88% -8%, rgba(168, 85, 247, 0.22), transparent 62%),
        radial-gradient(900px 560px at 4% 8%, rgba(255, 78, 205, 0.14), transparent 58%),
        var(--bg);
    min-height: 100vh;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

section {
    overflow: clip;
}

details {
    height: fit-content;
}

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

h1 { font-size: clamp(1.9rem, calc(5vw + 0.9rem), 3.4rem); }
h2 { font-size: clamp(1.5rem, calc(3vw + 0.7rem), 2.4rem); }
h3 { font-size: clamp(1.15rem, calc(1.4vw + 0.7rem), 1.5rem); }

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

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

a:hover {
    color: var(--pink-hot);
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

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

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

/* 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;
    left: var(--space);
    top: -60px;
    z-index: 1200;
    background: var(--pink-hot);
    color: #1b0524;
    font-weight: 700;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

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

/* Sichtbarer Fokus für Tastatur-Nutzer */
:focus-visible {
    outline: 2px solid var(--pink-hot);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   BUTTONS
   .btn - Basis, Pillenform, Neon-Glow
   .btn--primary - pink-violetter Verlauf
   .btn--ghost - transparenter Neon-Rahmen
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.8rem 1.7rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn--primary {
    background: var(--btn-grad);
    color: var(--on-primary);
    box-shadow: var(--glow-pink);
}

.btn--primary:hover {
    background: var(--btn-grad-hover);
    color: var(--on-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 78, 205, 0.6), 0 0 60px rgba(168, 85, 247, 0.3);
}

.btn--ghost {
    background: rgba(168, 85, 247, 0.08);
    border-color: var(--violet);
    color: var(--text-soft);
    box-shadow: inset 0 0 12px rgba(168, 85, 247, 0.12);
}

.btn--ghost:hover {
    border-color: var(--pink-hot);
    color: #ffffff;
    background: rgba(255, 78, 205, 0.12);
    transform: translateY(-2px);
}

.btn--sm {
    min-height: 42px;
    padding: 0.55rem 1.15rem;
    font-size: 0.92rem;
}

.btn--lg {
    min-height: 56px;
    padding: 1rem 2.4rem;
    font-size: 1.08rem;
}

/* ============================================
   HEADER - sticky, Neon-Branding, Burger < 768px
   Z-Index-Stack: header 1000, toggle 1001, Drawer 999
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(16, 5, 29, 0.96);
    border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
    .site-header {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(16, 5, 29, 0.82);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-height: var(--header-h);
    position: relative;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-width: 0;
    flex-shrink: 1;
}

.site-brand__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--pink-hot);
    filter: drop-shadow(0 0 6px rgba(255, 78, 205, 0.7));
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: clamp(1rem, calc(2vw + 0.7rem), 1.3rem);
    color: var(--pink);
    text-shadow: 0 0 10px rgba(240, 171, 252, 0.55);
    white-space: nowrap;
}

.site-brand__text em {
    font-style: normal;
    color: var(--pink-hot);
    text-shadow: 0 0 12px rgba(255, 78, 205, 0.7);
}

.site-brand__sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68em;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet);
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
    line-height: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

/* Burger-Button */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s 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: standardmäßig versteckt, fixed & opak wenn offen */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--bg-deep);
    overflow-y: auto;
    padding: var(--space-lg) var(--space);
}

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

.main-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
}

.main-nav__link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border: 1px solid transparent;
}

.main-nav__link:hover {
    background: rgba(168, 85, 247, 0.14);
    border-color: var(--line);
    color: #ffffff;
}

.main-nav__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--line);
}

/* Header auf schmalen Screens: kompakte Buttons */
@media (max-width: 420px) {
    .header-actions .btn--sm {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
}

/* Desktop: Inline-Navigation, kein Drawer */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
        position: static;
        align-items: center;
        background: transparent;
        overflow: visible;
        padding: 0;
        margin-left: auto;
    }

    .main-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 0.25rem;
    }

    .main-nav__link {
        min-height: 44px;
        font-size: 1rem;
        padding: 0.4rem 0.9rem;
    }

    .main-nav__cta {
        display: none;
    }

    .header-actions {
        margin-left: var(--space);
    }
}

/* ============================================
   HERO - integriertes Vordergrund-Artwork über Neon-Szenerie
   Mobile: Artwork unter Text. Desktop: 2-Spalten-Split.
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0 var(--space-3xl);
    background:
        radial-gradient(700px 420px at 78% 18%, rgba(255, 78, 205, 0.2), transparent 62%),
        radial-gradient(560px 380px at 12% 70%, rgba(168, 85, 247, 0.22), transparent 60%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(240, 171, 252, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 171, 252, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 25%, transparent 78%);
}

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

.hero__kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.45);
}

.hero__title {
    margin-bottom: var(--space);
}

.hero__lead {
    font-size: clamp(1.02rem, calc(0.6vw + 0.95rem), 1.2rem);
    color: var(--text-soft);
    max-width: 58ch;
    margin-bottom: var(--space-lg);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
}

.hero__note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.hero__art {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__art img {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 0 30px rgba(255, 78, 205, 0.35)) drop-shadow(0 24px 40px rgba(3, 0, 10, 0.6));
}

@media (min-width: 1024px) {
    .hero__grid {
        flex-direction: row;
        align-items: center;
        gap: var(--space-2xl);
    }

    .hero__content {
        flex: 1 1 52%;
    }

    .hero__art {
        flex: 1 1 48%;
    }

    .hero__art img {
        max-width: 560px;
    }
}

/* ============================================
   SECTION-HEAD - Kicker + Titel + Lead
   ============================================ */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl);
}

.section-head__kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink-hot);
    margin-bottom: var(--space-xs);
    text-shadow: 0 0 10px rgba(255, 78, 205, 0.5);
}

.section-head__title {
    margin-bottom: var(--space-sm);
}

.section-head__lead {
    color: var(--text-soft);
    margin: 0;
}

/* Allgemeiner Sektions-Rhythmus */
.section {
    padding: var(--space-2xl) 0;
}

.section--tint {
    background: linear-gradient(180deg, transparent, rgba(27, 10, 48, 0.55) 18%, rgba(27, 10, 48, 0.55) 82%, transparent);
}

/* ============================================
   CTA-BAND - Neon-gerahmte Konversions-Box
   ============================================ */
.cta-band {
    padding: var(--space-2xl) 0;
}

.cta-band__inner {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border: 3px solid var(--pink-hot);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(420px 200px at 50% 0%, rgba(255, 78, 205, 0.16), transparent 70%),
        var(--surface);
    box-shadow: var(--glow-pink), inset 0 0 32px rgba(255, 78, 205, 0.1);
}

.cta-band__title {
    margin-bottom: var(--space-sm);
}

.cta-band__text {
    color: var(--text-soft);
    max-width: 62ch;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
}

.cta-band__note {
    margin: var(--space) 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   BONUS-BAND - Split-Layout: Bild + Faktenliste
   ============================================ */
.bonus-band {
    padding: var(--space-2xl) 0;
}

.bonus-band__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
}

.bonus-band__media {
    flex: 1 1 44%;
    width: 100%;
}

.bonus-band__media img {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--pink-deep);
    box-shadow: var(--glow-pink), var(--shadow-card);
}

.bonus-band__content {
    flex: 1 1 56%;
    min-width: 0;
}

.bonus-facts {
    list-style: none;
    margin: 0 0 var(--space-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.bonus-facts li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-soft);
}

.bonus-facts li::before {
    content: "";
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.18rem;
    background: var(--pink-hot);
    filter: drop-shadow(0 0 4px rgba(255, 78, 205, 0.6));
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bonus-facts strong {
    color: var(--text);
}

@media (min-width: 1024px) {
    .bonus-band__grid {
        flex-direction: row;
        gap: var(--space-2xl);
    }
}

/* ============================================
   GAME-CARD - Neon-umrandete Spielkachel
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space);
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.game-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: clip;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.game-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
}

.game-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card__tag {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.22rem 0.6rem;
    border-radius: var(--radius-pill);
    background: rgba(10, 3, 18, 0.82);
    border: 1px solid var(--pink-hot);
    color: var(--pink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.game-card__body {
    padding: var(--space-sm) var(--space);
}

.game-card__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.15rem;
}

.game-card__provider {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   WINNER-FEED - Gewinner-Ticker als Liste
   ============================================ */
.winner-feed {
    list-style: none;
    margin: 0;
    padding: var(--space);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: var(--surface);
    border: 2px solid var(--violet);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-violet), inset 0 0 24px rgba(168, 85, 247, 0.08);
}

@media (min-width: 1024px) {
    .winner-feed {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .winner-feed .winner-item {
        flex: 1 1 calc(50% - 0.6rem);
    }
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.winner-item__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet-deep), var(--pink-hot));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(255, 78, 205, 0.4);
}

.winner-item__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.winner-item__name {
    font-size: 0.95rem;
}

.winner-item__game {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.winner-item__amount {
    margin-left: auto;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.45);
    white-space: nowrap;
}

/* ============================================
   TESTIMONIALS - Bewertungskarten mit Sternen
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

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

.testimonial-card {
    margin: 0;
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--violet);
    border-radius: var(--radius);
    box-shadow: var(--glow-violet);
}

.testimonial-card__top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space);
}

.testimonial-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-hot), var(--violet-deep));
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(255, 78, 205, 0.45);
}

.testimonial-card__name {
    font-weight: 700;
}

.stars__icons {
    display: inline-flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    fill: #4a2a6e;
}

.star--filled {
    fill: var(--gold);
    filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.6));
}

.testimonial-card__quote {
    margin: 0 0 var(--space-sm);
}

.testimonial-card__quote p {
    margin: 0;
    color: var(--text-soft);
}

.testimonial-card__detail {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

.rating-summary__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, calc(3vw + 1.4rem), 3.2rem);
    color: var(--gold);
    text-shadow: 0 0 18px rgba(251, 191, 36, 0.5);
    line-height: 1;
}

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

/* ============================================
   FAQ - natives Details/Summary-Akkordeon
   ============================================ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

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

.faq-item[open] {
    border-color: var(--pink-hot);
    box-shadow: 0 0 14px rgba(255, 78, 205, 0.22);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space);
    padding: 1rem 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    min-height: 56px;
}

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

.faq-item__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--pink-hot);
    transition: transform 0.25s ease;
}

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

.faq-item__answer {
    padding: 0 1.15rem 1.1rem;
}

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

/* ============================================
   TRUST - Badges & Provider-Strip
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}

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

.trust-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.trust-item__icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    padding: 12px;
    border-radius: 50%;
    color: var(--pink);
    background: rgba(255, 78, 205, 0.1);
    border: 1px solid var(--pink-deep);
    box-shadow: 0 0 16px rgba(255, 78, 205, 0.3);
    margin-bottom: var(--space-sm);
}

.trust-item__icon svg {
    width: 100%;
    height: 100%;
}

.trust-item__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

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

.provider-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.provider-chip {
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: var(--text-soft);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    filter: grayscale(35%);
    transition: filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.provider-chip:hover {
    filter: none;
    border-color: var(--violet);
    box-shadow: var(--glow-violet);
}

/* ============================================
   PROMO-CARDS & VIP-TIERS
   ============================================ */
.promo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}

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

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

.promo-card {
    position: relative;
    padding: var(--space-lg);
    padding-top: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.promo-card__badge {
    position: absolute;
    top: -0.8rem;
    left: var(--space-lg);
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-pill);
    background: var(--btn-grad);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--glow-pink);
}

.promo-card__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.promo-card__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-soft);
}

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

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

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

.tier-card {
    position: relative;
    padding: var(--space-xl) var(--space) var(--space-lg);
    text-align: center;
    background: linear-gradient(180deg, var(--surface-raised), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.tier-card__level {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--btn-grad);
    color: #ffffff;
    font-weight: 700;
    box-shadow: var(--glow-pink);
}

.tier-card__name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    margin: var(--space-xs) 0 0.35rem;
}

.tier-card__reward {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ============================================
   CONTENT-PATTERNS - TL;DR, Callout, Stat, Pull-Quote
   ============================================ */
.tldr {
    padding: var(--space-lg);
    border: 1px solid var(--violet);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(255, 78, 205, 0.08));
    margin-bottom: var(--space-lg);
}

.tldr__title {
    margin: 0 0 0.4rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.tldr__text {
    margin: 0;
    color: var(--text-soft);
}

.callout {
    padding: var(--space) var(--space-lg);
    border-left: 4px solid var(--pink-hot);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(255, 78, 205, 0.08);
    margin: var(--space-lg) 0;
}

.callout--tip { border-left-color: var(--gold); background: rgba(251, 191, 36, 0.08); }
.callout--warning { border-left-color: #fb7185; background: rgba(251, 113, 133, 0.08); }

.callout__title {
    margin: 0 0 0.3rem;
    font-weight: 700;
}

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

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space);
    margin: var(--space-xl) 0;
}

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

.stat-block {
    text-align: center;
    padding: var(--space-lg) var(--space);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.stat-block__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, calc(2vw + 1rem), 2.4rem);
    color: var(--pink-hot);
    text-shadow: 0 0 14px rgba(255, 78, 205, 0.5);
    line-height: 1.1;
}

.stat-block__label {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.pull-quote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    border-top: 2px solid var(--violet);
    border-bottom: 2px solid var(--violet);
    text-align: center;
}

.pull-quote p {
    font-size: clamp(1.15rem, calc(1vw + 1rem), 1.45rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.pull-quote__cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   VERGLEICHSTABELLE - empfohlene Spalte hervorgehoben
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin: var(--space-lg) 0;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
    background: var(--surface);
}

.compare-table th,
.compare-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
}

.compare-table thead th {
    background: var(--surface-raised);
    font-weight: 700;
    color: var(--pink);
}

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

.compare-table .is-recommended {
    background: rgba(255, 78, 205, 0.1);
    box-shadow: inset 0 2px 0 var(--pink-hot), inset 0 -2px 0 var(--pink-hot);
    font-weight: 600;
}

/* ============================================
   SEO-TEXT - Prosa-Bereich mit Bild & Ankern
   ============================================ */
.seo-text {
    max-width: 76ch;
    margin: 0 auto;
}

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

.seo-text ul {
    padding-left: 1.3rem;
}

.seo-text li {
    margin-bottom: 0.4rem;
}

.seo-text__figure {
    margin: 0 0 var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: clip;
    border: 2px solid var(--pink-deep);
    box-shadow: var(--glow-pink);
}

.seo-text__figure img {
    display: block;
    width: 100%;
}

@media (min-width: 1024px) {
    .seo-text__figure {
        float: left;
        width: 42%;
        margin: 0.3rem var(--space-xl) var(--space) 0;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

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

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

.site-brand__text--footer {
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 42ch;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: var(--space);
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: var(--text-soft);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--pink-hot);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.payment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-chip {
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-legal {
    border-top: 1px solid var(--line);
    padding-top: var(--space-lg);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: var(--space);
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--pink-hot);
    color: var(--pink-hot);
    font-weight: 700;
    box-shadow: 0 0 12px rgba(255, 78, 205, 0.4);
}

.badge-license,
.badge-ssl {
    padding: 0.5rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-legal p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

/* ============================================
   SCROLL-REVEAL - nur JS-Enhancement, unenhanced sichtbar
   ============================================ */
.reveal {
    opacity: 1;
}

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

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

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

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

    .btn, .game-card, .faq-item__chevron, .menu-toggle span {
        transition: none;
    }
}
