/* =============================================================
   elvaragames — Circus-inspired Social Casino Stylesheet
   Token-based · Cotton-candy pink, magenta, lime, cyan
   Visual language inspired by theatrical Las Vegas midway
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;600;700;800&family=Jost:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&family=JetBrains+Mono:wght@500;700&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Surfaces — Circus cotton-candy + navy */
  --bg-dark:        #110F23;
  --bg-soft:        #FFC5F2;
  --surface:        #FFF7FC;
  --surface-2:      #FFE8F8;
  --surface-elev:   #F4B6E6;
  --surface-glass:  rgba(255, 247, 252, 0.62);

  /* Borders */
  --border-soft:    rgba(17, 15, 35, 0.06);
  --border:         rgba(181, 33, 121, 0.16);
  --border-strong:  rgba(181, 33, 121, 0.32);

  /* Primary accent — Magenta */
  --accent-primary: #E854A5;
  --accent-bright:  #B52179;
  --accent-soft:    #FFC5F2;
  --accent-deep:    #9D0861;
  --accent-glow:    rgba(232, 84, 165, 0.32);

  /* Lime (Circus italic / primary CTA) + mint (numbers) */
  --cyan:           #E0EF54;
  --cyan-bright:    #F3F9A6;
  --cyan-deep:      #7DF3F0;
  --cyan-glow:      rgba(224, 239, 84, 0.28);

  /* Text */
  --text-primary:   #191919;
  --text-secondary: #3D2248;
  --text-muted:     #7A5A80;
  --text-on-dark:   #FFEFFC;

  /* Radius */
  --radius-sm:  12px;
  --radius:     18px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-soft:    0 16px 40px -18px rgba(26, 16, 36, 0.22);
  --shadow-strong:  0 28px 60px -20px rgba(26, 16, 36, 0.28);
  --glow-soft:      0 0 24px rgba(227, 90, 175, 0.18);
  --glow-strong:    0 0 40px rgba(227, 90, 175, 0.28);
  --glow-cyan:      0 0 22px rgba(126, 234, 230, 0.22);

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-alt:     'Jost', system-ui, sans-serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --pattern-damask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath fill='%23ffeffc' fill-opacity='0.16' d='M36 6c3.5 7 10.5 10.5 18 10.5S66 13 69.5 6C66 13 66 20.5 69.5 28 62 24.5 55 24.5 47.5 28c7 3.5 10.5 10.5 10.5 18s-3.5 14.5-10.5 18c3.5-7.5 3.5-15 0-22.5C40 45.5 33 45.5 25.5 42 32.5 45.5 36 52.5 36 60s-3.5 14.5-10.5 18C29 71 36 67.5 43.5 67.5S58 71 61.5 78c0 0-3.5-7-3.5-14.5S61.5 49 69 45.5C61.5 42 54.5 42 47 45.5 54 42 57.5 35 57.5 27.5S54 13 47 9.5C50.5 17 50.5 24.5 47 32 39.5 28.5 32.5 28.5 25 32c7-3.5 10.5-10.5 10.5-18S32.5 1 25.5-2.5C29 5 36 8.5 43.5 8.5'/%3E%3C/svg%3E");
}

/* ── RESET / BASE ────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

*::selection { background: rgba(232, 84, 165, 0.28); color: var(--text-primary); }

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

body {
  min-height: 100vh;
  background: var(--bg-soft);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 96px;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.5), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(227, 90, 175, 0.16), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(126, 234, 230, 0.14), transparent 32%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── AURORA BACKDROP ────────────────────────────────────────── */
.aurora { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; opacity: 0.55; }
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  animation: auroraFloat 28s ease-in-out infinite;
  will-change: transform;
}
.aurora-blob-1 {
  width: 520px; height: 520px;
  top: -140px; left: -80px;
  background: radial-gradient(circle, #FFFFFF 0%, transparent 68%);
}
.aurora-blob-2 {
  width: 420px; height: 420px;
  top: 38%; right: -140px;
  background: radial-gradient(circle, #E35AAF 0%, transparent 68%);
  opacity: 0.22;
  animation-delay: -8s;
}
.aurora-blob-3 {
  width: 560px; height: 560px;
  bottom: -200px; left: 30%;
  background: radial-gradient(circle, #7EEAE6 0%, transparent 68%);
  animation-delay: -15s;
}

@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -22px) scale(1.05); }
  66%       { transform: translate(-22px, 18px) scale(0.97); }
}

