/* =========================================================
   STARLIGHT MAIDEN — Promo Website Styles
   Kawaii-vector celestial palette · Sail + Nunito
   ========================================================= */

:root {
  /* Brand */
  --brand-pink: #F5C9D6;
  --brand-pink-dark: #E0A8BC;
  --brand-blue: #A8C8E8;
  --brand-blue-dark: #7FA9D0;
  --brand-lavender: #C9B8E0;
  --bg-cream: #FAF5EC;
  --surface-pale: #EFE8F2;
  --surface-elev: #FBEDF2;
  --ink-plum: #3A2E4A;
  --ink-plum-soft: #6B5E7E;
  --ink-plum-mute: #9A91A8;
  --aurora-mint: #A8D9CA;
  --gold: #E8D272;
  --gold-deep: #C9A93F;
  --night-sky: #1F1B33;
  --night-mid: #352B5A;
  --danger: #C44A5E;

  /* Type */
  --font-display: 'Sail', 'Great Vibes', 'Cormorant Garamond', serif;
  --font-body: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1180px;
  --radius-card: 16px;
  --radius-btn: 999px;

  /* Gradients */
  --grad-sky: linear-gradient(180deg, #FAF5EC 0%, #EFE8F2 50%, #DCE9F4 100%);
  --grad-night: linear-gradient(180deg, #1F1B33 0%, #352B5A 60%, #C9B8E0 100%);
  --grad-legendary: radial-gradient(circle at 50% 50%, #FBEDF2 0%, #E8D272 70%, #C9A93F 100%);
  --grad-cta: linear-gradient(180deg, #F5C9D6 0%, #E0A8BC 100%);
  --grad-gold: linear-gradient(120deg, #FBEDF2 0%, #E8D272 50%, #C9A93F 100%);
  --grad-aurora: linear-gradient(120deg, #F5C9D6 0%, #C9B8E0 33%, #A8C8E8 66%, #A8D9CA 100%);
}

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

body {
  background: var(--bg-cream);
  color: var(--ink-plum);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-blue-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* Sparkle decoration utility */
.sparkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle 1.5px at 12% 18%, rgba(232, 210, 114, .8) 50%, transparent 51%),
    radial-gradient(circle 1px at 78% 22%, rgba(255, 255, 255, .9) 50%, transparent 51%),
    radial-gradient(circle 2px at 30% 70%, rgba(232, 210, 114, .6) 50%, transparent 51%),
    radial-gradient(circle 1px at 88% 78%, rgba(255, 255, 255, .8) 50%, transparent 51%),
    radial-gradient(circle 1.5px at 55% 40%, rgba(201, 184, 224, .7) 50%, transparent 51%),
    radial-gradient(circle 1px at 18% 88%, rgba(232, 210, 114, .7) 50%, transparent 51%),
    radial-gradient(circle 1.5px at 62% 15%, rgba(255, 255, 255, .85) 50%, transparent 51%),
    radial-gradient(circle 1px at 8% 50%, rgba(168, 200, 232, .8) 50%, transparent 51%),
    radial-gradient(circle 2px at 95% 45%, rgba(232, 210, 114, .55) 50%, transparent 51%),
    radial-gradient(circle 1px at 40% 92%, rgba(255, 255, 255, .7) 50%, transparent 51%);
  animation: sparkle-pulse 4s ease-in-out infinite;
}

@keyframes sparkle-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  color: var(--ink-plum);
  margin: 0;
  line-height: 1.2;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.t-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-pink-dark);
  margin-bottom: 14px;
}

.accent-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-aurora {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-pink { color: var(--brand-pink-dark); }
.accent-blue { color: var(--brand-blue-dark); }
.script-em { font-family: var(--font-display); font-style: italic; color: var(--brand-pink-dark); }

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 245, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--surface-pale);
}
.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-plum);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(232, 210, 114, .35), 0 0 0 1px rgba(201, 184, 224, .5);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink-plum);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--ink-plum);
}
.nav-links a:hover { color: var(--brand-pink-dark); }
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--ink-plum);
  border: none;
  cursor: pointer;
  padding: 6px;
}
@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 12px;
    background: var(--surface-elev);
    border: 1px solid var(--surface-pale);
    border-radius: 16px;
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(58, 46, 74, 0.15);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-sky);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 75% 25%, rgba(201, 184, 224, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(245, 201, 214, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(168, 200, 232, 0.35) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(232, 210, 114, 0.18);
  border: 1px solid rgba(232, 210, 114, 0.6);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.hero-title {
  font-size: clamp(44px, 8vw, 92px);
  line-height: 1;
  margin: 0 0 18px 0;
  color: var(--ink-plum);
}
.hero-title .script {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  display: block;
  font-size: 0.85em;
  color: var(--brand-pink-dark);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.hero-title .strong {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.5px;
  display: block;
  line-height: 0.95;
}
.hero-title .gold-glow {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(232, 210, 114, 0.3);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-plum-soft);
  max-width: 540px;
  margin: 0 0 30px 0;
  text-align: left;
  line-height: 1.55;
}
.hero-sub strong { color: var(--ink-plum); font-weight: 800; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.compliance-stripe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(168, 200, 232, 0.18);
  border: 1px solid rgba(168, 200, 232, 0.55);
  border-radius: 14px;
  color: var(--ink-plum);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.compliance-stripe svg { color: var(--brand-blue-dark); flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(232, 210, 114, 0.35) 0%, transparent 65%);
  z-index: 0;
  filter: blur(20px);
}
.hero-portrait {
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: 100%;
  border-radius: 30px;
  filter: drop-shadow(0 18px 40px rgba(58, 46, 74, 0.18));
  animation: float-soft 6s ease-in-out infinite;
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.15s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  min-height: 52px;
}
.btn-primary {
  background: var(--grad-cta);
  color: var(--ink-plum);
  box-shadow: 0 10px 26px rgba(224, 168, 188, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); color: var(--ink-plum); }
.btn-ghost {
  background: transparent;
  color: var(--ink-plum);
  border: 1.5px solid var(--ink-plum-mute);
}
.btn-ghost:hover { border-color: var(--brand-pink-dark); color: var(--brand-pink-dark); }
.btn-gold {
  background: var(--grad-gold);
  color: var(--ink-plum);
  box-shadow: 0 10px 26px rgba(232, 210, 114, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); color: var(--ink-plum); }

/* ---------- Section ---------- */

section.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 14px;
  color: var(--ink-plum);
  line-height: 1.05;
}
.section-head h2 .script {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.55em;
  color: var(--brand-pink-dark);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.section-head p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-plum-soft);
  font-size: 17px;
  line-height: 1.6;
}

