/* =============================================================
   reelfunworld — Coinflip-inspired casino affiliate look
   Deep violet hero · Yellow CTA · Magenta accent · Light cards
   Display/UI: Poppins    Stats: Roboto Mono
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Roboto+Mono:wght@400;500;600&display=swap');

:root {
  --bg-dark:        #1b0a3a;
  --bg-soft:        #f6f7fb;
  --surface:        #ffffff;
  --surface-2:      #eef0f7;
  --surface-elev:   #ffffff;
  --surface-glass:  rgba(255, 255, 255, 0.92);

  --border-soft:    rgba(27, 10, 58, 0.06);
  --border:         rgba(27, 10, 58, 0.10);
  --border-strong:  rgba(255, 193, 7, 0.85);

  --accent-primary: #ffc107;
  --accent-bright:  #ffd54f;
  --accent-soft:    #ffe082;
  --accent-deep:    #ff8f00;
  --accent-glow:    rgba(255, 193, 7, 0.35);

  --cyan:           #e91e8c;
  --cyan-bright:    #ff4fb3;
  --cyan-deep:      #ad1457;
  --cyan-glow:      rgba(233, 30, 140, 0.22);

  --text-primary:   #1b0a3a;
  --text-secondary: #5c5675;
  --text-muted:     #8a84a0;
  --text-on-dark:   #ffffff;

  --radius-sm:  8px;
  --radius:     30px;
  --radius-lg:  16px;
  --radius-xl:  22px;

  --shadow-soft:    0 10px 28px -12px rgba(27, 10, 58, 0.18);
  --shadow-strong:  0 22px 48px -18px rgba(27, 10, 58, 0.28);
  --glow-soft:      0 8px 22px rgba(255, 193, 7, 0.28);
  --glow-strong:    0 12px 28px rgba(255, 193, 7, 0.38);
  --glow-cyan:      0 8px 22px rgba(233, 30, 140, 0.22);

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-alt:     'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
  --font-mono:    'Roboto Mono', ui-monospace, monospace;

  --scroll-progress: 0;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --pattern-damask: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: rgba(255, 193, 7, 0.35); color: var(--text-primary); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.has-hero {
  display: flex;
  flex-direction: column;
}
body.has-hero .header-media,
body.has-hero .aurora { order: 0; }
body.has-hero .nav { order: 1; }
body.has-hero .hero,
body.has-hero .float-mark { order: 2; }
body.has-hero .trust-ribbon { order: 3; }
body.has-hero .features-section { order: 4; }
body.has-hero .games-section { order: 5; }
body.has-hero .about-section { order: 6; }
body.has-hero .bonus-strip { order: 7; }
body.has-hero .cta-banner { order: 8; }
body.has-hero .rg-callout { order: 9; }
body.has-hero .footer { order: 10; }
body.has-hero .age-gate { order: 40; }

body {
  min-height: 100vh;
  background: var(--bg-soft);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 88px;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(900px 380px at 80% -10%, rgba(233,30,140,0.08), transparent 55%);
  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 { position: absolute; inset: 0 auto auto 0; width: 100%; height: 640px; pointer-events: none; z-index: 0; overflow: hidden; opacity: 0.55; }
.aurora-blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.7;
  animation: auroraFloat 26s ease-in-out infinite; will-change: transform;
}
.aurora-blob-1 { width: 380px; height: 380px; top: -80px; right: 8%; background: radial-gradient(circle, rgba(233,30,140,0.45), transparent 68%); }
.aurora-blob-2 { width: 320px; height: 320px; top: 120px; left: -80px; background: radial-gradient(circle, rgba(255,193,7,0.28), transparent 68%); animation-delay: -8s; }
.aurora-blob-3 { width: 420px; height: 420px; top: 40px; left: 40%; background: radial-gradient(circle, rgba(74,29,122,0.5), transparent 68%); animation-delay: -14s; }

@keyframes auroraFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(16px,-12px) scale(1.04); }
  66% { transform: translate(-12px,10px) scale(0.98); }
}
@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: none; }
  50% { opacity: 0.8; }
}

.header-media {
  position: absolute; top: 0; left: 0; right: 0;
  height: 520px; z-index: 0; overflow: hidden; pointer-events: none;
}
body.has-hero .header-media { height: 640px; min-height: 0; }
.header-video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  filter: hue-rotate(268deg) saturate(1.15) contrast(1.05) brightness(0.42);
  transform: scale(1.05); will-change: transform;
}
.header-media-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(27,10,58,0.88) 0%, rgba(27,10,58,0.55) 48%, rgba(27,10,58,0.35) 100%),
    linear-gradient(180deg, rgba(27,10,58,0.2) 0%, var(--bg-soft) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .header-video { display: none; }
  .header-media-scrim { background: var(--bg-dark); }
}
@media (max-width: 768px) {
  .header-media, body.has-hero .header-media { height: 420px; min-height: 0; }
}

.trust-ribbon {
  position: relative; z-index: 2;
  background: transparent;
  border: none;
  padding: 0 28px 28px;
}
.trust-ribbon::after { display: none; }
.trust-ribbon-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 4px;
  font-size: 13px; font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em; text-transform: none;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-radius: 0;
}
.trust-item svg { flex-shrink: 0; color: var(--cyan); }
.trust-sep { display: none; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 6px 18px -12px rgba(27,10,58,0.25);
}
.nav::before {
  content: '';
  position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--cyan));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  pointer-events: none; z-index: 4;
}
.nav::after { display: none; }
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; position: relative;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; z-index: 2; flex-shrink: 0; }
.nav-logo img { width: 40px; height: 40px; transition: transform 240ms var(--ease-out); }
.nav-logo:hover img { transform: rotate(12deg); }
.nav-logo-text {
  display: none;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text-primary);
}
.nav-logo-text em { font-style: normal; font-weight: 800; color: var(--cyan); }
.nav-pill {
  display: none;
  padding: 5px 12px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #1b0a3a;
  background: var(--accent-primary);
  border: none;
  border-radius: 30px;
  white-space: nowrap;
  margin-left: 8px;
}
.nav-cta-wrap { display: none; flex-shrink: 0; }
.nav-links {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  padding: 8px 12px 16px;
  box-shadow: var(--shadow-soft);
}
.nav-links.open { display: flex; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-primary);
  padding: 12px 14px;
  width: 100%;
  border-radius: 8px;
  transition: color 220ms var(--ease-out), background 220ms;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); background: #f7f0fb; }
.nav-links a.active { box-shadow: none; }

.nav-toggle {
  display: flex; width: 42px; height: 42px; padding: 10px;
  flex-direction: column; justify-content: space-between;
  border: 1px solid var(--border);
  background: #fff; z-index: 3; flex-shrink: 0; margin-left: auto;
  border-radius: 10px;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--text-primary); transition: transform 260ms var(--ease-out), opacity 260ms; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-logo-text { display: inline; }
  .nav-pill { display: inline-flex; }
  .nav-cta-wrap { display: flex; margin-left: 8px; }
  .nav-links {
    display: flex; position: static; flex-direction: row; align-items: center;
    gap: 4px; background: transparent; border: none; box-shadow: none; padding: 0;
    margin-left: auto; border-radius: 0;
  }
  .nav-links a { width: auto; padding: 8px 14px; }
  .nav-links a.active { box-shadow: none; background: transparent; color: var(--cyan); }
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.02em; text-transform: none;
  color: #1b0a3a;
  background: var(--accent-primary);
  border: none;
  border-radius: 30px;
  box-shadow: var(--glow-soft);
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 260ms, background 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 800ms ease forwards; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: var(--glow-strong); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0; text-transform: none;
  color: var(--text-primary);
  background: transparent;
  border: 2px solid var(--text-primary);
  border-radius: 30px;
  transition: background 220ms var(--ease-out), color 220ms, transform 200ms, border-color 220ms;
}
.btn-ghost:hover { background: var(--text-primary); color: #fff; transform: translateY(-2px); }
.btn-ghost:active { transform: scale(0.97); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.cta-microcopy {
  display: block; font-size: 13px; color: rgba(255,255,255,0.7);
  font-family: var(--font-body); letter-spacing: 0; margin-top: 14px;
}

.hero {
  padding: 48px 24px 40px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: stretch;
  min-height: 0;
}
.hero::before, .hero::after { display: none; }
.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  justify-items: stretch; text-align: left;
  position: relative; z-index: 1; width: 100%;
}
.hero-content { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; width: 100%; order: 1; }
.hero-preview { order: 2; }
.hero-eyebrow { display: none; }

.hero-brand, .hero-title.hero-brand {
  width: 100%; max-width: 1180px; margin: 0 auto 6px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 68px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  text-transform: none;
  text-align: left; color: #fff;
  text-shadow: none;
  pointer-events: none;
}
.hero-brand span, .hero-title.hero-brand span { display: inline; margin-right: 0.18em; }
.hero-brand span:first-child, .hero-title.hero-brand span:first-child { color: var(--accent-primary); }
.hero-brand span:last-child, .hero-title.hero-brand span:last-child {
  font-style: normal; color: #fff;
  background: none; -webkit-text-fill-color: #fff;
}
.hero-title em { display: none; }

.hero-place {
  margin: 0 auto 10px; width: fit-content; max-width: 1180px;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #1b0a3a; text-align: left;
  background: var(--accent-primary);
  padding: 6px 14px;
  border-radius: 30px;
}
.hero-italic {
  margin: 0 auto 18px; width: 100%; max-width: 1180px;
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(16px, 2vw, 20px); font-weight: 400;
  line-height: 1.5; letter-spacing: 0; color: rgba(255,255,255,0.86); text-align: left;
  -webkit-text-fill-color: rgba(255,255,255,0.86);
  max-width: 640px;
}

.hero-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.78); max-width: 540px; text-align: left; }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; align-items: center; justify-content: flex-start; gap: 12px; flex-wrap: wrap; }
.hero .cta-microcopy { color: rgba(255,255,255,0.65); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero .btn-ghost:hover { background: #fff; color: var(--text-primary); }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 14px; margin-top: 4px; }
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0; font-size: 13px; font-weight: 600;
  font-family: var(--font-display); letter-spacing: 0; text-transform: none;
  color: #fff; background: transparent; border: none;
}
.hero-trust-item svg { color: var(--accent-primary); }

.hero-preview {
  position: relative; width: 100%; max-width: none;
  padding: 22px; border-radius: 18px;
  background: #fff;
  border: none;
  box-shadow: var(--shadow-strong);
  overflow: hidden; color: var(--text-primary); text-align: left;
}
.hero-preview::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--accent-primary), var(--cyan));
}
.hero-preview::after { display: none; }

.preview-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); display: flex; align-items: center; gap: 6px;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.preview-reels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 16px; position: relative; z-index: 1; }
.preview-reel {
  height: 70px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; background: #f6f7fb; border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 280ms, transform 280ms, box-shadow 280ms;
}
.preview-reel.lit {
  border-color: var(--accent-primary);
  box-shadow: 0 8px 16px rgba(255,193,7,0.28);
  transform: translateY(-2px);
}

.preview-balance-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; background: #f6f7fb; border: none;
  margin-bottom: 14px; position: relative; z-index: 1; border-radius: 12px;
}
.preview-bal-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.preview-bal-value { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--cyan); letter-spacing: 0; }

.security-badge {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 14px; background: #f6f7fb; border: none;
  margin-top: 14px; position: relative; z-index: 1; border-radius: 12px;
}
.security-badge svg { color: var(--cyan); flex-shrink: 0; margin-top: 1px; }
.security-badge-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.security-badge-text strong {
  display: block; color: var(--text-primary); font-size: 13px; letter-spacing: 0;
  font-family: var(--font-display); text-transform: none; font-weight: 700;
}

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; text-align: left; align-items: center; max-width: 1180px; }
  .hero-content { align-items: flex-start; order: 1; }
  .hero-preview { order: 2; }
  .hero-sub, .hero .cta-microcopy { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-trust { justify-content: flex-start; }
}

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: none;
  color: #1b0a3a; margin-bottom: 12px;
  background: var(--accent-primary);
  padding: 6px 14px;
  border-radius: 30px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
  text-transform: none;
  color: var(--text-primary);
}
.section-title span { color: var(--cyan); font-style: normal; background: none; }
.section-sub { font-size: 16px; line-height: 1.7; color: var(--text-secondary); max-width: 620px; margin-top: 12px; }
.section-divider {
  width: 64px; height: 4px; margin-top: 16px; background: var(--accent-primary);
  border-radius: 99px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 780ms 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible .section-divider,
.section-header.visible .section-divider { transform: scaleX(1); }
.section-divider::after { display: none; }
.section-header { margin-bottom: 36px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 12px auto 0; }
.section-header.centered .section-divider { margin: 16px auto; transform-origin: center; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  filter: none;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; filter: none; }
.game-card.reveal { filter: none; }
.reveal-left { transform: translate3d(-40px, 8px, 0); }
.reveal-right { transform: translate3d(40px, 8px, 0); }
.reveal-scale { transform: translate3d(0, 24px, 0) scale(0.96); }
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { transform: none; }

.reveal .section-label { clip-path: none; }
.reveal.visible .section-label { clip-path: none; }
.reveal .section-title { transform: none; }
.reveal.visible .section-title { transform: none; }

.hero-brand, .hero-place, .hero-italic, .hero-content > *, .hero-preview {
  opacity: 0; transform: translate3d(0, 28px, 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 0.8s var(--ease-out) both; }
.hero.hero-in .hero-brand { animation-delay: 0.04s; animation-name: circusRiseScale; }
.hero.hero-in .hero-place { animation-delay: 0.1s; }
.hero.hero-in .hero-italic { animation-delay: 0.16s; }
.hero.hero-in .hero-content > *:nth-child(1) { animation-delay: 0.22s; }
.hero.hero-in .hero-content > *:nth-child(2) { animation-delay: 0.28s; }
.hero.hero-in .hero-preview { animation-delay: 0.2s; animation-name: circusRiseScale; }
.hero.hero-in .preview-reel { animation: reelDrop 0.5s var(--ease-spring); }
.hero.hero-in .preview-reel:nth-child(1) { animation-delay: 0.3s; }
.hero.hero-in .preview-reel:nth-child(2) { animation-delay: 0.36s; }
.hero.hero-in .preview-reel:nth-child(3) { animation-delay: 0.42s; }
.hero.hero-in .preview-reel:nth-child(4) { animation-delay: 0.48s; }
.hero.hero-in .preview-reel:nth-child(5) { animation-delay: 0.54s; }

@keyframes circusRise { from { opacity: 0; transform: translate3d(0,28px,0); } to { opacity: 1; transform: none; } }
@keyframes circusRiseScale { from { opacity: 0; transform: translate3d(0,32px,0) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes reelDrop { from { opacity: 0; transform: translateY(12px) scale(0.9); } to { opacity: 1; transform: none; } }
@keyframes trustPop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes statPop { from { transform: scale(0.8); } to { transform: none; } }
@keyframes iconPop { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: none; } }

.nav.is-scrolled { box-shadow: 0 10px 24px -16px rgba(27,10,58,0.35); }
.nav-inner { transition: box-shadow 240ms var(--ease-out); }

.games-section {
  padding: 80px 28px; position: relative; z-index: 1;
  background: #fff;
  color: var(--text-primary);
  border-top: none;
}
.games-section .section-label { color: #1b0a3a; }
.games-section .section-title, .games-section .section-title span { color: var(--text-primary); font-size: clamp(28px, 4.2vw, 42px); }
.games-section .section-title span { color: var(--cyan); }
.section-kicker {
  margin-top: 10px; font-family: var(--font-body); font-style: italic;
  font-size: 16px; font-weight: 400; color: var(--cyan); letter-spacing: 0;
}
.games-section .section-sub { color: var(--text-secondary); }
.games-section .btn-ghost { color: var(--text-primary); border-color: var(--text-primary); }
.games-section .btn-ghost:hover { background: var(--text-primary); color: #fff; }
.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: 28px; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
@media (min-width: 900px) {
  .games-grid .game-card:first-child { grid-column: span 1; grid-row: span 1; }
  .games-grid .game-card:first-child .game-thumb { height: 210px; min-height: 0; }
}

.game-card {
  display: flex; flex-direction: column; overflow: hidden; position: relative;
  border-radius: 16px; background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 240ms var(--ease-out), box-shadow 240ms;
}
.game-card:hover,
.game-card.reveal.visible:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.game-thumb {
  position: relative; height: 210px;
  background: var(--game-gradient, linear-gradient(135deg, #4a1d7a, #e91e8c));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: none;
  border-radius: 16px 16px 0 0;
}
.game-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(27,10,58,0.78) 100%); }
.game-thumb-icon { font-size: 42px; position: relative; z-index: 1; }
.game-card.reveal.visible .game-thumb-icon { animation: iconPop 0.5s 0.1s var(--ease-spring) both; }
.game-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 10px; font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: #1b0a3a;
  border-radius: 30px;
}
.game-tag.hot { background: #ff5d7a; color: #fff; }
.game-tag.new { background: var(--accent-primary); }
.game-tag.vip { background: var(--cyan); color: #fff; }
.game-play-pill {
  position: absolute; left: 50%; top: 48%; transform: translate(-50%, -6px);
  z-index: 2; padding: 8px 16px; font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: none;
  color: #1b0a3a; background: var(--accent-primary); border: none; opacity: 0;
  border-radius: 30px;
  transition: opacity 220ms, transform 220ms;
}
.game-card:hover .game-play-pill { opacity: 1; transform: translate(-50%, 0); }
.game-meta { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 3; }
.game-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: 0; text-transform: none; }
.game-genre { font-size: 12px; color: var(--accent-bright); font-weight: 600; letter-spacing: 0; text-transform: none; font-family: var(--font-display); }
.game-stat-row { display: none; }

.bonus-strip { padding: 80px 28px; background: var(--bg-dark); position: relative; z-index: 1; color: #fff; border-top: none; }
.bonus-strip::before { display: none; }
.bonus-strip .section-label { color: #1b0a3a; }
.bonus-strip .section-title, .bonus-strip .section-title span { color: #fff; }
.bonus-strip .section-title span { color: var(--accent-primary); }
.bonus-strip .section-sub { color: rgba(255,255,255,0.72); }
.bonus-strip .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.bonus-strip .btn-ghost:hover { background: #fff; color: var(--text-primary); }
.bonus-strip-inner { max-width: 1180px; margin: 0 auto; }
.bonus-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: none; color: var(--accent-primary); margin-bottom: 14px;
}
.bonus-urgency::before { content: '●'; font-size: 8px; color: var(--accent-primary); }
.bonus-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) {
  .bonus-layout { grid-template-columns: 1fr 1fr; }
}
.bonus-timer-wrap { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 16px; }
.reveal.visible .bonus-timer-wrap { animation: reelDrop 0.6s 0.1s var(--ease-spring) backwards; }
.timer-label { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
#bonus-timer { font-family: var(--font-mono); font-size: 52px; font-weight: 600; color: var(--accent-primary); letter-spacing: 0.04em; animation: vzpTimerPulse 1.8s ease-in-out infinite; }
#bonus-timer.low-time { color: #ff5d7a; animation: none; }
.bonus-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bonus-strip .btn-primary { background: var(--accent-primary); color: #1b0a3a; }
.bonus-strip .btn-primary:hover { background: var(--accent-bright); }
#bonus-toast { display: block; margin-top: 16px; font-size: 13px; color: var(--accent-primary); opacity: 0; transition: opacity 240ms; }
#bonus-toast.show { opacity: 1; }
.bonus-tiers { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.bonus-tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: transform 240ms, background 240ms;
}
.bonus-tier:hover { transform: translateX(4px); background: rgba(255,255,255,0.1); }
.bonus-tier-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 0; text-transform: none; }
.bonus-tier-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 3px; }
.bonus-tier-amount { font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--accent-primary); }
.bonus-redeem-spinning { opacity: 0.65; cursor: wait; }

.about-section { padding: 80px 28px; position: relative; z-index: 1; background: var(--bg-soft); }
.about-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 1024px) {
  .about-inner { grid-template-columns: 1.1fr 0.9fr; }
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.stat-box {
  padding: 22px 18px; background: #fff; border: none;
  border-radius: 16px; box-shadow: var(--shadow-soft);
  transition: transform 240ms;
}
.stat-box:hover { transform: translateY(-4px); }
.stat-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--cyan); margin-bottom: 4px; }
.stat-box.visible .stat-value { animation: statPop 0.55s var(--ease-spring) both; }
.stat-label { font-size: 13px; color: var(--text-muted); font-family: var(--font-display); letter-spacing: 0; text-transform: none; font-weight: 600; }
.about-commitments { display: flex; flex-direction: column; gap: 10px; }
.commitment-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; background: #fff; border: none;
  border-radius: 16px; box-shadow: var(--shadow-soft);
  transition: transform 240ms;
}
.commitment-item:hover { transform: translateX(4px); }
.commitment-icon { font-size: 22px; }
.commitment-item.reveal .commitment-icon { opacity: 0; }
.commitment-item.reveal.visible .commitment-icon { animation: iconPop 0.5s 0.08s var(--ease-spring) both; }
.commitment-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; text-transform: none; }
.commitment-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.features-section { padding: 80px 28px; position: relative; z-index: 1; background: #fff; }
.features-inner { max-width: 1180px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 8px; counter-reset: feat; }
.feature-card {
  padding: 28px 24px; background: #f6f7fb; border: none;
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-start; transition: transform 240ms, box-shadow 240ms;
  position: relative;
}
.feature-card::before {
  counter-increment: feat;
  content: counter(feat, decimal-leading-zero);
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--accent-primary); line-height: 1; margin-bottom: 8px;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); background: #fff; }
.feature-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: #fff; border: none; margin-bottom: 4px;
  border-radius: 14px; box-shadow: var(--shadow-soft);
}
.feature-card.reveal .feature-icon { opacity: 0; }
.feature-card.reveal.visible .feature-icon { animation: iconPop 0.5s 0.1s var(--ease-spring) both; }
.feature-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 0; text-transform: none; }
.feature-text { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
@media (min-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
}

.cta-banner {
  padding: 72px 28px;
  background: var(--accent-primary);
  text-align: center;
  position: relative; z-index: 1;
}
.cta-banner-inner.reveal.visible .btn-primary,
.cta-banner-inner.reveal.visible .btn-ghost { animation: reelDrop 0.55s 0.12s var(--ease-spring) backwards; }
.cta-banner-inner.reveal.visible .btn-ghost { animation-delay: 0.2s; }
.cta-banner::before { display: none; }
.cta-banner .section-label { background: #1b0a3a; color: #fff; }
.cta-banner .section-title { color: #1b0a3a; }
.cta-banner .section-title span { color: var(--cyan-deep); }
.cta-banner .section-sub { color: rgba(27,10,58,0.75); margin-left: auto; margin-right: auto; }
.cta-banner .cta-microcopy { color: rgba(27,10,58,0.6); }
.cta-banner .btn-ghost { color: #1b0a3a; border-color: #1b0a3a; }
.cta-banner .btn-ghost:hover { background: #1b0a3a; color: #fff; }
.cta-banner .btn-primary { background: #1b0a3a; color: #fff; box-shadow: none; }
.cta-banner .btn-primary:hover { background: #2d1155; }
.cta-banner-inner { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 8px; justify-items: center; }
.cta-banner .section-title { margin-bottom: 0; }
.cta-banner .section-sub { margin: 10px 0 24px; }
.cta-banner .section-divider { background: #1b0a3a; margin: 12px auto !important; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
@media (min-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
}

.rg-callout { padding: 28px; background: #120628; border: 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: 14px; flex: 1; min-width: 280px; }
.rg-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 18px; background: rgba(255,255,255,0.06); border: none; flex-shrink: 0; border-radius: 12px; }
.rg-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; text-transform: none; }
.rg-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 560px; }
.rg-desc a { color: var(--accent-primary); text-decoration: underline; text-underline-offset: 2px; }
.rg-logos { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.rg-logo-box {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 8px 14px; font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: #1b0a3a; background: #fff; border: none; border-radius: 10px;
  transition: transform 200ms;
}
.rg-logo-box:hover { transform: translateY(-1px); }
.rg-logo-box img { height: 20px; width: auto; max-width: 140px; object-fit: contain; }
.rg-logo-fallback { color: #1b0a3a; }

.footer { padding: 8px 20px 28px; background: var(--bg-dark); position: relative; z-index: 1; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  border-top: none; padding: 48px 0 8px; color: rgba(255,255,255,0.7);
}
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 36px; height: 36px; }
.footer-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.02em; text-transform: none; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 320px; }
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-badge {
  padding: 5px 10px; font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: #1b0a3a; background: var(--accent-primary); border: none; border-radius: 30px;
}
.footer-col-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0; text-transform: none; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 180ms; }
.footer-col ul li a:hover { color: var(--accent-primary); }
.footer-social { display: flex; gap: 8px; }
.footer-social-link {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: none; background: rgba(255,255,255,0.08); color: #fff; font-weight: 700;
  border-radius: 50%; transition: background 200ms, transform 200ms, color 200ms;
}
.footer-social-link:hover { background: var(--accent-primary); color: #1b0a3a; transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); font-family: var(--font-display); letter-spacing: 0; text-transform: none; font-weight: 500; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.45); font-family: var(--font-display); font-weight: 500; }
.footer-legal a:hover { color: var(--accent-primary); }
.footer-disclaimer { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 1100px; }
.footer-disclaimer a { color: var(--accent-primary); text-decoration: underline; }

.contact-section { padding: 48px 28px 72px; position: relative; z-index: 1; }
.contact-inner { max-width: 1180px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 12px; order: 1; }
.contact-card { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: #fff; border: none; border-radius: 14px; box-shadow: var(--shadow-soft); transition: transform 240ms; }
.contact-card:hover { transform: translateY(-3px); }
.contact-card-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 18px; background: #f6f7fb; border: none; flex-shrink: 0; border-radius: 12px; }
.contact-card-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; text-transform: none; }
.contact-card-value { font-size: 14px; color: var(--text-secondary); }
.contact-card-value a { color: var(--cyan); }
.contact-form {
  display: flex; flex-direction: column; gap: 16px; padding: 32px;
  background: #fff; border: none; order: 2;
  border-radius: 18px; box-shadow: var(--shadow-soft);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-textarea {
  padding: 12px 14px; background: #f6f7fb; border: 1px solid transparent;
  color: var(--text-primary); font-size: 14px; transition: border-color 220ms, box-shadow 220ms;
  border-radius: 10px;
}
.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 3px var(--accent-glow); }
.form-input.invalid, .form-textarea.invalid { border-color: #ff5d7a; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-error { display: none; font-size: 12px; color: #ff5d7a; }
.form-error.show { display: block; }
#contact-success { display: none; padding: 12px 14px; background: #e8f8ef; border: none; color: #1b7a45; font-size: 13px; font-weight: 600; border-radius: 10px; }
#contact-success.show { display: block; }

.page-header { padding: 56px 28px 16px; text-align: center; position: relative; z-index: 1; }
.page-header-inner { max-width: 760px; margin: 0 auto; padding: 0; }
.page-header .section-label { display: inline-flex; margin-bottom: 14px; }
.page-header .section-title { font-size: clamp(32px, 5vw, 48px); }
.page-header .section-sub { margin: 12px auto 0; }
.page-header .section-divider { margin-left: auto; margin-right: auto; transform-origin: center; }

.legal-section { padding: 24px 28px 72px; position: relative; z-index: 1; }
.legal-inner { max-width: 840px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-primary); margin: 28px 0 12px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.legal-content h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--cyan); margin: 18px 0 8px; }
.legal-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; 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.8; margin-bottom: 6px; }
.legal-content ul li::marker { color: var(--accent-primary); }
.legal-content a { color: var(--cyan); text-decoration: underline; }
.legal-content code { font-family: var(--font-mono); font-size: 12.5px; background: var(--surface-2); padding: 2px 6px; color: var(--cyan-deep); border-radius: 4px; }
.legal-content strong { color: var(--text-primary); }
.legal-alert { padding: 14px 16px; background: #fff; border: none; margin: 16px 0; font-size: 14px; border-radius: 12px; box-shadow: var(--shadow-soft); }
.legal-meta { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

.about-page-section { padding: 24px 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: 16px; margin-top: 12px; }
.about-page-card { padding: 24px 22px; background: #fff; border: none; border-radius: 16px; box-shadow: var(--shadow-soft); transition: transform 240ms; }
.about-page-card:hover { transform: translateY(-4px); }
.about-page-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; text-transform: none; }
.about-page-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.about-page-card strong { color: var(--cyan); }
.team-values { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: #fff; border: none; border-radius: 14px; box-shadow: var(--shadow-soft); }
.value-icon { font-size: 22px; }
.value-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; text-transform: none; }
.value-desc { font-size: 14px; color: var(--text-secondary); }

.play-page { padding: 36px 28px 64px; position: relative; z-index: 1; }
.play-inner { max-width: 1180px; margin: 0 auto; }
.play-layout { display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start; }
.game-frame-wrap { background: #120628; border: none; overflow: hidden; order: 1; border-radius: 16px; box-shadow: var(--shadow-strong); }
.game-frame-wrap iframe { display: block; width: 100%; height: 640px; border: none; }
.play-sidebar { display: flex; flex-direction: column; gap: 12px; order: 2; }
.play-card { padding: 18px; background: #fff; border: none; border-radius: 16px; box-shadow: var(--shadow-soft); }
.play-card-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.play-stat { display: flex; justify-content: space-between; align-items: center; padding: 10px 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: 16px; font-weight: 600; color: var(--text-primary); }
.bet-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.bet-opt { padding: 10px 8px; background: #f6f7fb; border: none; color: var(--text-secondary); font-family: var(--font-mono); font-size: 13px; font-weight: 600; transition: background 200ms, color 200ms, transform 180ms; border-radius: 30px; }
.bet-opt.active, .bet-opt:hover { background: var(--accent-primary); color: #1b0a3a; }
.bet-opt:active { transform: scale(0.97); }
#spin-btn {
  display: flex; align-items: center; justify-content: center; width: 100%; gap: 10px; padding: 15px;
  font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0;
  color: #1b0a3a; background: var(--accent-primary); border: none;
  cursor: pointer; position: relative; overflow: hidden; transition: transform 200ms, background 220ms;
  border-radius: 30px; box-shadow: var(--glow-soft);
}
#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(-1px); background: var(--accent-bright); }
#spin-btn:hover::after { animation: vzpShimmer 800ms ease forwards; }
#spin-btn:active { transform: scale(0.97); }
#spin-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
#spin-icon-el { font-size: 18px; transition: transform 600ms var(--ease-out); }
#win-msg { display: none; padding: 12px 14px; background: #fff6d8; border: none; font-size: 14px; font-weight: 700; color: #1b0a3a; text-align: center; margin-top: 12px; border-radius: 10px; }
#win-msg.show { display: block; }
.reel-track { display: flex; gap: 10px; justify-content: center; padding: 8px 0; }
.reel { width: 52px; height: 64px; background: #f6f7fb; border: none; display: flex; align-items: center; justify-content: center; font-size: 22px; border-radius: 12px; }
.reel.win-reel { box-shadow: 0 0 0 2px var(--accent-primary); }
.play-page .section-title span { color: var(--cyan); }
.play-page .games-grid .game-name { color: #fff; }
.play-page .games-grid .game-genre { color: var(--accent-bright); }

.age-gate {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(18, 6, 40, 0.82); backdrop-filter: blur(12px);
  align-items: center; justify-content: center; padding: 24px;
}
.age-gate.show { display: flex; }
.age-gate-box {
  max-width: 480px; width: 100%;
  background: #fff;
  border: none;
  padding: 40px 32px; text-align: center;
  box-shadow: var(--shadow-strong);
  color: var(--text-primary); position: relative;
  border-radius: 20px;
}
.age-gate-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--accent-primary), var(--cyan)); border-radius: 20px 20px 0 0; }
.age-gate-icon { font-size: 40px; margin-bottom: 14px; animation: vzpFloat 3.2s ease-in-out infinite; }
.age-gate-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; text-transform: none; }
.age-gate-title em { font-style: normal; color: var(--cyan); }
.age-gate-sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.65; }
.age-gate-sub strong { color: var(--text-primary); }
.age-gate-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.age-gate-actions .btn-ghost { color: var(--text-primary); border-color: var(--text-primary); }
.age-gate-legal { margin-top: 18px; font-size: 11px; color: var(--text-muted); line-height: 1.7; }
.age-gate-legal a { color: var(--cyan); text-decoration: underline; }

@media (max-width: 1024px) {
  .hero-inner { max-width: 560px; gap: 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info, .contact-form { order: 0; }
  .play-layout { grid-template-columns: 1fr; }
  .play-sidebar, .game-frame-wrap { order: 0; }
  .game-frame-wrap iframe { height: 520px; }
  .about-page-grid { grid-template-columns: 1fr; }
  .bonus-layout { grid-template-columns: 1fr; gap: 28px; }
  .page-header-inner { padding: 0 8px; max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--border); padding: 8px 14px 16px; }
  .nav-links.open { display: flex; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions > * { width: 100%; }
  .games-section, .bonus-strip, .about-section, .features-section, .cta-banner { padding: 56px 20px; }
  .footer-inner { padding: 32px 4px 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .rg-callout-inner { flex-direction: column; align-items: flex-start; }
  .experience-dock { width: calc(100% - 20px); left: 10px; right: 10px; transform: none; }
  .trust-ribbon-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero-brand, .hero-title.hero-brand { font-size: clamp(32px, 12vw, 44px); }
  .section-title { font-size: 26px; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 16px; }
  .age-gate-box { padding: 32px 22px; }
  .preview-reel { height: 54px; font-size: 20px; }
  .game-thumb { height: 190px; }
}

@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,
  .trust-item, .feature-icon, .stat-value, .preview-reel, .bonus-timer-wrap,
  .cta-banner-inner .btn-primary, .cta-banner-inner .btn-ghost, .section-divider, .section-title,
  .commitment-icon, .game-thumb-icon {
    opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; filter: none !important; clip-path: none !important;
  }
  .aurora-blob, .age-gate-icon, #bonus-timer { animation: none !important; }
  .nav::before { transform: none !important; }
}

.float-mark { position: relative; z-index: 6; display: none; height: 0; }
.float-mark img { width: 64px; height: 64px; }

.experience-dock {
  position: fixed; right: 16px; left: auto; bottom: 16px; transform: none;
  z-index: 80; display: flex; align-items: center; gap: 12px;
  max-width: calc(100vw - 24px); padding: 8px 8px 8px 18px;
  background: #1b0a3a; border: none; border-radius: 999px;
  box-shadow: var(--shadow-strong); color: #fff; font-family: var(--font-display);
  transition: transform 220ms var(--ease-out);
}
.experience-dock .dock-copy { font-size: 13px; font-weight: 700; white-space: nowrap; letter-spacing: 0; text-transform: none; }
.experience-dock .dock-meta { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-primary); white-space: nowrap; }
.experience-dock .dock-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: var(--accent-primary); color: #1b0a3a; font-size: 16px; font-weight: 700; flex-shrink: 0;
  border-radius: 50%;
}
.experience-dock:hover { transform: 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 { left: 10px; right: 10px; max-width: none; }
}