@keyframes vzpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes vzpShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes vzpTimerPulse {
  0%, 100% { text-shadow: 0 0 12px rgba(126, 234, 230, 0.35); }
  50%      { text-shadow: 0 0 26px rgba(126, 234, 230, 0.7); }
}

/* ── HEADER BACKGROUND VIDEO ────────────────────────────────── */
.header-media {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: min(920px, 100vh);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
body.has-hero .header-media { height: 100vh; min-height: 720px; }
.header-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.15) contrast(1.05) brightness(0.85);
  transform: scale(1.08);
  will-change: transform;
}
.header-media-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,197,242,0.42) 0%, rgba(255,197,242,0.16) 34%, rgba(255,197,242,0.62) 68%, var(--bg-soft) 100%),
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(255,197,242,0.08), rgba(17,15,35,0.18));
}
@media (prefers-reduced-motion: reduce) {
  .header-video { display: none; }
  .header-media-scrim {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.35), var(--bg-soft) 70%);
  }
}
@media (max-width: 768px) {
  .header-media, body.has-hero .header-media { height: 780px; min-height: 0; }
}

/* ── TRUST RIBBON ───────────────────────────────────────────── */
.trust-ribbon { display: none; }
.trust-ribbon::after { display: none; }
.trust-ribbon-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 14px 28px 4px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600;
  font-family: var(--font-alt);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-bright);
}
.trust-item svg { flex-shrink: 0; color: var(--accent-bright); }
.trust-sep { color: rgba(181, 33, 121, 0.35); font-size: 12px; }

/* ── NAVIGATION — floating circus pill ──────────────────────── */
.nav {
  position: sticky; top: 10px; z-index: 50;
  background: transparent;
  border-bottom: none;
  padding: 0 18px;
}
.nav::after { display: none; }
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 8px 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: #F0B8E4;
  border-radius: 999px;
  box-shadow: 0 14px 40px -16px rgba(26, 16, 36, 0.28);
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; z-index: 2; }
.nav-logo img {
  width: 46px; height: 46px;
  filter: drop-shadow(0 4px 10px rgba(181, 33, 121, 0.28));
  transition: filter 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.nav-logo:hover img {
  filter: drop-shadow(0 6px 16px rgba(181, 33, 121, 0.45));
  transform: rotate(-8deg);
}
.nav-logo-text { display: none; }
.nav-pill,
.nav-cta-wrap { display: none; }
.nav-links {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  flex-direction: column;
  gap: 4px;
  background: #F0B8E4;
  border-radius: 24px;
  padding: 14px 12px;
  box-shadow: var(--shadow-strong);
}
.nav-links.open { display: flex; }
.nav-links a {
  font-family: var(--font-alt);
  font-size: 15px; font-weight: 500;
  color: #6B4A72;
  padding: 12px 16px; border-radius: 999px;
  width: 100%;
  transition: color 250ms var(--ease-out), background 250ms var(--ease-out);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.45);
}
.nav-links a.active { color: var(--text-primary); font-weight: 600; }

.nav-toggle {
  display: flex;
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px; padding: 10px;
  flex-direction: column; justify-content: space-between;
  border-radius: 999px; border: 1px solid rgba(17, 15, 35, 0.12);
  background: rgba(255,255,255,0.35);
  z-index: 3;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 280ms var(--ease-out), opacity 280ms;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.01em;
  color: #191919;
  background: var(--cyan);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 8px 22px -10px rgba(17, 15, 35, 0.25);
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 260ms var(--ease-out), filter 220ms;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
.btn-primary:hover::before { animation: vzpShimmer 850ms ease forwards; }
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 28px -10px rgba(17, 15, 35, 0.3);
}
.btn-primary:active { transform: translateY(0) scale(0.975); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; filter: none; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(17, 15, 35, 0.12);
  border-radius: 999px;
  transition: background 250ms var(--ease-out), border-color 250ms, color 250ms, transform 220ms var(--ease-out);
}
.btn-ghost:hover {
  background: #fff;
  border-color: rgba(17, 15, 35, 0.2);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 8px 16px; font-size: 12.5px; }

