/* ============================================================
   Spinko Funnel 5 — Jackpot-Spin (Slot-Reels + 3-Versuche)
   Klon von Wild-Robin Funnel-5 mit Spinko-Brand-Tokens
   ============================================================ */

:root {
  /* Navy/Dark Theme (Casino-Slot-Aesthetic) */
  --bg-deep:       #1A0D3E;
  --bg-mid:        #2A1461;
  --bg-light:      #3D1F7A;

  /* Akzent-Farben */
  --burgundy:        #4B2A9C;
  --burgundy-bright: #6B3DDB;
  --gold:            #7A4CE6;
  --gold-bright:     #FF83DD;
  --gold-deep:       #A62A84;
  --cream:           #FFFFFF;
  --cream-bright:    #FFFFFF;
  --red-label:       #6B3DDB;
  --green-cta:       #A62A84;
  --green-cta-bright:#FF83DD;

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

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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 50% 0%, rgba(139,95,224,0.18) 0%, transparent 55%),
    linear-gradient(180deg, #1A0D3E 0%, #2A1461 40%, #1A0D3E 100%);
  color: var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.font-display { font-family: var(--font-display); }
.hidden { display: none !important; }

.container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============== HEADER (Brand) ============== */
.brand-bar {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.25rem 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.brand-logo-img { height: 36px; width: auto; }

/* ============== HERO ============== */
.hero {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0.25rem 1rem 0.5rem;
  text-align: center;
}

.jackpot-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34,229,76,0.4);
  background: rgba(10,15,28,0.7);
  backdrop-filter: blur(4px);
  margin-bottom: 0.6rem;
}
.jackpot-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.jackpot-counter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  text-shadow:
    0 0 24px rgba(34, 229, 76, 0.65),
    0 2px 4px rgba(0,0,0,0.7);
}
@media (min-width: 768px) {
  .jackpot-counter { font-size: 2.25rem; }
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--cream-bright);
  margin-bottom: 0.6rem;
  padding: 0 0.5rem;
}
.hero-h1 .gold { color: var(--gold-bright); display: block; margin-top: 0.2rem; }
@media (min-width: 768px) {
  .hero-h1 { font-size: 2.25rem; }
}

/* Live-Aktivitäts-Feed — einzeilig, ellipsis wenn zu lang */
.live-feed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(34,229,76,0.1);
  border: 1px solid rgba(34,229,76,0.45);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.9);
  max-width: calc(100% - 1rem);
  transition: opacity 350ms ease;
  white-space: nowrap;
  overflow: hidden;
}
.live-feed #live-feed-text {
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.live-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-cta-bright);
  box-shadow: 0 0 8px var(--green-cta-bright);
  animation: live-pulse 1.6s infinite;
  flex: none;
}
.live-feed.is-fading { opacity: 0; }

@keyframes live-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.35); }
}

/* ============== SLOT SECTION ============== */
.slot-section {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 0.75rem 0.5rem;
}
.slot-card {
  max-width: 28rem;
  margin: 0 auto;
  background: #161e36;
  border: 1px solid rgba(34,229,76,0.18);
  border-radius: 18px;
  padding: 0.6rem 0.75rem 0.85rem;
  box-shadow:
    0 20px 50px -10px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02);
  position: relative;
}
@media (min-width: 768px) {
  .slot-card { padding: 1.25rem 1rem 1.4rem; }
  .slot-section { padding: 0 1rem 1.5rem; }
}

.lucky-spin-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
}
.lucky-spin-header::before,
.lucky-spin-header::after {
  content: '•';
  color: var(--gold-bright);
  font-size: 1.4rem;
}
.lucky-spin-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,229,76,0.55), transparent);
  margin: 0.4rem 0 0.6rem;
}

