/* ============================================================
   Spinko Funnel 1 — Stylesheet
   Klon von Wild-Robin Funnel-1 mit Spinko-Brand-Tokens
   (Dark Navy/Purple + Spinko-Green + Lila-Accent)
   ============================================================ */

/* ---------- 1. Design-Tokens (Spinko-Brand) ---------- */
:root {
  /* Background — Dark Navy/Purple */
  --bg-deep: #1A0D3E;       /* fast schwarz, dunkler navy */
  --bg-mid: #2A1461;        /* card/sticker background */
  --bg-light: #3D1F7A;      /* tile/disc-segment dark */

  /* Accent — Spinko-Purple (aus Casino-Site Banner) */
  --purple: #6B3DDB;
  --purple-bright: #7A4CE6;
  --purple-deep: #4B2A9C;

  /* Spinko-Green (aus Logo SVG: #FF48CD) */
  --green: #FF48CD;
  --green-bright: #FF83DD;
  --green-deep: #A62A84;
  --orange: #FF8A00;
  --orange-bright: #FFA726;
  --orange-deep: #F5562D;
  --gold: #FAD879;
  --cream: #FCE393;

  /* Text */
  --text: #FFFFFF;
  --text-soft: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.6);

  /* Akzente / Labels */
  --pill-bg: var(--purple);
  --highlight-badge: var(--green);   /* Win-Segment auf der Disc */

  /* Sizing */
  --radius-pill: 9999px;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;

  /* Typo */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}

/* ---------- 2. Reset / Normalize ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  background-color: var(--bg-deep);
  /* Spinko: kein Bild-Hintergrund, dafür Layered-Gradient mit Glow-Spots */
  background-image:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(91, 46, 184, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(21, 203, 60, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(139, 95, 224, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, #1A0D3E 0%, #1A0D3E 60%, #231045 100%);
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

button {
  font-family: inherit;
  color: inherit;
}

a {
  color: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* ---------- 3. Section-Container Placeholder ---------- */
.section-placeholder {
  display: block;
}

/* ---------- 4. Sound-Toggle (Global) ---------- */
.sound-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1.5px solid rgba(139, 95, 224, 0.5);
  border-radius: var(--radius-pill);
  background: rgba(26, 27, 61, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text);
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  border-color: var(--purple-bright);
  background: rgba(26, 27, 61, 0.95);
  outline: none;
}

.sound-toggle:active {
  transform: scale(0.94);
}

.sound-toggle.sound-on {
  background: var(--green);
  border-color: var(--green-bright);
  color: var(--bg-deep);
}

.sound-toggle.sound-on svg line {
  display: none;
}

/* ---------- 5. Hero (S1) ---------- */
.hero-container {
  position: relative;
  max-width: 1024px;
  margin-inline: auto;
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
  overflow: hidden;
}

.glow-spot {
  position: absolute;
  top: 3rem;
  width: 8rem;
  height: 8rem;
  border-radius: var(--radius-pill);
  filter: blur(64px);
  pointer-events: none;
}
.glow-spot-left  { left: 25%;  background: var(--green);          opacity: 0.22; }
.glow-spot-right { right: 25%; background: var(--purple-bright);  opacity: 0.30; }

.wordmark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.wordmark-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.wordmark-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--bg-deep);
}

/* Spinko Logo im Hero */
.wordmark-img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 56px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 18px rgba(21, 203, 60, 0.25));
}
@media (max-width: 600px) {
  .wordmark-img {
    max-width: 180px;
    max-height: 48px;
  }
}

.hero-label {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-pill);
  background: var(--purple);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.hero-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--green-bright);
  text-shadow: 0 4px 28px rgba(34, 229, 76, 0.45);
  margin-bottom: 0.35rem;
}
.hero-sub {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--green-deep) 100%);
  color: var(--bg-deep);
  box-shadow:
    0 0 30px rgba(34, 229, 76, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.hero-badge-percent {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
}
.hero-badge-text {
  font-weight: 700;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .hero-container { padding: 2.5rem 3rem 2rem; }
  .wordmark-img { max-width: 280px; max-height: 72px; }
  .wordmark-text  { font-size: 1.5rem; }
  .wordmark-star  { width: 2.25rem; height: 2.25rem; }
  .hero-label     { font-size: 0.875rem; }
  .hero-lead      { font-size: 44px; }
  .hero-number    { font-size: 84px; }
  .hero-sub       { font-size: 32px; }
  .hero-badge-percent { font-size: 1.5rem; }
  .hero-badge-text    { font-size: 0.875rem; }
}

/* ---------- 6. Wheel (S2 + S4) ---------- */
.wheel-section {
  padding: 1rem 1.5rem 2.5rem;
  max-width: 1024px;
  margin-inline: auto;
}

.wheel-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.wheel-label-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-pill);
  background: var(--purple);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.wheel-subline {
  color: var(--text-soft);
  font-size: 0.875rem;
}