.cta-microcopy {
  display: block;
  font-size: 12px; color: var(--text-muted);
  font-family: var(--font-alt); letter-spacing: 0.04em;
  margin-top: 14px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 28px 20px 72px;
  position: relative; z-index: 1; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  min-height: calc(100vh - 88px);
}
.hero::before, .hero::after { display: none; }
.hero-inner {
  max-width: 560px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 28px;
  justify-items: center;
  text-align: center;
  position: relative; z-index: 1;
  width: 100%;
}
.hero-content { display: flex; flex-direction: column; gap: 18px; align-items: center; width: 100%; }

.hero-eyebrow { display: none; }

.hero-brand,
.hero-title.hero-brand {
  width: 100%;
  max-width: 1400px;
  margin: 4vh 0 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 17.5vw, 228px);
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-align: center;
  color: #FFF4FB;
  mix-blend-mode: overlay;
  -webkit-text-stroke: 1px rgba(181, 33, 121, 0.22);
  pointer-events: none;
}
.hero-brand span,
.hero-title.hero-brand span {
  display: block;
  color: inherit;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.hero-title em { display: none; }

.hero-place {
  margin: 10px 0 0;
  font-family: var(--font-alt);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-align: center;
}

.hero-italic {
  margin: 18px 20px 28px;
  max-width: 640px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--cyan);
  text-align: center;
}

.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
  font-weight: 500;
  text-align: center;
}
.hero-sub strong {
  color: var(--accent-bright);
  font-weight: 700;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

.hero .cta-microcopy,
.hero-trust { display: none; }

.hero-preview {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--bg-dark);
  border: none;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  color: var(--text-on-dark);
  text-align: left;
}
.hero-preview::before {
  content: '';
  position: absolute; top: 0; left: 22px; right: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), var(--cyan), transparent);
}
.hero-preview::after { display: none; }

.preview-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-soft);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 22px; position: relative; z-index: 1;
}

.preview-reels {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  margin-bottom: 22px; position: relative; z-index: 1;
}
.preview-reel {
  height: 78px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: rgba(255, 197, 242, 0.08);
  border: 1px solid rgba(255, 197, 242, 0.16);
  border-radius: var(--radius-sm);
  transition: border-color 300ms, box-shadow 300ms, transform 300ms;
}
.preview-reel.lit {
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(126, 234, 230, 0.35);
  transform: translateY(-2px);
}

.preview-balance-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 197, 242, 0.12);
  border-radius: var(--radius);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.preview-bal-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,239,252,0.55);
}
.preview-bal-value {
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.01em;
}

.security-badge {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 14px 16px;
  background: rgba(255, 197, 242, 0.08);
  border: 1px solid rgba(255, 197, 242, 0.12);
  border-radius: var(--radius);
  margin-top: 16px;
  position: relative; z-index: 1;
}
.security-badge svg { color: var(--cyan); flex-shrink: 0; margin-top: 1px; }
.security-badge-text { font-size: 11.5px; color: rgba(255,239,252,0.62); line-height: 1.52; }
.security-badge-text strong {
  display: block;
  color: var(--accent-soft);
  font-size: 12px; letter-spacing: 0.06em;
  font-family: var(--font-alt);
}

