/* =============================================================
   spinveroplay — Visual system inspired by The Venetian Resort
   Burgundy · Stone · Crema · Gold · Emerald
   Display: Cormorant Garamond (Romie analog)
   UI: Barlow (Brother 1816 analog)
   ============================================================= */

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

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --bg-dark:        #041107; /* Venetian Emerald */
  --bg-soft:        #FBF0DF; /* Venetian Stone */
  --surface:        #FFF8EE;
  --surface-2:      #F3E6D0;
  --surface-elev:   #E2C89F; /* Crema */
  --surface-glass:  rgba(251, 240, 223, 0.88);

  --border-soft:    rgba(69, 2, 6, 0.08);
  --border:         rgba(69, 2, 6, 0.14);
  --border-strong:  rgba(69, 2, 6, 0.28);

  --accent-primary: #450206; /* Burgundy */
  --accent-bright:  #A40404; /* Rosso */
  --accent-soft:    #E2C89F; /* Crema */
  --accent-deep:    #310709;
  --accent-glow:    rgba(178, 139, 51, 0.22);

  --cyan:           #B28B33; /* Gold */
  --cyan-bright:    #E2C89F;
  --cyan-deep:      #876C40;
  --cyan-glow:      rgba(178, 139, 51, 0.2);

  --text-primary:   #450206;
  --text-secondary: #5C3A32;
  --text-muted:     #8A6B5C;
  --text-on-dark:   #FBF0DF;

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

  --shadow-soft:    0 14px 36px -18px rgba(69, 2, 6, 0.22);
  --shadow-strong:  0 28px 56px -22px rgba(4, 17, 7, 0.35);
  --glow-soft:      0 0 0 1px rgba(178, 139, 51, 0.18);
  --glow-strong:    0 8px 24px -12px rgba(69, 2, 6, 0.28);
  --glow-cyan:      0 0 18px rgba(178, 139, 51, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-alt:     'Barlow', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

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

  --pattern-damask: none;
}

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

*::selection { background: rgba(69, 2, 6, 0.18); color: var(--text-primary); }

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

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

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(226, 200, 159, 0.45), transparent 55%),
    radial-gradient(circle at 88% 12%, rgba(178, 139, 51, 0.08), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

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

/* ── AURORA BACKDROP ────────────────────────────────────────── */
.aurora { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; opacity: 0.35; }
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: auroraFloat 28s ease-in-out infinite;
  will-change: transform;
}
.aurora-blob-1 {
  width: 520px; height: 520px;
  top: -140px; left: -80px;
  background: radial-gradient(circle, rgba(226, 200, 159, 0.7) 0%, transparent 68%);
}
.aurora-blob-2 {
  width: 420px; height: 420px;
  top: 38%; right: -140px;
  background: radial-gradient(circle, rgba(69, 2, 6, 0.18) 0%, transparent 68%);
  animation-delay: -8s;
}
.aurora-blob-3 {
  width: 560px; height: 560px;
  bottom: -200px; left: 30%;
  background: radial-gradient(circle, rgba(178, 139, 51, 0.16) 0%, transparent 68%);
  animation-delay: -15s;
}

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

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

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

@keyframes vzpTimerPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(226, 200, 159, 0.35); }
  50%      { text-shadow: 0 0 22px rgba(226, 200, 159, 0.7); }
}

/* ── HEADER BACKGROUND VIDEO ────────────────────────────────── */
.header-media {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: min(920px, 100vh);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
body.has-hero .header-media { height: 100vh; min-height: 720px; }
.header-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.88) contrast(1.08) brightness(0.44);
  transform: scale(1.08);
  will-change: transform;
}
.header-media-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,17,7,0.45) 0%, rgba(69,2,6,0.28) 38%, rgba(251,240,223,0.55) 78%, var(--bg-soft) 100%),
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(178, 139, 51, 0.08), rgba(4,17,7,0.35));
}
@media (prefers-reduced-motion: reduce) {
  .header-video { display: none; }
  .header-media-scrim {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(69, 2, 6, 0.18), var(--bg-soft) 70%);
  }
}
@media (max-width: 768px) {
  .header-media, body.has-hero .header-media { height: 780px; min-height: 0; }
}