.wheel-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.5rem;
}

/* Atmosphere-Emojis (floating outside the disc) */
.atmo {
  position: absolute;
  font-size: 1.5rem;
  pointer-events: none;
  user-select: none;
}
.atmo-1 { top: -1rem; left: -1.5rem; font-size: 1.875rem; }
.atmo-2 { top: 4rem;  right: -2rem; }
.atmo-3 { bottom: -0.5rem; left: -1rem; }

/* Pointer-Triangles */
.pointer {
  position: absolute;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(139, 95, 224, 0.5);
}
.pointer-top {
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green-bright);
  box-shadow: 0 0 50px rgba(34, 229, 76, 0.5);
  z-index: 2;
}
.pointer-bottom {
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.pointer-left {
  left: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.pointer-right {
  right: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

/* Wheel-Rotor — Wrapper around disc + labels, rotates as one unit */
.wheel-rotor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

/* Wheel-Disc — Spinko Purple/Navy alternierend */
.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid var(--purple-bright);
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.65) 0 18%, transparent 19%),
    conic-gradient(
      from -15deg,
      #2A1461 0deg 30deg, #6B3DDB 30deg 60deg,
      #2A1461 60deg 90deg, #6B3DDB 90deg 120deg,
      #2A1461 120deg 150deg, #6B3DDB 150deg 180deg,
      #2A1461 180deg 210deg, #6B3DDB 210deg 240deg,
      #2A1461 240deg 270deg, #6B3DDB 270deg 300deg,
      #2A1461 300deg 330deg, #6B3DDB 330deg 360deg
    );
  box-shadow:
    0 0 60px rgba(139, 95, 224, 0.5),
    inset 0 0 0 4px var(--bg-deep),
    inset 0 0 0 6px var(--purple-deep);
}

/* SVG-Overlay with labels (lives inside .wheel-rotor, rotates with disc) */
.wheel-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.wheel-segment-label {
  font-family: var(--font-display);
  font-weight: 700;
  pointer-events: none;
}

/* Highlight-Reveal (grünes Badge erscheint erst NACH Spin-Ende) */
.highlight-badge {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 350ms ease;
}
.highlight-text {
  transition: fill 350ms ease;
}
.wheel-rotor.revealed .highlight-badge {
  opacity: 1;
  animation: badge-pop 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 1;
}
.wheel-rotor.revealed .highlight-text {
  fill: #FFFFFF;
  font-weight: 900;
}

/* Wheel-2: gleiches Highlight-Reveal-Verhalten wie Wheel-1 */
#wheel-2-rotor.revealed .highlight-text {
  fill: #FFFFFF;
}

/* Wheel-2 atmo-emojis spiegelverkehrt zu Wheel-1 */
#wheel-2 .atmo-1 { left: auto; right: -1.5rem; }
#wheel-2 .atmo-2 { right: auto; left: -2rem; }
#wheel-2 .atmo-3 { left: auto; right: -1rem; }

@keyframes badge-pop {
  0%   { transform: scale(0.4); }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* Confetti Burst — Spinko-Farben */
.confetti {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 5;
  animation: confetti-burst forwards cubic-bezier(0.18, 0.7, 0.35, 1);
  will-change: transform, opacity;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes confetti-burst {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  55% {
    transform: translate(var(--tx), var(--ty)) rotate(calc(var(--r) * 0.5));
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx2), var(--ty2)) rotate(var(--r));
    opacity: 0;
  }
}

/* Spin-Button (center of wheel) — Spinko Green */
.spin-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  z-index: 3;
  transition: transform 200ms ease, filter 200ms ease;
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--green-deep) 100%);
  color: #FFFFFF;
  border: 3px solid var(--purple-bright);
  box-shadow:
    0 0 0 1px var(--bg-deep),
    0 0 30px rgba(34, 229, 76, 0.45),
    0 4px 0 var(--green-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.spin-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.spin-button:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}