/* ── SECTION SCAFFOLDING ────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.section-label svg { color: var(--accent-bright); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--accent-bright);
}
.section-title span {
  color: var(--accent-bright);
  background: none;
  -webkit-background-clip: unset; background-clip: unset;
}

.section-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 14px;
  font-weight: 500;
}

.section-divider {
  width: 52px; height: 4px; margin-top: 18px;
  background: var(--cyan);
  border-radius: 99px;
  position: relative;
}
.section-divider::after { display: none; }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 14px auto 0; }
.section-header.centered .section-divider { margin: 18px auto; }
.section-header.centered .section-label { display: inline-flex; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 64px, 0) scale(0.97);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.reveal-left { transform: translate3d(-48px, 28px, 0) scale(0.98); }
.reveal-right { transform: translate3d(48px, 28px, 0) scale(0.98); }
.reveal-scale { transform: translate3d(0, 24px, 0) scale(0.9); }
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { transform: translate3d(0, 0, 0) scale(1); }

/* Hero entrance — circus-style staged rise */
.hero-brand,
.hero-place,
.hero-italic,
.hero-content > *,
.hero-preview {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
}
.hero.hero-in .hero-brand,
.hero.hero-in .hero-place,
.hero.hero-in .hero-italic,
.hero.hero-in .hero-content > *,
.hero.hero-in .hero-preview {
  animation: circusRise 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero.hero-in .hero-brand { animation-delay: 0.04s; animation-name: circusRiseScale; }
.hero.hero-in .hero-place { animation-delay: 0.18s; }
.hero.hero-in .hero-italic { animation-delay: 0.26s; }
.hero.hero-in .hero-content > *:nth-child(1) { animation-delay: 0.36s; }
.hero.hero-in .hero-content > *:nth-child(2) { animation-delay: 0.44s; }
.hero.hero-in .hero-preview { animation-delay: 0.52s; animation-name: circusRiseScale; }

@keyframes circusRise {
  from { opacity: 0; transform: translate3d(0, 56px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes circusRiseScale {
  from { opacity: 0; transform: translate3d(0, 72px, 0) scale(0.94); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.nav.is-scrolled .nav-inner {
  box-shadow: 0 18px 44px -16px rgba(17, 15, 35, 0.38);
  transform: scale(0.985);
  transition: box-shadow 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.nav-inner { transition: box-shadow 280ms var(--ease-out), transform 280ms var(--ease-out); }

/* ── GAMES SECTION (navy band like “Step Right Up”) ─────────── */
.games-section {
  padding: 88px 28px;
  position: relative; z-index: 1;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.games-section .section-label,
.games-section .section-title,
.games-section .section-title span {
  color: var(--accent-soft);
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.82;
}
.section-kicker {
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: -0.03em;
}
.games-section .section-sub { color: rgba(255,239,252,0.72); }
.games-section .btn-ghost {
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,197,242,0.22);
}
.games-section-inner { max-width: 1180px; margin: 0 auto; }
.games-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.game-card {
  display: flex; flex-direction: column;
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 280ms var(--ease-out);
}
.game-card::before { display: none; }
.game-card:hover { transform: translateY(-6px); }

.game-thumb {
  position: relative; height: 300px;
  background: var(--game-gradient, linear-gradient(135deg, #4A2150, #1A1024));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.game-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,15,35,0.1) 20%, rgba(17,15,35,0.72) 100%);
}
.game-thumb-icon {
  font-size: 52px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}
.game-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 4px 10px;
  font-family: var(--font-alt);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-primary);
  border-radius: 999px;
}
.game-tag.hot { background: var(--accent-primary); color: #fff; }
.game-tag.new { background: var(--cyan-deep); color: var(--text-primary); }
.game-tag.vip { background: var(--accent-bright); color: #fff; }

.game-play-pill {
  position: absolute; left: 50%; top: 50%; bottom: auto;
  transform: translate(-50%, -40%);
  z-index: 2;
  padding: 8px 16px;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #191919;
  background: var(--cyan);
  border: none;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.game-card:hover .game-play-pill { opacity: 1; transform: translate(-50%, -50%); }

.game-meta {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 3;
  padding: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.game-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: -0.03em;
  line-height: 1.05;
}
.game-genre { font-size: 13px; color: rgba(255,239,252,0.78); font-weight: 500; }
.game-stat-row { display: none; }

/* ── BONUS STRIP (magenta damask) ───────────────────────────── */
.bonus-strip {
  padding: 88px 28px;
  background-color: var(--accent-primary);
  background-image: var(--pattern-damask);
  position: relative; z-index: 1; overflow: hidden;
  color: #fff;
}
.bonus-strip::before, .bonus-strip::after { display: none; }
.bonus-strip .section-label,
.bonus-strip .section-title,
.bonus-strip .section-title span { color: #fff; }
.bonus-strip .section-sub { color: rgba(255,255,255,0.86); }
.bonus-strip .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}
.bonus-strip-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }

.bonus-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.bonus-urgency::before { content: '◆'; color: var(--cyan); font-size: 9px; }

.bonus-layout { display: grid; grid-template-columns: 1fr 0.86fr; gap: 60px; align-items: center; }

.bonus-timer-wrap {
  display: flex; align-items: center; gap: 14px;
  margin: 26px 0 22px;
}
.timer-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
#bonus-timer {
  font-family: var(--font-mono);
  font-size: 32px; font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.04em;
  animation: vzpTimerPulse 1.8s ease-in-out infinite;
}
#bonus-timer.low-time {
  color: var(--cyan-bright);
  animation: none;
}

.bonus-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
#bonus-toast {
  display: block;
  margin-top: 18px;
  font-size: 13px; color: var(--cyan);
  opacity: 0; transition: opacity 260ms;
  font-family: var(--font-alt);
}
#bonus-toast.show { opacity: 1; }

.bonus-tiers { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }
.bonus-tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: rgba(17, 15, 35, 0.22);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  transition: transform 260ms var(--ease-out), border-color 260ms;
}
.bonus-tier:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateX(3px);
}
.bonus-tier-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
}
.bonus-tier-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.bonus-tier-amount {
  font-family: var(--font-mono);
  font-size: 18px; font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
}

.bonus-redeem-spinning { opacity: 0.65; cursor: wait; }

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.about-section { padding: 100px 28px; position: relative; z-index: 1; }
.about-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 68px;
  align-items: start;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 32px;
}
.stat-box {
  padding: 24px 20px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(181, 33, 121, 0.12);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform 260ms var(--ease-out), box-shadow 260ms;
}
.stat-box::before { display: none; }
.stat-box:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 800;
  color: var(--accent-bright);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  background: none;
  -webkit-background-clip: unset;
}
.stat-label {
  font-size: 12px; color: var(--text-muted);
  font-family: var(--font-alt); letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-commitments { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.commitment-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(181, 33, 121, 0.1);
  border-radius: var(--radius);
  transition: transform 260ms, box-shadow 260ms;
}
.commitment-item:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.commitment-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.commitment-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.commitment-text { font-size: 14px; color: var(--text-secondary); line-height: 1.70; }

/* ── FEATURES ───────────────────────────────────────────────── */
.features-section { padding: 100px 28px; position: relative; z-index: 1; }
.features-inner { max-width: 1180px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.feature-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(181, 33, 121, 0.1);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform 280ms var(--ease-out), box-shadow 280ms;
}
.feature-card::before { display: none; }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: var(--bg-dark);
  border: none;
  border-radius: 16px;
  margin-bottom: 18px;
  filter: none;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 10px; letter-spacing: -0.03em;
}
.feature-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  padding: 96px 28px;
  background-color: var(--accent-primary);
  background-image: var(--pattern-damask);
  text-align: center;
  position: relative; z-index: 1; overflow: hidden;
}
.cta-banner::before { display: none; }
.cta-banner .section-label,
.cta-banner .section-title,
.cta-banner .section-title span { color: #fff; }
.cta-banner .section-sub { color: rgba(255,255,255,0.88); }
.cta-banner .cta-microcopy { color: rgba(255,255,255,0.72); }
.cta-banner .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}
.cta-banner-inner { max-width: 740px; margin: 0 auto; position: relative; }
.cta-banner .section-title { margin-bottom: 0; }
.cta-banner .section-sub { margin: 14px auto 36px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── RESPONSIBLE GAMBLING CALLOUT ───────────────────────────── */
.rg-callout {
  padding: 28px 28px;
  background: var(--surface-elev);
  border-top: none;
  border-bottom: none;
  position: relative; z-index: 1;
}
.rg-callout-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.rg-text { display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 280px; }
.rg-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: var(--bg-dark);
  border: none;
  border-radius: 14px;
  flex-shrink: 0;
}
.rg-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.rg-desc {
  font-size: 13px; color: var(--text-secondary); line-height: 1.66;
  max-width: 560px;
}
.rg-desc a {
  color: var(--accent-bright);
  text-decoration: underline; text-underline-offset: 2px;
}
.rg-logos { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.rg-logo-box {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-primary);
  background: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 6px 16px -10px rgba(17, 15, 35, 0.25);
  transition: transform 220ms var(--ease-out);
}
.rg-logo-box:hover { transform: translateY(-1px); }
.rg-logo-box img {
  height: 22px; width: auto; max-width: 120px;
  object-fit: contain;
}