.divider-sparkle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 18px;
}
.divider-sparkle .line {
  height: 1.5px;
  width: 64px;
  background: var(--grad-gold);
  border-radius: 1px;
}
.divider-sparkle .star {
  color: var(--gold);
  font-size: 16px;
  filter: drop-shadow(0 0 6px rgba(232, 210, 114, 0.7));
}

.section-bg-pastel {
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(245, 201, 214, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(168, 200, 232, 0.25) 0%, transparent 65%),
    var(--surface-pale);
}
.section-bg-night {
  background: var(--grad-night);
  color: var(--bg-cream);
}
.section-bg-night h2, .section-bg-night h3 { color: var(--bg-cream); }
.section-bg-night .section-head p { color: rgba(250, 245, 236, 0.85); }
.section-bg-night .t-eyebrow { color: var(--gold); }

/* ---------- Compliance banner ---------- */

.no-betting-banner {
  background:
    linear-gradient(135deg, rgba(168, 200, 232, 0.25) 0%, rgba(245, 201, 214, 0.2) 100%),
    var(--surface-elev);
  border: 2px solid var(--brand-blue);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 0 auto;
  max-width: 920px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  box-shadow: 0 0 0 6px rgba(168, 200, 232, 0.12), 0 16px 40px rgba(58, 46, 74, 0.12);
  position: relative;
}
.no-betting-banner .icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(168, 200, 232, 0.3);
  border: 1.5px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-blue-dark);
}
.no-betting-banner .body { flex: 1; min-width: 240px; }
.no-betting-banner .body .label {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-blue-dark);
  font-size: 12px;
  margin-bottom: 4px;
}
.no-betting-banner .body h3 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: -0.3px;
  color: var(--ink-plum);
  margin: 0 0 8px;
  line-height: 1.1;
}
.no-betting-banner .body h3 .script {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--brand-pink-dark);
  font-size: 0.8em;
}
.no-betting-banner .body p {
  margin: 0;
  color: var(--ink-plum-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ---------- Features grid ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature-card {
  background:
    linear-gradient(180deg, var(--surface-elev) 0%, var(--surface-pale) 100%);
  border: 1px solid rgba(201, 184, 224, 0.6);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 18px rgba(58, 46, 74, 0.06);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 210, 114, 0.7);
  box-shadow: 0 14px 30px rgba(58, 46, 74, 0.12);
}
.feature-card:hover::before { opacity: 1; }
.feature-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-cta);
  color: var(--ink-plum);
  margin-bottom: 18px;
  font-size: 26px;
  box-shadow: 0 6px 14px rgba(245, 201, 214, 0.5);
}
.feature-card.alt .ico {
  background: linear-gradient(180deg, #A8C8E8 0%, #7FA9D0 100%);
  color: var(--bg-cream);
  box-shadow: 0 6px 14px rgba(168, 200, 232, 0.55);
}
.feature-card.gold .ico {
  background: var(--grad-gold);
  box-shadow: 0 6px 14px rgba(232, 210, 114, 0.55);
}
.feature-card.mint .ico {
  background: linear-gradient(180deg, #C5EBD8 0%, #A8D9CA 100%);
  color: var(--ink-plum);
  box-shadow: 0 6px 14px rgba(168, 217, 202, 0.55);
}
.feature-card.lavender .ico {
  background: linear-gradient(180deg, #DCC9EB 0%, #C9B8E0 100%);
  color: var(--ink-plum);
  box-shadow: 0 6px 14px rgba(201, 184, 224, 0.55);
}
.feature-card h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin: 0 0 10px;
  color: var(--ink-plum);
}
.feature-card p {
  margin: 0;
  color: var(--ink-plum-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Stat strip ---------- */

.stat-strip {
  background:
    linear-gradient(135deg, rgba(245, 201, 214, 0.25) 0%, rgba(168, 200, 232, 0.25) 100%),
    var(--bg-cream);
  padding: 56px 0;
  border-top: 1px solid var(--surface-pale);
  border-bottom: 1px solid var(--surface-pale);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 60px);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  line-height: 1;
}
.stat .num.pink {
  background: linear-gradient(120deg, var(--brand-pink-dark) 0%, var(--brand-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .num.blue {
  background: linear-gradient(120deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lbl {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-plum-soft);
  margin-top: 10px;
}
@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; }
}

/* ---------- Queens row ---------- */

.queens-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .queens-row { grid-template-columns: repeat(5, 1fr); gap: 10px; }
}
@media (max-width: 600px) {
  .queens-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
.queen-card {
  text-align: center;
  background: rgba(250, 245, 236, 0.08);
  border: 1px solid rgba(232, 210, 114, 0.4);
  border-radius: 18px;
  padding: 22px 14px;
  transition: transform .25s ease, border-color .25s ease;
}
.queen-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.queen-card .badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 0 12px rgba(232, 210, 114, 0.55));
}
.queen-card .nm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  line-height: 1.1;
}
.queen-card .cat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(250, 245, 236, 0.7);
}

/* ---------- Symbols row ---------- */

.symbols-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}
.symbol-chip {
  text-align: center;
  background: var(--surface-elev);
  border: 1.5px solid rgba(201, 184, 224, 0.55);
  border-radius: 22px;
  padding: 20px 18px 14px;
  width: 124px;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 14px rgba(58, 46, 74, 0.06);
}
.symbol-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(58, 46, 74, 0.1);
}
.symbol-chip img {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  filter: drop-shadow(0 4px 8px rgba(232, 210, 114, 0.35));
}
.symbol-chip .nm {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-plum);
}
.symbol-chip.wild {
  border-color: var(--gold);
  background: linear-gradient(180deg, #FBEDF2 0%, rgba(232, 210, 114, 0.18) 100%);
}
.symbol-chip.wild .nm { color: var(--gold-deep); }

/* ---------- Screenshots Swiper ---------- */

.screens-wrap {
  position: relative;
  padding: 0 8px;
}
.screen-frame {
  width: 230px;
  max-width: 60vw;
  aspect-ratio: 1260 / 2736;
  margin: 0 auto;
  background: var(--ink-plum);
  border-radius: 32px;
  padding: 8px;
  border: 1.5px solid var(--brand-lavender);
  box-shadow:
    0 24px 50px rgba(58, 46, 74, 0.28),
    0 0 0 1px rgba(232, 210, 114, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}
.screen-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: #000;
  border-radius: 4px;
  z-index: 2;
}
.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.swiper { padding: 30px 0 50px; }
.swiper-pagination-bullet { background: var(--brand-lavender); opacity: 0.7; }
.swiper-pagination-bullet-active { background: var(--brand-pink-dark); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--brand-pink-dark); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 22px; font-weight: 800; }
.screen-caption {
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-plum-soft);
}