.spin-button:disabled {
  cursor: default;
  filter: brightness(0.85) saturate(0.6);
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .wheel-section    { padding: 1.5rem 3rem 3.5rem; }
  .wheel-subline    { font-size: 1rem; }
  .wheel-container  { max-width: 460px; margin-bottom: 2rem; }
  .atmo             { font-size: 1.875rem; }
  .atmo-1           { font-size: 2.25rem; }
  .spin-button      { width: 7rem; height: 7rem; font-size: 1rem; }
}

/* ---------- 7. Modal (S3 + S5) — fixed overlay ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(11, 13, 46, 0.88);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  overflow-y: auto;
}
.modal[hidden] {
  display: none;
}
.modal.visible {
  display: flex;
  animation: modal-overlay-in 280ms ease-out;
}
.modal.visible .modal-frame,
.modal.visible .modal-final-frame {
  animation: modal-frame-in 380ms cubic-bezier(0.34, 1.4, 0.6, 1);
}

@keyframes modal-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-frame-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-frame {
  max-width: 28rem;
  margin: 0 auto;
  padding: 4px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple-bright) 0%, var(--green) 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
}

.modal-inner {
  padding: 2rem 2rem 2.25rem;
  border-radius: calc(var(--radius-lg) - 4px);
  background: var(--bg-mid);
  text-align: center;
}

.modal-top-emoji {
  display: block;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal-top-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.modal-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--green-bright);
  text-shadow: 0 4px 24px rgba(34, 229, 76, 0.5);
  margin-bottom: 0.75rem;
}

.modal-body {
  font-family: var(--font-body);
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.cta-green {
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--green-deep) 100%);
  color: #FFFFFF;
  border: 3px solid var(--purple-bright);
  box-shadow:
    0 0 0 1px var(--bg-deep),
    0 0 30px rgba(34, 229, 76, 0.4),
    0 4px 0 var(--green-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.cta-modal {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 1.0625rem;
  transition: transform 200ms ease, filter 200ms ease;
}
.cta-modal:hover {
  transform: scale(1.02);
}
.cta-modal:active {
  transform: scale(0.98);
}
.cta-modal:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .modal-inner { padding: 2.5rem 2.75rem 3rem; }
  .modal-top-emoji { font-size: 5rem; }
  .modal-top-text { font-size: 2rem; }
  .modal-number { font-size: 4rem; }
}

/* ---------- 7c. Final-Modal (S5) ---------- */
.modal-final-frame {
  max-width: 28rem;
  margin: 0 auto;
  padding: 6px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--purple-bright) 50%, var(--green) 100%);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(34, 229, 76, 0.40);
}

.modal-final-inner {
  padding: 2rem 1.75rem 2.25rem;
  border-radius: calc(var(--radius-lg) - 6px);
  background: var(--bg-mid);
  text-align: center;
}

.modal-final-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.modal-final-sub {
  font-family: var(--font-body);
  color: var(--text-soft);
  margin-bottom: 1.75rem;
}

.reveal-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.reveal-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  text-align: left;
  border: 1px solid rgba(139, 95, 224, 0.45);
  border-radius: var(--radius-md);
  background: rgba(42, 43, 79, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.reveal-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.reveal-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 1;
  color: var(--green-bright);
  text-shadow: 0 2px 12px rgba(34, 229, 76, 0.4);
}

/* Trust-Strip im Hero */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.trust-strip-item { display: inline-flex; align-items: center; gap: 0.3rem; }
.trust-strip-item strong { color: var(--text-soft); }
.trust-stars { color: #FFC53D; letter-spacing: -0.04em; }

/* Vorframing direkt über dem CTA — nimmt die Überraschung raus */
.next-step-hint {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-soft);
  background: rgba(139, 95, 224, 0.14);
  border-left: 3px solid var(--purple, #8B5FE0);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1.1rem;
  text-align: left;
}
.next-step-hint strong { color: var(--text); }

/* Zahlungsmethoden */
.pay-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.pay-chip {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.04);
}