/* ── FOOTER (navy island on pink) ───────────────────────────── */
.footer {
  padding: 28px 20px 28px;
  background: var(--bg-soft);
  position: relative; z-index: 1;
  border-top: none;
}
.footer::before { display: none; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 36px;
  padding: 48px 40px 28px;
  color: rgba(255,239,252,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 11px; }
.footer-logo img { width: 36px; height: 36px; filter: none; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--accent-soft);
  letter-spacing: -0.03em;
}
.footer-desc { font-size: 14px; color: rgba(255,239,252,0.62); line-height: 1.7; max-width: 320px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-badge {
  padding: 5px 10px;
  font-family: var(--font-alt);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(255,197,242,0.1);
  border: 1px solid rgba(255,197,242,0.16);
  border-radius: 999px;
}
.footer-col-title {
  font-family: var(--font-alt);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cyan-deep);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,239,252,0.62);
  transition: color 200ms;
}
.footer-col ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,197,242,0.1);
  border: 1px solid rgba(255,197,242,0.16);
  color: var(--accent-soft);
  font-family: var(--font-alt);
  font-weight: 700;
  transition: background 240ms, transform 240ms;
}
.footer-social-link:hover {
  background: rgba(255,197,242,0.2);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,197,242,0.12);
}
.footer-copy {
  font-size: 12px; color: rgba(255,239,252,0.45);
  font-family: var(--font-alt);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 12px; color: rgba(255,239,252,0.45);
  transition: color 200ms;
  font-family: var(--font-alt);
}
.footer-legal a:hover { color: var(--accent-soft); }
.footer-disclaimer {
  margin-top: 20px;
  font-size: 12px; color: rgba(255,239,252,0.42); line-height: 1.78;
  font-family: var(--font-alt);
  max-width: 1100px;
}
.footer-disclaimer a {
  color: var(--accent-soft);
  text-decoration: underline; text-underline-offset: 2px;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-section { padding: 72px 28px; position: relative; z-index: 1; }
.contact-inner { max-width: 1180px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.28fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(181, 33, 121, 0.1);
  border-radius: var(--radius);
  transition: box-shadow 260ms, transform 260ms;
}
.contact-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.contact-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: var(--bg-dark);
  border: none;
  border-radius: 14px;
  flex-shrink: 0;
}
.contact-card-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.contact-card-value { font-size: 14px; color: var(--text-secondary); }
.contact-card-value a { color: var(--accent-bright); }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  padding: 36px;
  background: #fff;
  border: none;
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-form::before { display: none; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-input, .form-textarea {
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid rgba(181, 33, 121, 0.14);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 240ms, box-shadow 240ms;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(232, 84, 165, 0.16);
}
.form-input.invalid, .form-textarea.invalid { border-color: #E11D48; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-error {
  display: none;
  font-size: 11.5px; color: #E11D48;
  font-family: var(--font-alt);
}
.form-error.show { display: block; }
#contact-success {
  display: none;
  padding: 14px 16px;
  background: rgba(125, 243, 240, 0.18);
  border: 1px solid rgba(125, 243, 240, 0.4);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font-alt); font-weight: 600;
}
#contact-success.show { display: block; }