/* Reels (3×3 Window mit Cream-BG, Payline horizontal mitte) */
.slot-reels-wrap {
  position: relative;
  background: #0a0f1c;
  border-radius: 12px;
  padding: 6px;
  box-shadow: inset 0 4px 16px rgba(0,0,0,0.65);
}
.slot-reels {
  display: flex;
  gap: 6px;
  position: relative;
}
.slot-reel {
  flex: 1;
  height: 195px;
  background: linear-gradient(180deg, #f4ede0 0%, #faf5ea 50%, #f4ede0 100%);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.15),
    inset 0 -2px 6px rgba(0,0,0,0.1),
    0 2px 4px rgba(0,0,0,0.3);
}
.slot-reel-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.slot-symbol {
  height: 65px;
  flex: 0 0 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sym-bell-emoji,
.sym-diamond-emoji,
.sym-cherry-emoji,
.sym-clover-emoji,
.sym-seven-emoji,
.sym-token-emoji {
  font-size: 2.1rem !important;
}
.slot-symbol:last-child { border-bottom: none; }

/* Symbol-Visuals */
.sym-bell-emoji   { font-size: 3rem; filter: drop-shadow(0 3px 4px rgba(0,0,0,0.35)); }
.sym-cherry-emoji { font-size: 3rem; filter: drop-shadow(0 3px 4px rgba(0,0,0,0.35)); }

.sym-diamond {
  width: 54px; height: 50px;
  background: linear-gradient(135deg, #b896f5 0%, #7c5dd6 30%, #4a3990 60%, #2d2358 100%);
  clip-path: polygon(50% 0%, 100% 30%, 75% 100%, 25% 100%, 0% 30%);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,0.4));
  position: relative;
}
.sym-diamond::after {
  content: '';
  position: absolute;
  inset: 6% 12% 60% 12%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 100%);
  clip-path: polygon(50% 0%, 100% 30%, 75% 100%, 25% 100%, 0% 30%);
}
.sym-seven {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--red-label);
  text-shadow:
    2px 2px 0 #6b1f12,
    0 4px 6px rgba(0,0,0,0.4);
  transform: skewX(-6deg);
}
.sym-token-spins {
  width: 70px; height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffe089 0%, var(--gold-bright) 35%, var(--gold) 60%, #A62A84 100%);
  box-shadow:
    inset 0 -3px 6px rgba(138,100,40,0.6),
    inset 0 3px 6px rgba(255,255,255,0.4),
    0 3px 6px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  transform: rotate(-6deg);
}
.sym-token-spins .num { font-size: 1.35rem; }
.sym-token-spins .lbl { font-size: 0.6rem; letter-spacing: 0.06em; margin-top: 1px; }

/* Payline (goldene horizontale Mittel-Linie) */
.payline {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(34,229,76,0.95) 18%,
    rgba(34,229,76,0.95) 82%,
    transparent 100%);
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(34,229,76,0.55);
}
.slot-reels-wrap.is-win {
  box-shadow:
    inset 0 4px 16px rgba(0,0,0,0.5),
    0 0 32px rgba(34,229,76,0.45);
}
.slot-reels-wrap.is-win .slot-reel {
  box-shadow:
    inset 0 2px 6px rgba(34,229,76,0.25),
    inset 0 -2px 6px rgba(34,229,76,0.2),
    0 2px 4px rgba(0,0,0,0.3),
    0 0 16px rgba(34,229,76,0.35);
}

/* Side-Lights */
.slot-side-lights {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slot-side-lights.left  { left: -20px; }
.slot-side-lights.right { right: -20px; }
.side-light {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold-deep) 60%, #1A0D3E 100%);
  box-shadow: 0 0 8px var(--gold-bright);
  animation: pulse-light 1.4s infinite alternate;
}
.slot-side-lights.right .side-light:nth-child(odd)  { animation-delay: 0.3s; }
.slot-side-lights.left  .side-light:nth-child(even) { animation-delay: 0.5s; }
@keyframes pulse-light {
  0%   { opacity: 0.35; box-shadow: 0 0 4px var(--gold-deep); }
  100% { opacity: 1;    box-shadow: 0 0 12px var(--gold-bright); }
}