/* ---------- Wheel showcase ---------- */

.wheel-section {
  position: relative;
  overflow: hidden;
}
.wheel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .wheel-grid { grid-template-columns: 1fr; gap: 32px; }
}
.wheel-img {
  position: relative;
  display: flex;
  justify-content: center;
}
.wheel-img::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(232, 210, 114, 0.6) 0%, transparent 60%);
  filter: blur(30px);
}
.wheel-img img {
  position: relative;
  max-width: 460px;
  width: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 20px 40px rgba(31, 27, 51, 0.4));
}
.wheel-copy h3 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.wheel-copy h3 .script {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 0.65em;
  margin-bottom: 4px;
}
.wheel-copy p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.wheel-zones {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.wheel-zones li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--bg-cream);
  padding: 8px 14px;
  background: rgba(250, 245, 236, 0.08);
  border: 1px solid rgba(232, 210, 114, 0.35);
  border-radius: 999px;
}
.wheel-zones .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.wheel-zones .dot.star { background: var(--brand-pink); }
.wheel-zones .dot.moon { background: var(--brand-blue); }
.wheel-zones .dot.sun { background: var(--gold); }
.wheel-zones .dot.sky { background: var(--brand-lavender); }
.wheel-zones .dot.aurora { background: var(--aurora-mint); }