/* ── PAGE HEADER (sub-pages) ────────────────────────────────── */
.page-header {
  padding: 72px 28px 40px;
  text-align: center;
  position: relative; z-index: 1;
}
.page-header::before { display: none; }
.page-header-inner { max-width: 740px; margin: 0 auto; position: relative; }
.page-header .section-label { display: inline-flex; margin-bottom: 18px; }
.page-header .section-title { font-size: clamp(36px, 6vw, 64px); }
.page-header .section-sub { margin: 14px auto 0; }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-section { padding: 48px 28px 72px; position: relative; z-index: 1; }
.legal-inner { max-width: 840px; margin: 0 auto; }
.legal-content { display: flex; flex-direction: column; gap: 0; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  color: var(--accent-bright);
  margin: 38px 0 13px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 10px; letter-spacing: -0.03em;
}
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content h3 {
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  color: var(--accent-bright);
  margin: 22px 0 10px;
}
.legal-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.86; margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { font-size: 15px; color: var(--text-secondary); line-height: 1.84; margin-bottom: 7px; }
.legal-content ul li::marker { color: var(--accent-primary); }
.legal-content a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal-content code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: #fff;
  padding: 2px 7px; border-radius: 6px;
  color: var(--accent-bright);
}
.legal-content strong { color: var(--text-primary); }
.legal-alert {
  padding: 16px 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(181, 33, 121, 0.14);
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: 14px; color: var(--text-secondary);
}
.legal-alert strong { color: var(--accent-bright); }
.legal-meta { font-size: 12px; color: var(--text-muted); font-style: italic; margin-top: 12px; }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-page-section { padding: 48px 28px 72px; position: relative; z-index: 1; }
.about-page-inner { max-width: 1080px; margin: 0 auto; }
.about-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-top: 12px;
}
.about-page-card {
  padding: 26px 24px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(181, 33, 121, 0.1);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform 280ms var(--ease-out), box-shadow 280ms;
}
.about-page-card::before { display: none; }
.about-page-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.about-page-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 11px; letter-spacing: -0.02em;
}
.about-page-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.82; }
.about-page-card strong { color: var(--accent-bright); }