/* ── TRUST RIBBON ───────────────────────────────────────────── */
.trust-ribbon {
  position: relative;
  z-index: 2;
  background: var(--accent-primary);
  border-bottom: 1px solid rgba(226, 200, 159, 0.18);
}
.trust-ribbon::after { display: none; }
.trust-ribbon-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 9px 28px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600;
  font-family: var(--font-alt);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-soft);
}
.trust-item svg { flex-shrink: 0; color: var(--cyan); }
.trust-sep { color: rgba(226, 200, 159, 0.35); font-size: 12px; }

/* ── NAVIGATION — hotel bar ─────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface-glass);
  border-bottom: 1px solid var(--border-soft);
  padding: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.55;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.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 280ms var(--ease-out);
}
.nav-logo:hover img { transform: rotate(-6deg); }
.nav-logo-text {
  display: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--accent-primary);
}
.nav-logo-text em {
  font-style: italic;
  color: var(--cyan);
}
.nav-pill {
  display: none;
  padding: 5px 12px;
  font-family: var(--font-alt);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-primary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  white-space: nowrap;
}
.nav-cta-wrap { display: none; flex-shrink: 0; }
.nav-links {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0; right: 0;
  flex-direction: column;
  gap: 0;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-top: none;
  border-radius: 0;
  padding: 8px 12px 16px;
  box-shadow: var(--shadow-soft);
}
.nav-links.open { display: flex; }
.nav-links a {
  font-family: var(--font-alt);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 0;
  width: 100%;
  transition: color 250ms var(--ease-out), background 250ms var(--ease-out);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cyan);
  background: transparent;
}
.nav-links a.active {
  color: var(--accent-primary);
  box-shadow: inset 0 -2px 0 var(--cyan);
}

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

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-logo-text { display: inline; }
  .nav-pill { display: inline-flex; }
  .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;
    flex: 1;
    justify-content: center;
  }
  .nav-links a {
    width: auto;
    padding: 10px 14px;
  }
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-alt);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg-soft);
  background: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 220ms var(--ease-out), background 260ms var(--ease-out), color 220ms;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.16) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
.btn-primary:hover::before { animation: vzpShimmer 850ms ease forwards; }
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-deep);
  filter: none;
  box-shadow: var(--shadow-soft);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; filter: none; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-alt);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: transparent;
  border: 1px solid var(--accent-primary);
  border-radius: 0;
  transition: background 250ms var(--ease-out), color 250ms, transform 220ms var(--ease-out);
}
.btn-ghost:hover {
  background: var(--accent-primary);
  color: var(--bg-soft);
  transform: translateY(-1px);
}
.btn-ghost:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 9px 16px; font-size: 11px; }

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

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

.hero-eyebrow { display: none; }

.hero-brand,
.hero-title.hero-brand {
  width: 100%;
  max-width: 1400px;
  margin: 2vh 0 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 13vw, 148px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: none;
  text-align: center;
  color: var(--bg-soft);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--bg-soft);
  text-shadow: 0 8px 40px rgba(4, 17, 7, 0.35);
  pointer-events: none;
}
.hero-brand span,
.hero-title.hero-brand span {
  display: block;
  color: inherit;
  font-style: italic;
}
.hero-title em { display: none; }

.hero-place {
  margin: 12px 0 0;
  font-family: var(--font-alt);
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: center;
}

.hero-italic {
  margin: 16px 20px 28px;
  max-width: 680px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
  color: var(--accent-soft);
  text-align: center;
  -webkit-text-fill-color: var(--accent-soft);
}

.hero-sub {
  font-size: 17px; line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
  font-weight: 400;
  text-align: center;
}
.hero-sub strong {
  color: var(--accent-primary);
  font-weight: 600;
}

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

.hero .cta-microcopy {
  display: block;
  color: var(--text-muted);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  font-size: 11px; font-weight: 700;
  font-family: var(--font-alt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(251, 240, 223, 0.72);
  border: 1px solid var(--border);
  border-radius: 0;
  backdrop-filter: blur(10px);
}
.hero-trust-item svg { color: var(--cyan); flex-shrink: 0; }

.hero-preview {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 28px;
  border-radius: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  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: 3px;
  background: var(--cyan);
}
.hero-preview::after { display: none; }

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

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

.preview-balance-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.preview-bal-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}
.preview-bal-value {
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.01em;
}

.security-badge {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 0;
  margin-top: 16px;
  position: relative; z-index: 1;
}
.security-badge svg { color: var(--cyan); flex-shrink: 0; margin-top: 1px; }
.security-badge-text { font-size: 11.5px; color: var(--text-muted); line-height: 1.52; }
.security-badge-text strong {
  display: block;
  color: var(--accent-primary);
  font-size: 12px; letter-spacing: 0.08em;
  font-family: var(--font-alt);
  text-transform: uppercase;
}

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

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--accent-primary);
}
.section-title span {
  color: var(--accent-primary);
  font-style: italic;
  background: none;
  -webkit-background-clip: unset; background-clip: unset;
}

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

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

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

.reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-left { transform: translate3d(-36px, 20px, 0); }
.reveal-right { transform: translate3d(36px, 20px, 0); }
.reveal-scale { transform: translate3d(0, 24px, 0); }
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { transform: translate3d(0, 0, 0); }

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

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

.nav.is-scrolled {
  box-shadow: 0 10px 28px -18px rgba(69, 2, 6, 0.25);
}
.nav.is-scrolled .nav-inner {
  box-shadow: none;
  transform: none;
}
.nav-inner { transition: box-shadow 280ms var(--ease-out), transform 280ms var(--ease-out); }

/* ── GAMES SECTION ──────────────────────────────────────────── */
.games-section {
  padding: 96px 28px;
  position: relative; z-index: 1;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  border-top: none;
  border-bottom: none;
}
.games-section .section-label { color: var(--accent-soft); font-size: 11px; line-height: 1.2; }
.games-section .section-title,
.games-section .section-title span {
  color: var(--bg-soft);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
}
.games-section .section-title span { font-style: italic; color: var(--accent-soft); }
.section-kicker {
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: 0;
}
.games-section .section-sub { color: rgba(251, 240, 223, 0.78); }
.games-section .btn-ghost {
  color: var(--bg-soft);
  background: transparent;
  border-color: var(--accent-soft);
}
.games-section .btn-ghost:hover {
  background: var(--bg-soft);
  color: var(--accent-primary);
}
.games-section-inner { max-width: 1180px; margin: 0 auto; }
.games-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

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