/* ---------- Jackpot callout ---------- */

.jackpot-section {
  position: relative;
  overflow: hidden;
}
.jackpot-card {
  background:
    linear-gradient(180deg, rgba(31, 27, 51, 0.92) 0%, rgba(53, 43, 90, 0.92) 100%);
  border: 1.5px solid var(--gold);
  border-radius: 28px;
  padding: 48px 36px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(31, 27, 51, 0.35), 0 0 0 6px rgba(232, 210, 114, 0.1);
}
.jackpot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(232, 210, 114, 0.35) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.jackpot-card > * { position: relative; z-index: 1; }
.jackpot-card .stamp {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(232, 210, 114, 0.18);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 20px;
}
.jackpot-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  margin: 0 0 12px;
  text-shadow: 0 4px 30px rgba(232, 210, 114, 0.5);
}
.jackpot-card .flourish {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: rgba(250, 245, 236, 0.92);
  margin: 0 0 24px;
}
.jackpot-card .body-text {
  color: rgba(250, 245, 236, 0.78);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 24px;
}
.jackpot-graphic-wrap {
  margin: 0 auto 24px;
  max-width: 460px;
}
.jackpot-graphic-wrap img {
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(232, 210, 114, 0.6));
}

/* ---------- AI disclosure ---------- */

.ai-strip {
  margin: 40px auto 0;
  background: var(--surface-elev);
  border: 1.5px dashed rgba(201, 184, 224, 0.7);
  border-radius: 16px;
  padding: 18px 22px;
  color: var(--ink-plum-soft);
  font-size: 14.5px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 880px;
  text-align: left;
}
.ai-strip .ico-ai {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 210, 114, 0.2);
  border: 1px solid rgba(232, 210, 114, 0.55);
  color: var(--gold-deep);
}
.ai-strip strong { color: var(--ink-plum); font-weight: 800; }

/* ---------- CTA section ---------- */

.cta-section {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245, 201, 214, 0.4) 0%, transparent 60%),
    var(--surface-pale);
}
.cta-section h2 {
  font-size: clamp(38px, 6vw, 72px);
  margin-bottom: 14px;
  color: var(--ink-plum);
  letter-spacing: -0.5px;
  line-height: 1;
}
.cta-section h2 .script {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.6em;
  color: var(--brand-pink-dark);
  margin-bottom: 4px;
}
.cta-section h2 .gold-glow {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-section p {
  color: var(--ink-plum-soft);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ---------- Page hero (legal/contact) ---------- */

.page-hero {
  padding: 90px 0 50px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(245, 201, 214, 0.4) 0%, transparent 65%),
    var(--bg-cream);
  text-align: center;
  border-bottom: 1px solid var(--surface-pale);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(40px, 7vw, 70px);
  color: var(--ink-plum);
  font-weight: 900;
  letter-spacing: -0.5px;
}
.page-hero h1 .script {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.55em;
  color: var(--brand-pink-dark);
  margin-bottom: 6px;
}
.page-hero .sub {
  margin: 18px auto 0;
  color: var(--ink-plum-soft);
  font-size: 17px;
  max-width: 640px;
}

/* ---------- Legal content ---------- */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-plum-soft);
}
.legal-content .meta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-deep);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(232, 210, 114, 0.15);
  border: 1px solid rgba(232, 210, 114, 0.4);
  border-radius: 999px;
}
.legal-content h2 {
  font-size: 26px;
  margin: 38px 0 14px;
  color: var(--ink-plum);
  font-weight: 900;
  letter-spacing: -0.3px;
}
.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--ink-plum);
  font-weight: 800;
}
.legal-content p, .legal-content ul, .legal-content ol {
  margin: 0 0 14px;
  text-align: left;
}
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--ink-plum); font-weight: 800; }
.legal-content a { color: var(--brand-blue-dark); border-bottom: 1px dashed rgba(127, 169, 208, 0.5); }
.legal-content a:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }

/* ---------- Contact ---------- */

.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}
.contact-card {
  background: var(--surface-elev);
  border: 1.5px solid var(--surface-pale);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 16px 40px rgba(58, 46, 74, 0.1);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-plum-soft);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg-cream);
  border: 1.5px solid var(--surface-pale);
  border-radius: 12px;
  color: var(--ink-plum);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-plum-mute); }
.field input:focus, .field textarea:focus {
  border-color: var(--brand-pink-dark);
  box-shadow: 0 0 0 4px rgba(245, 201, 214, 0.35);
}
.field textarea { min-height: 140px; resize: vertical; }
.contact-info {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--surface-pale);
  color: var(--ink-plum-soft);
  font-size: 14.5px;
  text-align: center;
}
.text-center { text-align: center; }

/* ---------- Footer ---------- */

footer {
  background:
    linear-gradient(180deg, var(--bg-cream) 0%, var(--surface-pale) 100%);
  border-top: 1px solid var(--surface-pale);
  padding: 64px 0 30px;
  color: var(--ink-plum-soft);
  font-size: 14.5px;
}
footer .inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
footer h5 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-plum);
  margin: 0 0 14px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: var(--ink-plum-soft); }
footer a:hover { color: var(--brand-pink-dark); }
footer .col-brand p {
  margin: 14px 0 0;
  max-width: 320px;
  line-height: 1.55;
}
.compliance-footer {
  border-top: 1px solid var(--surface-pale);
  padding-top: 22px;
  margin-top: 12px;
  color: var(--ink-plum-mute);
  font-size: 13px;
  text-align: center;
  line-height: 1.7;
}
.compliance-footer .strong {
  color: var(--ink-plum);
  font-weight: 800;
}
footer .legal {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-plum-mute);
}
@media (max-width: 800px) {
  footer .inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  footer .inner { grid-template-columns: 1fr; }
}

/* ---------- Privacy acceptance button ---------- */

.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 16px 22px;
  background: linear-gradient(180deg, rgba(250, 245, 236, 0) 0%, var(--bg-cream) 35%);
  display: flex;
  justify-content: center;
}
.privacy-accept-btn.hidden { display: none; }
.accept-btn {
  width: 100%;
  max-width: 440px;
  min-height: 56px;
  border: none;
  background: var(--grad-cta);
  color: var(--ink-plum);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(224, 168, 188, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0 24px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.accept-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* ---------- Tag pills ---------- */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}
.tag-pill {
  display: inline-block;
  padding: 7px 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--surface-elev);
  border: 1px solid var(--surface-pale);
  color: var(--ink-plum);
}
.tag-pill.pink { color: var(--brand-pink-dark); border-color: rgba(224, 168, 188, 0.5); background: rgba(245, 201, 214, 0.2); }
.tag-pill.blue { color: var(--brand-blue-dark); border-color: rgba(127, 169, 208, 0.5); background: rgba(168, 200, 232, 0.2); }
.tag-pill.gold { color: var(--gold-deep); border-color: rgba(201, 169, 63, 0.45); background: rgba(232, 210, 114, 0.2); }
.tag-pill.lavender { color: #7B6499; border-color: rgba(201, 184, 224, 0.6); background: rgba(201, 184, 224, 0.22); }
.tag-pill.mint { color: #4F8A77; border-color: rgba(168, 217, 202, 0.55); background: rgba(168, 217, 202, 0.22); }

/* ---------- Responsive ---------- */

@media (max-width: 700px) {
  section.section { padding: 70px 0; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 50px; padding-bottom: 50px; }
  .no-betting-banner { padding: 24px 20px; }
  .jackpot-card { padding: 32px 22px; }
  .contact-card { padding: 28px 22px; }
  .ai-strip { flex-direction: column; gap: 10px; }
}