/* Reviews */
.reviews-section {
  padding: 2rem 1.25rem 2.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.reviews-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-align: center;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.review-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(139, 95, 224, 0.28);
  border-radius: var(--radius-md);
  background: rgba(42, 43, 79, 0.55);
  text-align: left;
}
.review-avatar {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #8B5FE0, #FF48CD);
}
.review-stars { color: #FFC53D; font-size: 0.7rem; letter-spacing: -0.04em; }
.review-name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-soft);
  margin: 0.1rem 0 0.3rem;
}
.review-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Exit-Intent-Modal */
.exit-close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.exit-warning-emoji { font-size: 2rem; display: block; margin-bottom: 0.4rem; }
.exit-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.exit-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.exit-sub strong { color: var(--green-bright); }
.exit-stay-link {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}

/* Bonus-Mechanik: macht aus "gewonnen" ein verstandenes Angebot */
.bonus-math {
  margin-bottom: 1.5rem;
  padding: 0.875rem 1rem;
  border: 1px dashed rgba(139, 95, 224, 0.5);
  border-radius: var(--radius-md);
  background: rgba(42, 43, 79, 0.45);
}
.bonus-math-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.bonus-math-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}
.bonus-math-in { color: var(--text-soft); }
.bonus-math-arrow { color: var(--text-muted); }
.bonus-math-out { color: var(--green-bright); }

.modal-fineprint {
  font-family: var(--font-body);
  font-size: 0.65rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 1rem;
}

.cta-final {
  padding: 1.125rem 1.5rem;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  box-shadow:
    0 0 0 1px var(--bg-deep),
    0 0 40px rgba(34, 229, 76, 0.55),
    0 6px 0 var(--green-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.cta-final:hover {
  transform: scale(1.025);
}
.cta-final:active {
  transform: scale(0.985);
  box-shadow:
    0 0 0 1px var(--bg-deep),
    0 0 40px rgba(34, 229, 76, 0.55),
    0 2px 0 var(--green-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .modal-final-inner { padding: 2.5rem 2.25rem 2.75rem; }
  .modal-final-headline { font-size: 2.5rem; }
  .reveal-card { padding: 1.125rem 1.5rem; }
  .reveal-value { font-size: 2.125rem; }
}

/* ---------- 7b. Progress-Banner (Guthaben-Anzeige) ---------- */
.progress-banner {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--green-bright);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(26, 27, 61, 0.95) 0%, rgba(42, 43, 79, 0.95) 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(34, 229, 76, 0.35);
  animation: progress-banner-in 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
}
.progress-banner[hidden] {
  display: none;
}
.progress-banner-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.progress-banner-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.progress-banner-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--green-bright);
  text-shadow: 0 1px 6px rgba(34, 229, 76, 0.45);
  white-space: nowrap;
}

@keyframes progress-banner-in {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-32px) scale(0.85); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@media (min-width: 768px) {
  .progress-banner { padding: 0.625rem 1.25rem; gap: 0.625rem; }
  .progress-banner-value { font-size: 1.0625rem; }
}

/* ---------- 8. Sticker-Strip (S6) ---------- */
.sticker-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  max-width: 32rem;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
}

.sticker {
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(139, 95, 224, 0.5);
  border-radius: var(--radius-pill);
  background: rgba(26, 27, 61, 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .sticker-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 60rem;
  }
  .sticker { font-size: 0.875rem; padding: 0.5625rem 1.125rem; }
}

/* ---------- 9. Slot-Tile-Mosaik (S7) ---------- */
.slot-mosaik-section {
  padding: 3rem 1.5rem;
  max-width: 1024px;
  margin-inline: auto;
}

.slot-mosaik-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.5rem;
}

.slot-mosaik-sub {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.slot-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.slot-tile {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid var(--purple-bright);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--purple-deep) 100%);
  box-shadow:
    0 0 0 1px var(--bg-deep),
    0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .slot-mosaik-headline { font-size: 1.625rem; }
  .slot-tile-grid { grid-template-columns: repeat(8, 1fr); }
  .slot-tile { font-size: 1.875rem; }
}

/* ---------- 10. Compliance-Footer (S8) ---------- */
.compliance-footer {
  margin-top: 2rem;
  padding: 2.5rem 1.5rem;
  border-top: 2px solid var(--purple-deep);
  background: #0F0724;
}

.compliance-footer-inner {
  max-width: 1024px;
  margin-inline: auto;
}

.compliance-footer p {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.compliance-footer a {
  color: rgba(34, 229, 76, 0.85);
  text-decoration: underline;
}

.footer-disclosure {
  opacity: 0.65;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(139, 95, 224, 0.18);
}

.footer-links a {
  color: var(--text-muted);
}

/* ---------- 11. Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