/* Spin Button */
.spin-btn {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  background: linear-gradient(180deg, #f7d57a 0%, var(--gold-bright) 40%, var(--gold) 100%);
  border: 2px solid var(--cream-bright);
  color: #2A1461;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 6px 0 #A62A84,
    0 0 0 1px var(--bg-deep),
    inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform 150ms ease, filter 150ms ease;
  display: block;
}
.spin-btn:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.04); }
.spin-btn:active:not(:disabled) {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #A62A84, 0 0 0 1px var(--bg-deep), inset 0 1px 0 rgba(255,255,255,0.55);
}
.spin-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.spin-btn-subline {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(26,34,56,0.65);
  margin-top: 4px;
  text-transform: uppercase;
}
.spin-btn.is-won { animation: btn-won-pulse 2.4s infinite; }
@keyframes btn-won-pulse {
  0%, 100% { box-shadow: 0 6px 0 #A62A84, 0 0 0 1px var(--bg-deep), 0 0 0 0 rgba(34,229,76,0.6), inset 0 1px 0 rgba(255,255,255,0.55); }
  50%      { box-shadow: 0 6px 0 #A62A84, 0 0 0 1px var(--bg-deep), 0 0 0 12px rgba(34,229,76,0), inset 0 1px 0 rgba(255,255,255,0.55); }
}

/* Miss-Banner (Inline) */
.miss-banner {
  max-width: 28rem;
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(91, 46, 184, 0.12);
  border: 1px solid rgba(91, 46, 184, 0.55);
  border-radius: 12px;
  animation: miss-banner-in 320ms cubic-bezier(0.34, 1.4, 0.6, 1);
}
.miss-banner-icon {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(91, 46, 184, 0.25);
  border: 1px solid rgba(91, 46, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-bright);
  font-weight: 900;
}
.miss-banner-title  { color: var(--cream-bright); font-weight: 700; }
.miss-banner-sub    { color: rgba(255,255,255,0.75); font-size: 0.8rem; margin-top: 0.15rem; }
@keyframes miss-banner-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Trust-Strip (unter Slot) */
.trust-strip-wrap { max-width: 28rem; margin: 1.5rem auto 0; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1.1rem;
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(34,229,76,0.18);
  border-bottom: 1px solid rgba(34,229,76,0.18);
  background: rgba(10,15,28,0.45);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}
.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.trust-strip-item .stars { color: var(--gold-bright); letter-spacing: 0.05em; }

/* ============== 3-Schritte-Erklärer ============== */
.steps-section {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.steps-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-align: center;
  color: var(--cream-bright);
  margin-bottom: 1.5rem;
}
.steps-headline .gold { color: var(--gold-bright); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.step-card {
  background: rgba(37,46,74,0.4);
  border: 1px solid rgba(34,229,76,0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}
.step-emoji { font-size: 1.875rem; margin-bottom: 0.5rem; }
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.step-text { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

/* ============== REVEAL-STACK (below-fold nach Win) ============== */
.reveal-stack {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.reveal-stack-inner {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.depleting-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(91,46,184,0.55);
  background: rgba(91,46,184,0.1);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.depleting-counter .num {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.depleting-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-label);
  box-shadow: 0 0 6px var(--red-label);
  animation: live-pulse 1.4s infinite;
}

.pill-green {
  display: inline-block;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(34,229,76,0.7);
  background: rgba(34,229,76,0.12);
  color: var(--green-cta-bright);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
}
.reveal-stack-h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--cream-bright);
  margin-bottom: 1.25rem;
}

.bonus-card {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  border: 1px solid rgba(34,229,76,0.35);
  border-radius: 14px;
  padding: 1.4rem 1.25rem 1.5rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 16px rgba(0,0,0,0.35);
  margin-bottom: 1.25rem;
}
.bonus-card-list {
  list-style: none;
  text-align: left;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bonus-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--cream);
}
.check-circle {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--green-cta-bright);
  color: var(--green-cta-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  font-size: 0.85rem;
}

.bonus-card-line {
  height: 1px;
  width: 60%;
  margin: 0.7rem auto;
  background: linear-gradient(90deg, transparent, rgba(34,229,76,0.4), transparent);
}

.social-proof-line {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* CTA Buttons */
.cta-gold {
  background: linear-gradient(180deg, #f7d57a 0%, var(--gold-bright) 40%, var(--gold) 100%);
  color: #2A1461;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow:
    0 6px 0 #A62A84,
    0 0 0 1px var(--bg-deep),
    0 0 32px rgba(34,229,76,0.45),
    inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform 200ms ease, filter 200ms ease;
  font-size: 1rem;
}
.cta-gold:hover { transform: scale(1.02); filter: brightness(1.05); }
.cta-gold:active {
  transform: scale(0.98);
  box-shadow: 0 2px 0 #A62A84, 0 0 0 1px var(--bg-deep), 0 0 32px rgba(34,229,76,0.45), inset 0 1px 0 rgba(255,255,255,0.55);
}
.cta-gold-block { display: block; width: 100%; }

/* Slim Timer-Text */
.timer-slim {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
}
.timer-slim .num {
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}

/* Vorframing direkt über dem CTA — nimmt die Überraschung raus */
.next-step-hint {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 197, 61, 0.10);
  border-left: 3px solid rgba(255, 197, 61, 0.65);
  border-radius: 0 8px 8px 0;
  padding: 0.65rem 0.85rem;
  margin: 0 0 1rem;
  text-align: left;
}
.next-step-hint strong { color: var(--cream, #F5E6C8); }

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

.hint-line {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* Reviews */
.reviews-h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  margin: 1.5rem 0 1rem;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-card {
  display: flex;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(34,229,76,0.22);
  border-radius: 12px;
  background: rgba(15,22,38,0.5);
}
.review-avatar {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--burgundy-bright) 100%);
  color: var(--cream-bright);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.35);
}
.review-body { flex: 1; text-align: left; min-width: 0; }
.review-stars { color: var(--gold-bright); font-size: 0.8rem; letter-spacing: 0.08em; line-height: 1; }
.review-name { font-size: 0.8rem; color: rgba(255,255,255,0.85); font-weight: 600; margin-top: 0.15rem; }
.review-text { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 0.35rem; line-height: 1.4; font-style: italic; }

/* ============== STICKY BOTTOM-CTA ============== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, rgba(15,22,38,0.96) 0%, rgba(15,22,38,1) 100%);
  border-top: 1px solid rgba(34,229,76,0.35);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.45);
  display: none;
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(0.34, 1.3, 0.6, 1);
}
.sticky-cta.is-active { display: block; }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-cta-info { flex: 1; text-align: left; }
.sticky-cta-info .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.sticky-cta-info .val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.sticky-cta-btn {
  background: linear-gradient(180deg, #f7d57a 0%, var(--gold-bright) 40%, var(--gold) 100%);
  color: var(--bg-deep);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 0 #A62A84, 0 0 0 1px var(--bg-deep), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform 150ms ease;
}
.sticky-cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #A62A84, 0 0 0 1px var(--bg-deep), inset 0 1px 0 rgba(255,255,255,0.55);
}
body.has-sticky-cta { padding-bottom: 80px; }

/* ============== MODAL (Win + Exit) ============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(10, 15, 28, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
}
.modal.is-open { display: flex; animation: overlay-in 280ms ease-out; }
.modal-frame {
  max-width: 26rem;
  width: 100%;
  padding: 1px;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(34,229,76,0.55) 0%, rgba(34,229,76,0.15) 50%, rgba(34,229,76,0.55) 100%);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.65);
  animation: frame-in 380ms cubic-bezier(0.34, 1.4, 0.6, 1);
  position: relative;
}
.modal-inner {
  padding: 1.25rem 1.25rem 1.25rem;
  border-radius: calc(1.4rem - 1px);
  background: #121a2e;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 480px) {
  .modal-inner { padding: 2.25rem 1.75rem 2rem; }
}
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes frame-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Sterne-Sprinkle */
.star-sprinkle {
  position: absolute;
  pointer-events: none;
  color: var(--gold-bright);
  opacity: 0.55;
  filter: drop-shadow(0 0 3px rgba(34,229,76,0.6));
  z-index: 0;
}
.star-sprinkle.s1 { top: 8%;  left: 8%;  font-size: 1.1rem; }
.star-sprinkle.s2 { top: 14%; right: 12%; font-size: 0.85rem; }
.star-sprinkle.s3 { top: 38%; left: 6%;  font-size: 0.95rem; }
.star-sprinkle.s4 { top: 42%; right: 4%;  font-size: 1.05rem; }
.star-sprinkle.s5 { bottom: 28%; left: 10%; font-size: 0.8rem; }
.star-sprinkle.s6 { bottom: 36%; right: 8%; font-size: 1rem; }

.modal-crown {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.375rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 480px) {
  .modal-crown { font-size: 3rem; margin-bottom: 0.75rem; }
}
.modal-h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 7.5vw, 2.25rem);
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow-wrap: break-word;
  padding: 0 0.25rem;
}
@media (min-width: 480px) {
  .modal-h3 { letter-spacing: 0.18em; }
}
.modal-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  padding: 0 0.25rem;
}
@media (min-width: 480px) {
  .modal-sub { font-size: 0.875rem; margin-bottom: 1.25rem; padding: 0 0.5rem; }
}
.modal-sub strong { color: var(--cream-bright); }

.modal-bonus-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  border: 1px solid rgba(34,229,76,0.35);
  border-radius: 14px;
  padding: 0.875rem 1rem 1rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 16px rgba(0,0,0,0.35);
  margin-bottom: 0.75rem;
}
@media (min-width: 480px) {
  .modal-bonus-card { padding: 1.4rem 1.25rem 1.5rem; margin-bottom: 1.25rem; }
}
.modal-bonus-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--gold-bright);
  line-height: 1;
}
.modal-bonus-mid {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.375rem;
  color: var(--gold-bright);
  margin-top: 0.25rem;
}
@media (min-width: 480px) {
  .modal-bonus-big { font-size: 2.25rem; }
  .modal-bonus-mid { font-size: 1.75rem; }
}
.modal-bonus-pre {
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.modal-bonus-where {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
}
.modal-bonus-where strong { color: var(--cream); }

.modal-fineprint {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.exit-modal-inner { padding: 2.25rem 1.75rem 1.75rem; text-align: center; }
.exit-close {
  position: absolute;
  top: 0.6rem;
  right: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
  transition: background 150ms ease, color 150ms ease;
}
.exit-close:hover { background: rgba(255,255,255,0.15); color: var(--cream-bright); }
.exit-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--cream-bright);
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.exit-warning-emoji { font-size: 3rem; display: block; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.exit-timer-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}
.exit-stay-link {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.exit-stay-link:hover { color: rgba(255,255,255,0.75); }

/* ============== Confetti ============== */
.confetti-host {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  overflow: hidden;
}
.confetti {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  animation: confetti-burst forwards cubic-bezier(0.18, 0.7, 0.35, 1);
  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; }
}

/* ============== COMPLIANCE FOOTER ============== */
.compliance-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(34,229,76,0.3);
  margin-top: 2rem;
}
.compliance-footer-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.compliance-footer strong { color: var(--cream-bright); }
.compliance-footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  transition: color 200ms ease;
}
.compliance-footer a:hover { color: var(--gold); }
.compliance-footer-disclosure {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}

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

/* Visually-hidden helper */
.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;
}
