/* =============================================================
   zunavelle — atelier editorial system
   Parchment canvas · espresso ink · teal accent
   Display: Fraunces    Body: Figtree    Labels: Space Grotesk
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg-dark:        #1a1612;
  --bg-soft:        #efe8dc;
  --surface:        #f7f2e9;
  --surface-2:      #e4dccf;
  --surface-elev:   #fffaf2;
  --surface-glass:  rgba(247, 242, 233, 0.86);

  --border-soft:    rgba(26, 22, 18, 0.08);
  --border:         rgba(26, 22, 18, 0.14);
  --border-strong:  rgba(15, 122, 102, 0.7);

  --accent-primary: #0f7a66;
  --accent-bright:  #1a9b84;
  --accent-soft:    #4ecdc4;
  --accent-deep:    #0a4f44;
  --accent-glow:    rgba(15, 122, 102, 0.22);

  --cyan:           #0f7a66;
  --cyan-bright:    #1a9b84;
  --cyan-deep:      #0a4f44;
  --cyan-glow:      rgba(15, 122, 102, 0.16);

  --text-primary:   #1a1612;
  --text-secondary: #5c5348;
  --text-muted:     #8a8176;
  --text-on-dark:   #f7f2e9;

  --radius-sm:  2px;
  --radius:     4px;
  --radius-lg:  6px;
  --radius-xl:  8px;

  --shadow-soft:    0 8px 24px -16px rgba(26, 22, 18, 0.28);
  --shadow-strong:  0 18px 40px -20px rgba(26, 22, 18, 0.38);
  --glow-soft:      0 6px 18px rgba(15, 122, 102, 0.18);
  --glow-strong:    0 10px 26px rgba(15, 122, 102, 0.28);
  --glow-cyan:      0 6px 16px rgba(15, 122, 102, 0.16);

  --font-display: 'Fraunces', Georgia, serif;
  --font-alt:     'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Figtree', system-ui, sans-serif;
  --font-mono:    'Space Grotesk', ui-sans-serif, sans-serif;

  --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(15, 122, 102, 0.22); 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 .trust-ribbon { order: 1; }
body.has-hero .nav { order: 2; }
body.has-hero .hero,
body.has-hero .float-mark { order: 3; }
body.has-hero .about-section { order: 4; }
body.has-hero .games-section { order: 5; }
body.has-hero .features-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: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 80px;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(720px 280px at 100% 0%, rgba(15,122,102,0.06), transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(26,22,18,0.025) 48px);
  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: 520px; pointer-events: none; z-index: 0; overflow: hidden; opacity: 0.35; }
.aurora-blob {
  position: absolute; border-radius: 0; filter: blur(80px); opacity: 0.5;
  animation: auroraFloat 30s ease-in-out infinite; will-change: transform;
}
.aurora-blob-1 { width: 280px; height: 280px; top: -40px; right: 10%; background: radial-gradient(circle, rgba(15,122,102,0.35), transparent 70%); }
.aurora-blob-2 { width: 240px; height: 240px; top: 80px; left: -40px; background: radial-gradient(circle, rgba(78,205,196,0.2), transparent 70%); animation-delay: -9s; }
.aurora-blob-3 { width: 320px; height: 320px; top: 20px; left: 42%; background: radial-gradient(circle, rgba(26,22,18,0.25), transparent 70%); animation-delay: -16s; }

@keyframes auroraFloat {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(10px,-8px); }
}
@keyframes vzpFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes vzpShimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes vzpTimerPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.72; } }

.header-media {
  position: absolute; top: 0; left: 0; right: 0;
  height: 420px; z-index: 0; overflow: hidden; pointer-events: none;
}
body.has-hero .header-media { height: 560px; min-height: 0; }
.header-video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  filter: grayscale(0.45) saturate(0.7) contrast(1.1) brightness(0.32);
  transform: scale(1.04); will-change: transform;
}
.header-media-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,22,18,0.55) 0%, rgba(26,22,18,0.82) 62%, 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: 380px; min-height: 0; }
}

.trust-ribbon {
  position: relative; z-index: 3;
  background: var(--accent-deep);
  border: none;
  padding: 0;
}
.trust-ribbon::after { display: none; }
.trust-ribbon-inner {
  max-width: none; margin: 0;
  padding: 10px 28px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 2px 0;
  font-size: 11px; font-weight: 600;
  font-family: var(--font-alt);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #f7f2e9;
  background: transparent;
  border: none;
  border-radius: 0;
}
.trust-item svg { flex-shrink: 0; color: var(--accent-soft); }
.trust-sep { display: inline; color: rgba(247,242,233,0.28); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239, 232, 220, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: none;
}
.nav::before {
  content: '';
  position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 2px;
  background: var(--accent-primary);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  pointer-events: none; z-index: 4;
}
.nav::after { display: none; }
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px; position: relative;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; z-index: 2; flex-shrink: 0; grid-column: 2; justify-self: center; }
.nav-logo img {
  width: 34px; height: 34px;
  border-radius: 4px;
  transition: transform 240ms var(--ease-out);
}
.nav-logo:hover img { transform: none; }
.nav-logo-text {
  display: none;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--text-primary);
}
.nav-logo-text em { font-style: italic; font-weight: 600; color: var(--accent-primary); }
.nav-pill {
  display: none;
  padding: 0;
  font-family: var(--font-alt);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-primary);
  background: transparent;
  border: none;
  border-radius: 0;
  white-space: nowrap;
  margin-left: 0;
  grid-column: 1;
  justify-self: start;
}
.nav-cta-wrap { display: none; flex-shrink: 0; grid-column: 3; justify-self: end; }
.nav-links {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  padding: 8px 16px 16px;
  box-shadow: var(--shadow-soft);
}
.nav-links.open { display: flex; }
.nav-links a {
  font-family: var(--font-alt);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 12px 6px;
  width: 100%;
  border-radius: 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 240ms var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-primary); background: transparent; }
.nav-links a.active { box-shadow: none; }

.nav-toggle {
  display: flex; width: 40px; height: 40px; padding: 10px;
  flex-direction: column; justify-content: space-between;
  border: 1px solid var(--border);
  background: transparent; z-index: 3; flex-shrink: 0; margin-left: auto;
  border-radius: 0;
  grid-column: 3; justify-self: end;
}
.nav-toggle span { display: block; width: 100%; height: 1.5px; 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: none; }
  .nav-cta-wrap { display: flex; }
  .nav-links {
    display: flex; position: static; flex-direction: row; align-items: center;
    gap: 4px; background: transparent; border: none; box-shadow: none; padding: 0;
    margin: 0; grid-column: 1; justify-self: start;
  }
  .nav-links a { width: auto; padding: 6px 10px; border-bottom: none; }
  .nav-links a.active { box-shadow: inset 0 -1px 0 var(--accent-primary); background: transparent; color: var(--accent-primary); }
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-alt);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #f7f2e9;
  background: var(--accent-primary);
  border: none;
  border-radius: var(--radius);
  box-shadow: none;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 220ms var(--ease-out), background 220ms, box-shadow 220ms;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%); pointer-events: none;
}
.btn-primary:hover::before { animation: vzpShimmer 700ms ease forwards; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: var(--glow-soft); }
.btn-primary:active { transform: scale(0.98); }
.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 22px;
  font-family: var(--font-alt);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--text-primary);
  border-radius: var(--radius);
  transition: background 220ms var(--ease-out), color 220ms, transform 200ms;
}
.btn-ghost:hover { background: var(--text-primary); color: var(--bg-soft); transform: translateY(-1px); }
.btn-ghost:active { transform: scale(0.98); }
.btn-sm { padding: 9px 16px; font-size: 12px; }

.cta-microcopy {
  display: block; font-size: 13px; color: rgba(247,242,233,0.62);
  font-family: var(--font-body); font-style: italic; letter-spacing: 0; margin-top: 16px;
}

.hero {
  padding: 56px 24px 48px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  min-height: 0;
}
.hero::before, .hero::after { display: none; }
.hero-inner {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; 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%; order: 1; }
.hero-preview { order: 2; }
.hero-eyebrow { display: none; }

.hero-brand, .hero-title.hero-brand {
  width: 100%; max-width: 880px; margin: 0 auto 4px;
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 108px);
  font-weight: 600; line-height: 0.86; letter-spacing: -0.04em;
  text-transform: lowercase;
  text-align: center; color: #f7f2e9;
  text-shadow: none;
  pointer-events: none;
}
.hero-brand span, .hero-title.hero-brand span { display: block; margin-right: 0; }
.hero-brand span:first-child, .hero-title.hero-brand span:first-child { color: #f7f2e9; font-style: normal; }
.hero-brand span:last-child, .hero-title.hero-brand span:last-child {
  font-style: italic; color: var(--accent-soft);
  background: none; -webkit-text-fill-color: var(--accent-soft);
}
.hero-title em { display: none; }

.hero-place {
  margin: 12px auto 8px; width: fit-content; max-width: 880px;
  display: inline-flex;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-soft); text-align: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--accent-soft);
}
.hero-italic {
  margin: 0 auto 8px; width: 100%; max-width: 640px;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px); font-weight: 500;
  line-height: 1.35; letter-spacing: -0.01em; color: rgba(247,242,233,0.86); text-align: center;
  -webkit-text-fill-color: rgba(247,242,233,0.86);
}

.hero-sub { font-size: 16px; line-height: 1.7; color: rgba(247,242,233,0.7); max-width: 560px; text-align: center; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero .cta-microcopy { color: rgba(247,242,233,0.5); }
.hero .btn-ghost { color: #f7f2e9; border-color: rgba(247,242,233,0.4); }
.hero .btn-ghost:hover { background: #f7f2e9; color: var(--bg-dark); }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 4px; }
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0; font-size: 12px; font-weight: 600;
  font-family: var(--font-alt); letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(247,242,233,0.78); background: transparent; border: none;
}
.hero-trust-item svg { color: var(--accent-soft); }

.hero-preview {
  position: relative; width: 100%; max-width: 880px;
  padding: 20px;
  border-radius: 0;
  background: rgba(247,242,233,0.06);
  backdrop-filter: none;
  border: 1px solid rgba(247,242,233,0.14);
  box-shadow: none;
  overflow: hidden; color: #f7f2e9; text-align: left;
}
.hero-preview::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--accent-soft);
}
.hero-preview::after { display: none; }

.preview-label {
  font-family: var(--font-alt); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-soft); display: flex; align-items: center; gap: 6px;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.preview-reels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 14px; position: relative; z-index: 1; }
.preview-reel {
  height: 64px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: rgba(0,0,0,0.25);
  border: 1px solid rgba(247,242,233,0.1);
  border-radius: 0;
  transition: border-color 260ms, transform 260ms;
}
.preview-reel.lit {
  border-color: var(--accent-soft);
  box-shadow: none;
  transform: translateY(-2px);
}

.preview-balance-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; background: transparent; border: none;
  border-top: 1px solid rgba(247,242,233,0.1);
  margin-bottom: 14px; position: relative; z-index: 1; border-radius: 0;
}
.preview-bal-label { font-family: var(--font-alt); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,242,233,0.5); }
.preview-bal-value { font-family: var(--font-mono); font-size: 24px; font-weight: 600; color: var(--accent-soft); letter-spacing: 0; }

.security-badge {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 0; background: transparent; border: none;
  margin-top: 12px; position: relative; z-index: 1; border-radius: 0;
}
.security-badge svg { color: var(--accent-soft); flex-shrink: 0; margin-top: 1px; }
.security-badge-text { font-size: 13px; color: rgba(247,242,233,0.55); line-height: 1.5; }
.security-badge-text strong {
  display: block; color: #f7f2e9; font-size: 13px; letter-spacing: 0.04em;
  font-family: var(--font-alt); text-transform: uppercase; font-weight: 600;
}

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

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-alt); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-primary); margin-bottom: 12px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.03em;
  text-transform: none;
  color: var(--text-primary);
}
.section-title span { color: var(--accent-primary); font-style: italic; background: none; }
.section-sub { font-size: 16px; line-height: 1.7; color: var(--text-secondary); max-width: 560px; margin-top: 14px; }
.section-divider {
  width: 40px; height: 1px; margin-top: 16px;
  background: var(--accent-primary);
  border-radius: 0;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 700ms 160ms var(--ease-out);
}
.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: left; }
.section-header.centered .section-sub { margin: 14px 0 0; }
.section-header.centered .section-divider { margin: 16px 0; transform-origin: left; }

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

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

.hero-brand, .hero-place, .hero-italic, .hero-content > *, .hero-preview {
  opacity: 0; transform: translate3d(0, 20px, 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.75s 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; }
.hero.hero-in .preview-reel { animation: reelDrop 0.45s var(--ease-out); }
.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,20px,0); } to { opacity: 1; transform: none; } }
@keyframes circusRiseScale { from { opacity: 0; transform: translate3d(0,16px,0); } to { opacity: 1; transform: none; } }
@keyframes reelDrop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes trustPop { from { opacity: 0; } to { opacity: 1; } }
@keyframes statPop { from { opacity: 0; } to { opacity: 1; } }
@keyframes iconPop { from { opacity: 0; } to { opacity: 1; } }

.nav.is-scrolled { box-shadow: 0 8px 20px -16px rgba(26,22,18,0.35); }
.nav-inner { transition: box-shadow 240ms var(--ease-out); }

.games-section {
  padding: 88px 28px; position: relative; z-index: 1;
  background: var(--bg-soft);
  color: var(--text-primary);
  border-top: 1px solid var(--border);
}
.games-section .section-label { color: var(--accent-primary); }
.games-section .section-title, .games-section .section-title span { color: var(--text-primary); font-size: clamp(30px, 5vw, 52px); }
.games-section .section-title span { color: var(--accent-primary); font-style: italic; }
.section-kicker {
  margin-top: 10px; font-family: var(--font-display); font-style: italic;
  font-size: 18px; font-weight: 500; color: var(--accent-primary); 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: var(--bg-soft); }
.games-section-inner { max-width: 1120px; margin: 0 auto; }
.games-header-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.games-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 900px) {
  .games-grid { grid-template-columns: 1fr 1fr; }
  .games-grid .game-card:first-child { grid-column: span 1; grid-row: span 1; }
  .games-grid .game-card:first-child .game-thumb { height: 92px; min-height: 0; width: 120px; }
}

.game-card {
  display: flex; flex-direction: row; overflow: hidden; position: relative;
  border-radius: 0; background: transparent;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: background 220ms var(--ease-out);
}
.game-card:hover,
.game-card.reveal.visible:hover { transform: none; box-shadow: none; background: var(--surface); }
.game-thumb {
  position: relative; height: 92px; width: 120px; flex-shrink: 0;
  background: var(--game-gradient, linear-gradient(135deg, #1a1612, #0f7a66));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: none;
  border-radius: 0;
}
.game-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 40%, rgba(26,22,18,0.15) 100%); }
.game-thumb-icon { font-size: 28px; position: relative; z-index: 1; }
.game-card.reveal.visible .game-thumb-icon { animation: none; }
.game-tag {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  padding: 2px 6px; font-family: var(--font-alt); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #f7f2e9;
  border-radius: 0; background: var(--bg-dark);
}
.game-tag.hot { background: #1a1612; color: #f7f2e9; }
.game-tag.new { background: var(--accent-primary); }
.game-tag.vip { background: var(--accent-deep); color: var(--accent-soft); }
.game-play-pill {
  position: static; left: auto; top: auto; transform: none;
  z-index: 2; padding: 0; margin-left: auto; margin-right: 16px; align-self: center;
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-primary); background: transparent; border: none; opacity: 1;
  border-radius: 0;
  transition: color 200ms;
}
.game-card:hover .game-play-pill { opacity: 1; transform: none; color: var(--accent-deep); }
.game-meta { position: static; left: auto; right: auto; bottom: auto; z-index: 3; padding: 16px 14px; flex: 1; }
.game-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-primary); line-height: 1.2; letter-spacing: -0.02em; text-transform: none; }
.game-genre { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-alt); margin-top: 4px; }
.game-stat-row { display: none; }

.bonus-strip { padding: 88px 28px; background: var(--bg-dark); position: relative; z-index: 1; color: #f7f2e9; border-top: none; }
.bonus-strip::before { display: none; }
.bonus-strip .section-label { color: var(--accent-soft); }
.bonus-strip .section-title, .bonus-strip .section-title span { color: #f7f2e9; }
.bonus-strip .section-title span { color: var(--accent-soft); font-style: italic; }
.bonus-strip .section-sub { color: rgba(247,242,233,0.62); }
.bonus-strip .btn-ghost { color: #f7f2e9; border-color: rgba(247,242,233,0.35); }
.bonus-strip .btn-ghost:hover { background: #f7f2e9; color: var(--bg-dark); }
.bonus-strip-inner { max-width: 1120px; margin: 0 auto; }
.bonus-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-alt); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 14px;
}
.bonus-urgency::before { content: ''; width: 8px; height: 8px; background: var(--accent-soft); }
.bonus-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 900px) {
  .bonus-layout { grid-template-columns: 1.1fr 0.9fr; }
}
.bonus-timer-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin: 22px 0 20px; }
.reveal.visible .bonus-timer-wrap { animation: none; }
.timer-label { font-family: var(--font-alt); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,242,233,0.45); }
#bonus-timer { font-family: var(--font-display); font-size: 64px; font-weight: 600; color: #f7f2e9; letter-spacing: -0.03em; line-height: 1; animation: vzpTimerPulse 2s ease-in-out infinite; }
#bonus-timer.low-time { color: #e07a6a; animation: none; }
.bonus-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bonus-strip .btn-primary { background: var(--accent-primary); color: #f7f2e9; }
.bonus-strip .btn-primary:hover { background: var(--accent-bright); }
#bonus-toast { display: block; margin-top: 16px; font-size: 13px; color: var(--accent-soft); opacity: 0; transition: opacity 240ms; }
#bonus-toast.show { opacity: 1; }
.bonus-tiers { display: flex; flex-direction: column; gap: 0; min-width: 0; border-top: 1px solid rgba(247,242,233,0.12); }
.bonus-tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; background: transparent; border: none;
  border-bottom: 1px solid rgba(247,242,233,0.12);
  border-radius: 0;
  transition: padding 220ms;
}
.bonus-tier:hover { transform: none; background: transparent; padding-left: 8px; }
.bonus-tier-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #f7f2e9; letter-spacing: -0.02em; text-transform: none; }
.bonus-tier-sub { font-size: 13px; color: rgba(247,242,233,0.5); margin-top: 3px; }
.bonus-tier-amount { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--accent-soft); }
.bonus-redeem-spinning { opacity: 0.65; cursor: wait; }

.about-section { padding: 88px 28px; position: relative; z-index: 1; background: var(--surface); border-top: 1px solid var(--border); }
.about-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 1024px) {
  .about-inner { grid-template-columns: 0.9fr 1.1fr; }
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 28px; border-top: 1px solid var(--border); }
.stat-box {
  padding: 22px 0 18px; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0; box-shadow: none;
  transition: none;
}
.stat-box:nth-child(odd) { padding-right: 18px; }
.stat-box:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--border); }
.stat-box:hover { transform: none; }
.stat-value { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--accent-primary); margin-bottom: 4px; }
.stat-box.visible .stat-value { animation: none; }
.stat-label { font-size: 12px; color: var(--text-muted); font-family: var(--font-alt); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.about-commitments { display: flex; flex-direction: column; gap: 0; }
.commitment-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0; box-shadow: none;
  transition: none;
}
.commitment-item:hover { transform: none; }
.commitment-icon { font-size: 18px; }
.commitment-item.reveal .commitment-icon { opacity: 1; }
.commitment-item.reveal.visible .commitment-icon { animation: none; }
.commitment-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; text-transform: none; }
.commitment-text { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

.features-section { padding: 88px 28px; position: relative; z-index: 1; background: var(--bg-soft); border-top: 1px solid var(--border); }
.features-inner { max-width: 800px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 8px; counter-reset: feat; }
.feature-card {
  padding: 28px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 20px;
  align-items: start;
  transition: none;
  position: relative;
}
.feature-card::before {
  counter-increment: feat;
  content: counter(feat, decimal-leading-zero);
  font-family: var(--font-alt); font-size: 13px; font-weight: 600;
  color: var(--accent-primary); line-height: 1; letter-spacing: 0.08em;
  grid-row: 1 / span 3;
}
.feature-card:hover { transform: none; box-shadow: none; background: transparent; }
.feature-icon { display: none; }
.feature-card.reveal .feature-icon,
.feature-card.reveal.visible .feature-icon { opacity: 1; animation: none; }
.feature-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; 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; gap: 0; }
}

.cta-banner {
  padding: 96px 28px;
  background: var(--accent-primary);
  text-align: left;
  position: relative; z-index: 1;
}
.cta-banner-inner.reveal.visible .btn-primary,
.cta-banner-inner.reveal.visible .btn-ghost { animation: none; }
.cta-banner::before { display: none; }
.cta-banner .section-label { background: transparent; color: rgba(247,242,233,0.7); }
.cta-banner .section-title { color: #f7f2e9; }
.cta-banner .section-title span { color: #f7f2e9; font-style: italic; }
.cta-banner .section-sub { color: rgba(247,242,233,0.78); margin-left: 0; margin-right: auto; }
.cta-banner .cta-microcopy { color: rgba(247,242,233,0.6); }
.cta-banner .btn-ghost { color: #f7f2e9; border-color: #f7f2e9; }
.cta-banner .btn-ghost:hover { background: #f7f2e9; color: var(--accent-deep); }
.cta-banner .btn-primary { background: #f7f2e9; color: var(--accent-deep); }
.cta-banner .btn-primary:hover { background: #fff; }
.cta-banner-inner { max-width: 720px; margin: 0; display: grid; grid-template-columns: 1fr; gap: 8px; justify-items: start; }
.cta-banner .section-title { margin-bottom: 0; }
.cta-banner .section-sub { margin: 12px 0 28px; }
.cta-banner .section-divider { background: #f7f2e9; margin: 16px 0 !important; }
.cta-banner-actions { display: flex; align-items: center; justify-content: flex-start; gap: 12px; flex-wrap: wrap; }
@media (min-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; margin-left: max(28px, calc((100% - 1120px) / 2)); }
}

.rg-callout { padding: 28px; background: var(--surface-2); border-top: 1px solid var(--border); position: relative; z-index: 1; }
.rg-callout-inner { max-width: 1120px; 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: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: transparent; border: 1px solid var(--border); flex-shrink: 0; border-radius: 0; }
.rg-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; text-transform: none; }
.rg-desc { font-size: 14px; color: var(--text-secondary); 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: 46px;
  padding: 8px 12px; font-family: var(--font-alt); font-size: 12px; font-weight: 700;
  color: #f7f2e9; background: #1a1612; border: none; border-radius: 2px;
  transition: transform 200ms;
}
.rg-logo-box:hover { transform: translateY(-1px); }
.rg-logo-box img { height: 18px; width: auto; max-width: 140px; object-fit: contain; }
.rg-logo-fallback { color: #f7f2e9; }

.footer { padding: 8px 20px 32px; background: var(--bg-dark); position: relative; z-index: 1; }
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  border-top: 1px solid rgba(247,242,233,0.12); padding: 56px 0 8px; color: rgba(247,242,233,0.62);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 32px; height: 32px; border-radius: 4px; }
.footer-logo-text { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: #f7f2e9; letter-spacing: -0.03em; text-transform: lowercase; }
.footer-desc { font-size: 14px; color: rgba(247,242,233,0.55); line-height: 1.65; max-width: 300px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  padding: 0; font-family: var(--font-alt); font-size: 11px; font-weight: 600;
  color: var(--accent-soft); background: transparent; border: none; border-radius: 0;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-col-title { font-family: var(--font-alt); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #f7f2e9; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(247,242,233,0.55); transition: color 180ms; }
.footer-col ul li a:hover { color: var(--accent-soft); }
.footer-social { display: flex; gap: 8px; }
.footer-social-link {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(247,242,233,0.16); background: transparent; color: #f7f2e9; font-weight: 600;
  border-radius: 0; transition: background 200ms, color 200ms;
}
.footer-social-link:hover { background: var(--accent-primary); color: #f7f2e9; transform: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid rgba(247,242,233,0.1); }
.footer-copy { font-size: 12px; color: rgba(247,242,233,0.38); font-family: var(--font-alt); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(247,242,233,0.38); font-family: var(--font-alt); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-legal a:hover { color: var(--accent-soft); }
.footer-disclaimer { margin-top: 18px; font-size: 12px; color: rgba(247,242,233,0.32); line-height: 1.7; max-width: 1100px; }
.footer-disclaimer a { color: var(--accent-soft); text-decoration: underline; }

.contact-section { padding: 40px 28px 80px; position: relative; z-index: 1; }
.contact-inner { max-width: 1120px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 0; order: 1; }
.contact-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0; box-shadow: none;
  transition: none;
}
.contact-card:hover { transform: none; }
.contact-card-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: transparent; border: 1px solid var(--border); flex-shrink: 0; border-radius: 0; }
.contact-card-title { font-family: var(--font-alt); font-size: 12px; font-weight: 600; color: var(--accent-primary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card-value { font-size: 15px; color: var(--text-secondary); }
.contact-card-value a { color: var(--accent-primary); }
.contact-form {
  display: flex; flex-direction: column; gap: 16px; padding: 0;
  background: transparent; border: none; order: 2;
  border-radius: 0; box-shadow: none;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { font-family: var(--font-alt); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-textarea {
  padding: 12px 0; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary); font-size: 15px;
  transition: border-color 220ms, box-shadow 220ms;
  border-radius: 0;
}
.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: none; }
.form-input.invalid, .form-textarea.invalid { border-color: #c45a4a; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { display: none; font-size: 12px; color: #c45a4a; }
.form-error.show { display: block; }
#contact-success { display: none; padding: 12px 0; background: transparent; border: none; color: var(--accent-deep); font-size: 13px; font-weight: 600; border-radius: 0; }
#contact-success.show { display: block; }

.page-header { padding: 64px 28px 8px; text-align: left; position: relative; z-index: 1; }
.page-header-inner { max-width: 800px; margin: 0; padding: 0 0 0 max(0px, calc((100% - 1120px) / 2)); }
.page-header .section-label { display: inline-flex; margin-bottom: 12px; }
.page-header .section-title { font-size: clamp(40px, 7vw, 68px); }
.page-header .section-sub { margin: 14px 0 0; }
.page-header .section-divider { margin-left: 0; margin-right: auto; transform-origin: left; }

.legal-section { padding: 24px 28px 80px; position: relative; z-index: 1; }
.legal-inner { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--text-primary); margin: 32px 0 12px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.legal-content h3 { font-family: var(--font-alt); font-size: 13px; font-weight: 600; color: var(--accent-primary); margin: 18px 0 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.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(--accent-primary); text-decoration: underline; }
.legal-content code { font-family: var(--font-mono); font-size: 12.5px; background: var(--surface-2); padding: 2px 6px; color: var(--accent-deep); border-radius: 0; }
.legal-content strong { color: var(--text-primary); }
.legal-alert { padding: 14px 0; background: transparent; border: none; border-top: 1px solid var(--border); margin: 16px 0; font-size: 14px; border-radius: 0; box-shadow: none; }
.legal-meta { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

.about-page-section { padding: 24px 28px 80px; position: relative; z-index: 1; }
.about-page-inner { max-width: 800px; margin: 0 auto; }
.about-page-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 8px; }
.about-page-card {
  padding: 26px 0; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0; box-shadow: none; transition: none;
}
.about-page-card:hover { transform: none; }
.about-page-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; 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(--accent-primary); }
.team-values { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; background: transparent; border: none; border-bottom: 1px solid var(--border); border-radius: 0; box-shadow: none; }
.value-icon { font-size: 18px; }
.value-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; 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: 1120px; margin: 0 auto; }
.play-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.game-frame-wrap { background: var(--bg-dark); border: 1px solid var(--border); overflow: hidden; order: 2; border-radius: 0; box-shadow: none; }
.game-frame-wrap iframe { display: block; width: 100%; height: 640px; border: none; }
.play-sidebar { display: flex; flex-direction: column; gap: 0; order: 1; }
.play-card { padding: 18px 0; background: transparent; border: none; border-bottom: 1px solid var(--border); border-radius: 0; box-shadow: none; }
.play-card-title { font-family: var(--font-alt); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-primary); 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: transparent; border: 1px solid var(--border); color: var(--text-secondary); font-family: var(--font-mono); font-size: 13px; font-weight: 600; transition: background 200ms, color 200ms; border-radius: 0; }
.bet-opt.active, .bet-opt:hover { background: var(--accent-primary); color: #f7f2e9; border-color: var(--accent-primary); }
.bet-opt:active { transform: scale(0.98); }
#spin-btn {
  display: flex; align-items: center; justify-content: center; width: 100%; gap: 10px; padding: 15px;
  font-family: var(--font-alt); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #f7f2e9; background: var(--accent-primary); border: none;
  cursor: pointer; position: relative; overflow: hidden; transition: transform 200ms, background 220ms;
  border-radius: var(--radius); box-shadow: none;
}
#spin-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 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 700ms ease forwards; }
#spin-btn:active { transform: scale(0.98); }
#spin-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
#spin-icon-el { font-size: 16px; transition: transform 600ms var(--ease-out); }
#win-msg { display: none; padding: 12px 0; background: transparent; border: none; font-size: 14px; font-weight: 600; color: var(--accent-deep); text-align: left; margin-top: 12px; border-radius: 0; }
#win-msg.show { display: block; }
.reel-track { display: flex; gap: 8px; justify-content: flex-start; padding: 8px 0; }
.reel { width: 48px; height: 58px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; border-radius: 0; }
.reel.win-reel { box-shadow: inset 0 0 0 1px var(--accent-primary); }
.play-page .section-title span { color: var(--accent-primary); }
.play-page .games-grid .game-name { color: var(--text-primary); }
.play-page .games-grid .game-genre { color: var(--text-muted); }

.age-gate {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(26, 22, 18, 0.78); backdrop-filter: blur(10px);
  align-items: stretch; justify-content: flex-end; padding: 0;
}
.age-gate.show { display: flex; }
.age-gate-box {
  max-width: 460px; width: 100%;
  background: var(--bg-soft);
  border: none;
  padding: 48px 40px; text-align: left;
  box-shadow: var(--shadow-strong);
  color: var(--text-primary); position: relative;
  border-radius: 0;
  display: flex; flex-direction: column; justify-content: center;
}
.age-gate-box::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent-primary); border-radius: 0; }
.age-gate-icon { font-size: 28px; margin-bottom: 18px; animation: none; }
.age-gate-title { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--text-primary); margin-bottom: 14px; text-transform: none; }
.age-gate-title em { font-style: italic; color: var(--accent-primary); }
.age-gate-sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.65; }
.age-gate-sub strong { color: var(--text-primary); }
.age-gate-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-start; }
.age-gate-actions .btn-ghost { color: var(--text-primary); border-color: var(--text-primary); }
.age-gate-legal { margin-top: 22px; font-size: 11px; color: var(--text-muted); line-height: 1.7; }
.age-gate-legal a { color: var(--accent-primary); text-decoration: underline; }

@media (max-width: 1024px) {
  .hero-inner { max-width: 640px; 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; max-width: 100%; }
}

@media (max-width: 959px) {
  .nav-inner { display: flex; }
  .nav-logo { grid-column: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .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: 36px 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; }
  .age-gate { justify-content: stretch; }
  .age-gate-box { max-width: none; }
}

@media (max-width: 480px) {
  .hero-brand, .hero-title.hero-brand { font-size: clamp(48px, 16vw, 64px); }
  .section-title { font-size: 30px; }
  .about-stats { grid-template-columns: 1fr; }
  .stat-box:nth-child(even) { padding-left: 0; border-left: none; }
  .contact-form { padding: 0; }
  .age-gate-box { padding: 36px 24px; }
  .preview-reel { height: 52px; font-size: 18px; }
  .game-thumb { height: 84px; width: 96px; }
  .feature-card { grid-template-columns: 48px 1fr; }
}

@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: 48px; height: 48px; }

.experience-dock {
  position: fixed; left: 0; right: auto; bottom: 28px; transform: none;
  z-index: 80; display: flex; align-items: center; gap: 10px;
  max-width: calc(100vw - 24px); padding: 10px 10px 10px 14px;
  background: var(--bg-dark); border: none; border-radius: 0;
  box-shadow: var(--shadow-strong); color: #f7f2e9; font-family: var(--font-alt);
  transition: transform 220ms var(--ease-out);
}
.experience-dock .dock-copy { font-size: 11px; font-weight: 600; white-space: nowrap; letter-spacing: 0.08em; text-transform: uppercase; }
.experience-dock .dock-meta { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-soft); white-space: nowrap; }
.experience-dock .dock-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: var(--accent-primary); color: #f7f2e9; font-size: 14px; font-weight: 700; flex-shrink: 0;
  border-radius: 0;
}
.experience-dock:hover { transform: translateX(4px); }
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; bottom: 12px; }
}