.game-thumb {
  position: relative; height: 300px;
  background: var(--game-gradient, linear-gradient(135deg, #450206, #041107));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: 0;
  border: none;
}
.game-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,17,7,0.08) 20%, rgba(4,17,7,0.78) 100%);
}
.game-thumb-icon {
  font-size: 52px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}
.game-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 4px 10px;
  font-family: var(--font-alt);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg-soft);
  border-radius: 0;
}
.game-tag.hot { background: var(--accent-bright); color: var(--bg-soft); }
.game-tag.new { background: var(--cyan); color: var(--bg-dark); }
.game-tag.vip { background: var(--accent-soft); color: var(--accent-primary); }

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

.game-meta {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 3;
  padding: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.game-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.01em;
  line-height: 1.08;
}
.game-genre { font-size: 12px; color: var(--accent-soft); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-alt); }
.game-stat-row { display: none; }

/* ── BONUS STRIP ────────────────────────────────────────────── */
.bonus-strip {
  padding: 96px 28px;
  background: var(--bg-dark);
  position: relative; z-index: 1; overflow: hidden;
  color: #fff;
  border-top: none;
}
.bonus-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(178, 139, 51, 0.14), transparent 70%);
  pointer-events: none;
}
.bonus-strip::after { display: none; }
.bonus-strip .section-label { color: var(--cyan); }
.bonus-strip .section-title,
.bonus-strip .section-title span { color: var(--bg-soft); }
.bonus-strip .section-title span { color: var(--accent-soft); font-style: italic; }
.bonus-strip .section-sub { color: rgba(251, 240, 223, 0.78); }
.bonus-strip .btn-ghost {
  color: var(--bg-soft);
  background: transparent;
  border-color: var(--accent-soft);
}
.bonus-strip .btn-ghost:hover { background: var(--bg-soft); color: var(--bg-dark); }
.bonus-strip-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }

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

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

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

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