.team-values { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(181, 33, 121, 0.1);
  border-radius: var(--radius);
  transition: box-shadow 260ms;
}
.value-item:hover { box-shadow: var(--shadow-soft); }
.value-icon { font-size: 24px; flex-shrink: 0; }
.value-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.value-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.68; }

/* ── PLAY PAGE ──────────────────────────────────────────────── */
.play-page { padding: 56px 28px 72px; position: relative; z-index: 1; }
.play-inner { max-width: 1180px; margin: 0 auto; }
.play-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }

.game-frame-wrap {
  background: var(--bg-dark);
  border: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.game-frame-wrap::before { display: none; }
.game-frame-wrap iframe { display: block; width: 100%; height: 640px; border: none; }

.play-sidebar { display: flex; flex-direction: column; gap: 16px; }
.play-card {
  padding: 22px;
  background: #fff;
  border: none;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.play-card::before { display: none; }
.play-card-title {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.play-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
}
.play-stat:last-child { border-bottom: none; }
.play-stat-label { font-size: 13px; color: var(--text-secondary); }
.play-stat-value {
  font-family: var(--font-mono);
  font-size: 15px; font-weight: 700;
  color: var(--accent-bright);
}

.bet-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bet-opt {
  padding: 11px 8px;
  background: var(--surface-2);
  border: 1px solid rgba(181, 33, 121, 0.12);
  border-radius: 999px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  transition: background 220ms, border-color 220ms, color 220ms, transform 200ms;
}
.bet-opt.active, .bet-opt:hover {
  background: var(--cyan-deep);
  border-color: transparent;
  color: var(--text-primary);
}
.bet-opt:active { transform: scale(0.96); }

#spin-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; gap: 10px;
  padding: 16px;
  font-family: var(--font-alt);
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-primary);
  background: var(--cyan-deep);
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 22px -10px rgba(26, 16, 36, 0.25);
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 220ms var(--ease-out), filter 240ms;
}
#spin-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
#spin-btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
#spin-btn:hover::after { animation: vzpShimmer 850ms ease forwards; }
#spin-btn:active { transform: translateY(0) scale(0.975); }
#spin-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; filter: none; }
#spin-icon-el { font-size: 18px; transition: transform 600ms var(--ease-out); }

#win-msg {
  display: none; padding: 14px 18px;
  background: rgba(126, 234, 230, 0.22);
  border: 1px solid rgba(126, 234, 230, 0.5);
  border-radius: var(--radius-sm);
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-top: 14px;
}
#win-msg.show { display: block; }

.reel-track {
  display: flex; gap: 12px; justify-content: center;
  padding: 12px 0;
}
.reel {
  width: 56px; height: 68px;
  background: var(--surface-2);
  border: 1.5px solid rgba(181, 33, 121, 0.14);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: border-color 300ms, box-shadow 300ms;
}
.reel.win-reel {
  border-color: var(--accent-primary);
  box-shadow: 0 0 18px rgba(232, 84, 165, 0.35);
}

.play-page .section-title span { color: var(--accent-bright); }
.play-page .games-grid .game-name { color: #fff; }
.play-page .games-grid .game-genre { color: rgba(255,239,252,0.78); }
.play-page .games-grid .game-stat-row { display: none; }

/* ── AGE GATE ───────────────────────────────────────────────── */
.age-gate {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(255, 197, 242, 0.94);
  backdrop-filter: blur(22px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.show { display: flex; }
.age-gate-box {
  max-width: 500px; width: 100%;
  background: var(--bg-dark);
  border: none;
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--shadow-strong);
  position: relative; overflow: hidden;
  color: var(--text-on-dark);
}
.age-gate-box::before, .age-gate-box::after { display: none; }
.age-gate-icon {
  font-size: 48px;
  margin-bottom: 22px;
  animation: vzpFloat 3.2s ease-in-out infinite;
}
.age-gate-title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--accent-soft);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.age-gate-title em {
  font-style: italic;
  color: var(--cyan);
  background: none;
  -webkit-background-clip: unset;
}
.age-gate-sub { font-size: 15px; color: rgba(255,239,252,0.72); margin-bottom: 32px; line-height: 1.70; }
.age-gate-sub strong { color: var(--accent-soft); }
.age-gate-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.age-gate-actions .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.age-gate-legal {
  margin-top: 22px;
  font-size: 11px; color: rgba(255,239,252,0.45);
  line-height: 1.72;
  position: relative; z-index: 1;
}
.age-gate-legal a { color: var(--accent-soft); text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner       { max-width: 560px; gap: 28px; }
  .about-inner      { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .contact-layout   { grid-template-columns: 1fr; }
  .play-layout      { grid-template-columns: 1fr; }
  .game-frame-wrap iframe { height: 540px; }
  .about-page-grid  { grid-template-columns: 1fr; }
  .bonus-layout     { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { top: 8px; }
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: #F0B8E4;
    border-bottom: none;
    border-radius: 24px;
    padding: 16px 14px;
    box-shadow: var(--shadow-strong);
  }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 12px 14px; width: 100%; }

  .hero-actions   { flex-direction: column; align-items: center; }
  .hero-actions > * { width: 100%; }

  .games-section, .bonus-strip, .about-section,
  .features-section, .cta-banner { padding: 64px 20px; }

  .footer-inner   { padding: 36px 22px 22px; border-radius: 28px; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .form-row       { grid-template-columns: 1fr; }
  .about-stats    { grid-template-columns: 1fr 1fr; }
  .preview-reel   { height: 64px; font-size: 24px; }
  .bonus-tiers    { min-width: 0; }
  .rg-callout-inner { flex-direction: column; align-items: flex-start; }
  .experience-dock { width: calc(100% - 20px); justify-content: space-between; }
}

@media (max-width: 480px) {
  .hero-brand,
  .hero-title.hero-brand { font-size: clamp(64px, 22vw, 96px); }
  .section-title  { font-size: 32px; }
  .games-section .section-title { font-size: clamp(44px, 14vw, 64px); }
  .bonus-tiers    { gap: 10px; }
  .about-stats    { grid-template-columns: 1fr; }
  .contact-form   { padding: 26px 20px; }
  .age-gate-box   { padding: 40px 26px; }
  .age-gate-title { font-size: 26px; }
  .preview-reels  { gap: 6px; }
  .preview-reel   { height: 56px; font-size: 22px; }
  .game-thumb { height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .hero-brand,
  .hero-place,
  .hero-italic,
  .hero-content > *,
  .hero-preview {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
  .aurora-blob,
  .age-gate-icon,
  #bonus-timer { animation: none !important; }
}

/* ── CIRCUS CHROME: floating mark + sticky experience dock ─── */
.float-mark {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  height: 0;
  pointer-events: none;
}
.float-mark img {
  width: 86px;
  height: 86px;
  transform: translateY(-43px);
  filter: drop-shadow(0 14px 28px rgba(17, 15, 35, 0.32));
}

.experience-dock {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100vw - 24px);
  padding: 10px 10px 10px 22px;
  background: rgba(255, 247, 252, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 18px 40px -14px rgba(17, 15, 35, 0.38);
  color: var(--text-primary);
  font-family: var(--font-alt);
}
.experience-dock .dock-copy {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.experience-dock .dock-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  white-space: nowrap;
}
.experience-dock .dock-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--cyan);
  color: #191919;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.experience-dock:hover { transform: translateX(-50%) translateY(-2px); }
body:has(#age-gate.show) .experience-dock {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .experience-dock .dock-meta { display: none; }
  .experience-dock .dock-copy { font-size: 13px; }
}