.bonus-tiers { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }
.bonus-tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: rgba(251, 240, 223, 0.04);
  border: 1px solid rgba(226, 200, 159, 0.22);
  border-radius: 0;
  transition: transform 260ms var(--ease-out), border-color 260ms;
}
.bonus-tier:hover {
  border-color: var(--cyan);
  transform: translateX(3px);
}
.bonus-tier-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--bg-soft); letter-spacing: 0;
}
.bonus-tier-sub { font-size: 12px; color: var(--accent-soft); margin-top: 3px; }
.bonus-tier-amount {
  font-family: var(--font-mono);
  font-size: 18px; font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
}

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

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

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

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

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  padding: 96px 28px;
  background: var(--accent-primary);
  text-align: center;
  position: relative; z-index: 1; overflow: hidden;
  border-top: none;
  border-bottom: none;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(178, 139, 51, 0.16), transparent 70%);
  pointer-events: none;
}
.cta-banner .section-label { color: var(--accent-soft); }
.cta-banner .section-title { color: var(--bg-soft); }
.cta-banner .section-title span { color: var(--accent-soft); font-style: italic; }
.cta-banner .section-sub { color: rgba(251, 240, 223, 0.82); }
.cta-banner .cta-microcopy { color: rgba(251, 240, 223, 0.62); }
.cta-banner .btn-ghost {
  color: var(--bg-soft);
  background: transparent;
  border-color: var(--accent-soft);
}
.cta-banner .btn-ghost:hover { background: var(--bg-soft); color: var(--accent-primary); }
.cta-banner .btn-primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--bg-dark);
}
.cta-banner .btn-primary:hover { background: var(--accent-soft); }
.cta-banner-inner { max-width: 740px; margin: 0 auto; position: relative; }
.cta-banner .section-title { margin-bottom: 0; }
.cta-banner .section-sub { margin: 14px auto 36px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

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

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 28px 20px 28px;
  background: var(--bg-soft);
  position: relative; z-index: 1;
  border-top: none;
}
.footer::before { display: none; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  background: var(--accent-primary);
  border: none;
  border-radius: 0;
  padding: 48px 40px 28px;
  color: rgba(251, 240, 223, 0.78);
  box-shadow: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 11px; }
.footer-logo img { width: 36px; height: 36px; filter: none; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--bg-soft);
  letter-spacing: 0.02em;
}
.footer-desc { font-size: 14px; color: rgba(251, 240, 223, 0.7); line-height: 1.7; max-width: 320px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-badge {
  padding: 5px 10px;
  font-family: var(--font-alt);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-soft);
  background: transparent;
  border: 1px solid rgba(226, 200, 159, 0.28);
  border-radius: 0;
}
.footer-col-title {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(251, 240, 223, 0.7);
  transition: color 200ms;
}
.footer-col ul li a:hover { color: var(--accent-soft); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(226, 200, 159, 0.28);
  color: var(--accent-soft);
  font-family: var(--font-alt);
  font-weight: 700;
  transition: background 240ms, transform 240ms;
}
.footer-social-link:hover {
  background: rgba(226, 200, 159, 0.12);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 200, 159, 0.16);
}
.footer-copy {
  font-size: 12px; color: rgba(251, 240, 223, 0.5);
  font-family: var(--font-alt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 12px; color: rgba(251, 240, 223, 0.5);
  transition: color 200ms;
  font-family: var(--font-alt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-legal a:hover { color: var(--accent-soft); }
.footer-disclaimer {
  margin-top: 20px;
  font-size: 12px; color: rgba(251, 240, 223, 0.48); line-height: 1.78;
  font-family: var(--font-alt);
  max-width: 1100px;
  opacity: 1;
}
.footer-disclaimer a {
  color: var(--accent-soft);
  text-decoration: underline; text-underline-offset: 2px;
}

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

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 0;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-form::before { display: none; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-input, .form-textarea {
  padding: 13px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 240ms, box-shadow 240ms;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(69, 2, 6, 0.1);
}
.form-input.invalid, .form-textarea.invalid { border-color: #EE2227; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-error {
  display: none;
  font-size: 11.5px; color: #A40404;
  font-family: var(--font-alt);
}
.form-error.show { display: block; }
#contact-success {
  display: none;
  padding: 14px 16px;
  background: rgba(37, 84, 58, 0.1);
  border: 1px solid var(--cyan);
  border-radius: 0;
  color: var(--accent-primary);
  font-size: 13px;
  font-family: var(--font-alt); font-weight: 600;
}
#contact-success.show { display: block; }

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

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

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

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

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

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

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

.bet-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bet-opt {
  padding: 11px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  transition: background 220ms, border-color 220ms, color 220ms, transform 200ms;
}
.bet-opt.active, .bet-opt:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-soft);
}
.bet-opt:active { transform: scale(0.97); }

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

#win-msg {
  display: none; padding: 14px 18px;
  background: rgba(178, 139, 51, 0.12);
  border: 1px solid var(--cyan);
  border-radius: 0;
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 700;
  color: var(--accent-primary);
  text-align: center;
  margin-top: 14px;
}
#win-msg.show { display: block; }

.reel-track {
  display: flex; gap: 12px; justify-content: center;
  padding: 12px 0;
}
.reel {
  width: 56px; height: 68px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: border-color 300ms, box-shadow 300ms;
}
.reel.win-reel {
  border-color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan);
}

.play-page .section-title span { color: var(--accent-primary); }
.play-page .games-grid .game-name { color: #fff; }
.play-page .games-grid .game-genre { color: var(--accent-soft); }
.play-page .games-grid .game-stat-row { display: none; }

/* ── AGE GATE ───────────────────────────────────────────────── */
.age-gate {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(4, 17, 7, 0.78);
  backdrop-filter: blur(18px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.show { display: flex; }
.age-gate-box {
  max-width: 500px; width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--shadow-strong);
  position: relative; overflow: hidden;
  color: var(--text-primary);
}
.age-gate-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--cyan);
}
.age-gate-box::after { display: none; }
.age-gate-icon {
  font-size: 48px;
  margin-bottom: 22px;
  animation: vzpFloat 3.2s ease-in-out infinite;
}
.age-gate-title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 14px;
  letter-spacing: 0;
}
.age-gate-title em {
  font-style: italic;
  color: var(--cyan);
  background: none;
  -webkit-background-clip: unset;
}
.age-gate-sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.70; }
.age-gate-sub strong { color: var(--accent-primary); }
.age-gate-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.age-gate-actions .btn-ghost {
  color: var(--accent-primary);
  background: transparent;
  border-color: var(--accent-primary);
}
.age-gate-legal {
  margin-top: 22px;
  font-size: 11px; color: var(--text-muted);
  line-height: 1.72;
  position: relative; z-index: 1;
}
.age-gate-legal a { color: var(--accent-primary); text-decoration: underline; }

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

@media (max-width: 768px) {
  .nav { top: 0; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 0;
    padding: 8px 14px 16px;
    box-shadow: var(--shadow-strong);
  }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 12px 14px; width: 100%; }

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

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

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

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

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

/* ── FLOATING MARK + STICKY EXPERIENCE DOCK ─────────────────── */
.float-mark {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  height: 0;
  pointer-events: none;
}
.float-mark img {
  width: 86px;
  height: 86px;
  transform: translateY(-43px);
  filter: drop-shadow(0 14px 28px rgba(69, 2, 6, 0.28));
}

.experience-dock {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100vw - 24px);
  padding: 10px 10px 10px 22px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-strong);
  color: var(--text-primary);
  font-family: var(--font-alt);
  transition: transform 250ms var(--ease-out);
}
.experience-dock .dock-copy {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  font-family: var(--font-display);
}
.experience-dock .dock-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  white-space: nowrap;
}
.experience-dock .dock-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: var(--accent-primary);
  color: var(--bg-soft);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.experience-dock:hover { transform: translateX(-50%) translateY(-2px); }
body:has(#age-gate.show) .experience-dock {
  opacity: 0;
  pointer-events: none;
}

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