/* ============================================================
   vichrich – Premium VIP Stylesheet
   Identity: Obsidian Night · Royal Violet · Iridescent Glow
   Typography: Sora (display) + Inter (body) + Space Grotesk (accent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Surfaces */
  --bg-dark:        #0B0F14;
  --bg-soft:        #111827;
  --bg:             #0B0F14;
  --bg-2:           #0E1320;
  --surface:        #111827;
  --surface-2:      #151D2E;
  --surface-3:      #1C2538;

  /* Borders */
  --border:         rgba(167, 139, 250, .10);
  --border-2:       rgba(255, 255, 255, .06);
  --border-accent:  rgba(167, 139, 250, .35);

  /* Brand - Royal Violet */
  --accent-primary: #6D28FF;
  --accent:         #8B5CF6;
  --accent-bright:  #A78BFA;
  --accent-light:   #C4B5FD;
  --accent-pale:    #EDE9FE;
  --accent-deep:    #5B21B6;
  --accent-dim:     rgba(139, 92, 246, .14);
  --accent-glow:    rgba(109, 40, 255, .35);

  /* Iridescent secondary */
  --aqua:           #22D3EE;
  --aqua-glow:      rgba(34, 211, 238, .26);
  --pink:           #F472B6;
  --pink-glow:      rgba(244, 114, 182, .22);

  /* Status */
  --error:          #FB7185;
  --success:        #34D399;

  /* Text */
  --text:           #F4F4F8;
  --text-2:         rgba(244, 244, 248, .68);
  --text-3:         rgba(244, 244, 248, .48);
  --muted:          rgba(196, 181, 253, .55);

  /* Typography */
  --font-display:   'Sora', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-accent:    'Space Grotesk', system-ui, sans-serif;

  /* Layout */
  --page-x:         clamp(1.25rem, 6vw, 5rem);
  --section-y:      clamp(4.5rem, 10vw, 8rem);
  --radius:         14px;
  --radius-lg:      20px;
  --radius-md:      12px;
  --radius-sm:      8px;
  --radius-pill:    99px;

  /* Motion */
  --ease:           cubic-bezier(.22, .61, .36, 1);
  --ease-out:       cubic-bezier(.16, 1, .3, 1);
  --ease-spring:    cubic-bezier(.34, 1.56, .64, 1);

  /* Glass */
  --glass-bg:       rgba(11, 15, 20, .72);
  --glass-bg-strong:rgba(11, 15, 20, .92);
  --glass-border:   rgba(167, 139, 250, .12);
  --glass-blur:     blur(28px) saturate(160%);

  /* Shadows */
  --shadow-soft:    0 10px 30px rgba(0, 0, 0, .4);
  --shadow-deep:    0 28px 78px rgba(0, 0, 0, .55);
  --glow-soft:      0 0 20px rgba(109, 40, 255, .25);
  --glow-medium:    0 0 36px rgba(109, 40, 255, .35);
  --glow-strong:    0 0 64px rgba(109, 40, 255, .45);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(ellipse 60% 40% at 12% -4%, rgba(109, 40, 255, .12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 35% at 92% 4%, rgba(34, 211, 238, .06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 36% at 50% 110%, rgba(139, 92, 246, .06) 0%, transparent 56%),
    linear-gradient(170deg, #0B0F14 0%, #0E1320 50%, #0B0F14 100%),
    var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
ul, ol { list-style: none; }

/* Subtle film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.024'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
  opacity: .6;
}

/* ============================================================
   AURORA – Soft animated gradient blobs
   ============================================================ */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: .35;
  animation: aurora-drift 60s ease-in-out infinite alternate;
}
.aurora-blob-1 {
  width: 720px; height: 540px;
  top: -260px; left: -180px;
  background: radial-gradient(ellipse, rgba(109, 40, 255, .55) 0%, transparent 65%);
}
.aurora-blob-2 {
  width: 640px; height: 480px;
  top: -120px; right: -200px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, .25) 0%, transparent 60%);
  animation-delay: -22s;
  animation-duration: 70s;
}
.aurora-blob-3 {
  width: 560px; height: 420px;
  bottom: 6%; left: 28%;
  background: radial-gradient(ellipse, rgba(167, 139, 250, .26) 0%, transparent 65%);
  animation-delay: -36s;
  animation-duration: 80s;
}
@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1) rotate(0deg); }
  to   { transform: translate(6%, 8%) scale(1.16) rotate(7deg); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--page-x);
  height: 78px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow:
    0 14px 50px rgba(0, 0, 0, .55),
    0 0 60px rgba(109, 40, 255, .04),
    0 1px 0 rgba(167, 139, 250, .06) inset;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(148deg, #0F1320 0%, #1C2538 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(167, 139, 250, .22);
  box-shadow:
    0 0 22px rgba(109, 40, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  flex-shrink: 0;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease-spring);
}
.nav-logo-icon img {
  width: 30px; height: 30px;
  display: block;
  filter:
    drop-shadow(0 0 10px rgba(109, 40, 255, .4))
    drop-shadow(0 0 22px rgba(167, 139, 250, .14));
  transition: transform .35s var(--ease-spring);
}
.nav-logo:hover .nav-logo-icon {
  box-shadow:
    0 0 38px rgba(109, 40, 255, .42),
    0 0 70px rgba(167, 139, 250, .12);
  transform: scale(1.05);
}
.nav-logo:hover .nav-logo-icon img {
  transform: rotate(-12deg) scale(1.08);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1;
}
.nav-logo-text em {
  font-style: normal;
  background: linear-gradient(135deg, #F4F4F8, var(--accent-bright), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: .04em;
  transition: color .25s var(--ease);
  position: relative;
  padding-bottom: 4px;
  font-family: var(--font-body);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-bright));
  transition: width .3s var(--ease-out);
  box-shadow: 0 0 14px rgba(109, 40, 255, .4);
  border-radius: 1px;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active {
  color: var(--accent-bright);
}
.nav-links a.active::after { width: 100%; }

.nav-pill {
  font-size: .60rem;
  font-weight: 700;
  color: var(--accent-light);
  background: linear-gradient(135deg, rgba(109, 40, 255, .14), rgba(34, 211, 238, .06));
  border: 1px solid rgba(167, 139, 250, .22);
  padding: .42rem 1rem;
  border-radius: var(--radius-pill);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-accent);
  box-shadow: 0 0 16px rgba(109, 40, 255, .08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}
.section { position: relative; z-index: 1; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .70rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: var(--font-accent);
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px rgba(167, 139, 250, .6);
  animation: dot-pulse 3.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(167, 139, 250, .6); }
  50%       { opacity: .35; box-shadow: 0 0 4px rgba(167, 139, 250, .2); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--text);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #F4F4F8 0%, var(--accent-bright) 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-body {
  font-size: clamp(.96rem, 1.3vw, 1.07rem);
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.78;
}

.divider {
  width: 70px; height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-bright), transparent);
  margin: 1.4rem 0;
  box-shadow: 0 0 14px rgba(109, 40, 255, .35);
  border-radius: 1px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  transition: all .22s var(--ease);
  cursor: pointer;
  border: none;
  will-change: transform;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28FF 50%, #5B21B6 100%);
  color: #FFFFFF;
  border: 1px solid rgba(167, 139, 250, .42);
  box-shadow:
    0 8px 28px rgba(109, 40, 255, .38),
    0 0 0 0 rgba(109, 40, 255, .35),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  font-weight: 600;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .28) 50%, transparent 100%);
  transform: translateX(-130%);
  opacity: 0;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 42px rgba(109, 40, 255, .55),
    0 0 0 6px rgba(109, 40, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-primary:hover::after {
  opacity: 1;
  animation: btn-shimmer 1s var(--ease) both;
}
@keyframes btn-shimmer {
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.btn-ghost {
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  border: 1px solid rgba(167, 139, 250, .16);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: translateY(-2px);
  background: rgba(167, 139, 250, .06);
  box-shadow: 0 8px 24px rgba(109, 40, 255, .14);
}

.btn-gold {
  background: linear-gradient(135deg, #C4B5FD 0%, #8B5CF6 50%, #6D28FF 100%);
  color: #FFFFFF;
  font-weight: 700;
  border: 1px solid rgba(167, 139, 250, .42);
  box-shadow:
    0 10px 32px rgba(109, 40, 255, .38),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 46px rgba(109, 40, 255, .55),
    0 0 0 6px rgba(109, 40, 255, .14);
}

.btn-primary-pulse {
  animation: btn-pulse-glow 3.6s ease-in-out infinite;
}
@keyframes btn-pulse-glow {
  0%, 100% {
    box-shadow:
      0 8px 28px rgba(109, 40, 255, .38),
      0 0 0 0 rgba(109, 40, 255, .35),
      inset 0 1px 0 rgba(255, 255, 255, .12);
  }
  50% {
    box-shadow:
      0 14px 42px rgba(109, 40, 255, .55),
      0 0 0 8px rgba(109, 40, 255, .15),
      inset 0 1px 0 rgba(255, 255, 255, .2);
  }
}

.btn:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}
.btn:active { transform: translateY(0) scale(.97); }
.btn:disabled { opacity: .35; cursor: not-allowed; transform: none !important; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: linear-gradient(168deg, rgba(167, 139, 250, .04) 0%, var(--surface) 50%, rgba(11, 15, 20, .96) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(14px);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  border-color: rgba(167, 139, 250, .25);
  transform: translateY(-4px);
  box-shadow:
    0 32px 88px rgba(0, 0, 0, .65),
    0 0 56px rgba(109, 40, 255, .06);
}
.card-accent-top {
  position: relative;
  overflow: hidden;
}
.card-accent-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-bright), var(--aqua));
  box-shadow: 0 0 16px rgba(109, 40, 255, .42);
}

.icon-box {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(109, 40, 255, .14), rgba(34, 211, 238, .04));
  border: 1px solid rgba(167, 139, 250, .18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(109, 40, 255, .12);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover .icon-box {
  box-shadow: 0 8px 28px rgba(109, 40, 255, .26);
  transform: scale(1.06);
}
.icon-box-gold {
  background: linear-gradient(135deg, rgba(167, 139, 250, .12), rgba(34, 211, 238, .05));
  border-color: rgba(167, 139, 250, .22);
}
.icon-box img { width: 38px; height: 38px; object-fit: contain; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .40s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 10vw, 8rem) var(--page-x) clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-accent);
  font-size: .70rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .20em;
  text-transform: uppercase;
  border: 1px solid rgba(167, 139, 250, .20);
  padding: .55rem 1.4rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  background: rgba(11, 15, 20, .58);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 24px rgba(109, 40, 255, .10);
}
.hero-eyebrow span { color: var(--accent-bright); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.4vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 1.6rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #F4F4F8 0%, var(--accent-bright) 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .hero-gold {
  background: linear-gradient(135deg, #EDE9FE 0%, #A78BFA 40%, #6D28FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(109, 40, 255, .35));
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  color: var(--text-2);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .02em;
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--accent-bright); }

/* HERO PREVIEW (mini slot) */
.hero-preview {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 var(--page-x) clamp(3rem, 6vw, 5rem);
}
.hero-preview-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(167, 139, 250, .18);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(167, 139, 250, .04),
    0 0 80px rgba(109, 40, 255, .10);
  position: relative;
  overflow: hidden;
}
.hero-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-bright), var(--aqua));
  box-shadow: 0 0 18px rgba(109, 40, 255, .42);
}
.preview-label {
  font-family: var(--font-accent);
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-align: center;
}
.preview-reels {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.4rem;
}
.preview-reel {
  width: 70px; height: 70px;
  background: linear-gradient(162deg, rgba(167, 139, 250, .04) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  box-shadow: inset 0 2px 14px rgba(0, 0, 0, .55);
}
.preview-reel.lit {
  border-color: var(--accent-bright);
  transform: scale(1.07);
  box-shadow:
    0 0 28px rgba(109, 40, 255, .42),
    inset 0 0 14px rgba(167, 139, 250, .14);
}
.preview-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(11, 15, 20, .8);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(167, 139, 250, .10);
}
.preview-balance-label {
  font-family: var(--font-accent);
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.preview-balance-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #F4F4F8, var(--accent-bright), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(109, 40, 255, .25));
}
.preview-spin-btn { width: 100%; margin-top: 1rem; }

/* ============================================================
   FEATURED GAMES GRID (DYNAMIC)
   ============================================================ */
.games-section {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(109, 40, 255, .05) 0%, transparent 60%);
}
.games-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto 2.4rem;
}
.game-tile {
  position: relative;
  background: linear-gradient(168deg, rgba(167, 139, 250, .06) 0%, var(--surface) 50%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.4rem;
  transition:
    transform .3s var(--ease),
    border-color .3s var(--ease),
    box-shadow .3s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.game-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-bright));
  opacity: .8;
  transition: opacity .3s var(--ease);
}
.game-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109, 40, 255, .12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.game-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, .35);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, .55),
    0 0 48px rgba(109, 40, 255, .14);
}
.game-tile:hover::after { opacity: 1; }
.game-tile-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.2rem;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(109, 40, 255, .14) 0%, transparent 70%),
    linear-gradient(160deg, #1C2538 0%, #0E1320 100%);
  border: 1px solid rgba(167, 139, 250, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .35);
}
.game-tile-thumb img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(109, 40, 255, .35));
  transition: transform .35s var(--ease-spring);
}
.game-tile:hover .game-tile-thumb img { transform: scale(1.08); }
.game-tile-badge {
  position: absolute;
  top: .8rem; right: .8rem;
  background: rgba(11, 15, 20, .7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(167, 139, 250, .26);
  font-family: var(--font-accent);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .68rem;
  border-radius: var(--radius-pill);
  color: var(--accent-light);
  z-index: 2;
}
.game-tile-badge.hot {
  background: linear-gradient(135deg, rgba(109, 40, 255, .85), rgba(91, 33, 182, .85));
  color: #FFFFFF;
  border-color: rgba(167, 139, 250, .5);
  box-shadow: 0 0 18px rgba(109, 40, 255, .45);
}
.game-tile-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: .32rem;
}
.game-tile-meta {
  font-family: var(--font-accent);
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.game-tile-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.game-tile-cta .play-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .72rem 1rem;
  background: linear-gradient(135deg, rgba(109, 40, 255, .14), rgba(34, 211, 238, .04));
  border: 1px solid rgba(167, 139, 250, .25);
  border-radius: var(--radius);
  color: var(--accent-light);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  transition: all .22s var(--ease);
}
.game-tile-cta .play-btn:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-deep));
  color: #FFFFFF;
  border-color: var(--accent-bright);
  box-shadow: 0 6px 22px rgba(109, 40, 255, .42);
}
.game-tile-rating {
  display: flex;
  align-items: center;
  gap: .26rem;
  color: var(--accent-light);
  font-size: .76rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.games-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ============================================================
   BONUS STRIP
   ============================================================ */
.bonus-strip {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(109, 40, 255, .06) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bonus-inner { max-width: 1200px; margin: 0 auto; }
.bonus-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.4rem;
}
.bonus-urgency {
  font-family: var(--font-accent);
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: .4rem 0 .9rem;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 920px;
  margin: 0 auto 2.4rem;
}
.bonus-card {
  padding: 1.8rem 1.6rem;
  text-align: center;
}
.bonus-tier {
  font-family: var(--font-accent);
  font-size: .70rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F4F4F8, var(--accent-bright), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .6rem;
  filter: drop-shadow(0 0 18px rgba(109, 40, 255, .26));
}
.bonus-desc {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.55;
}
.bonus-timer-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.bonus-timer-pill {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: rgba(11, 15, 20, .72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(167, 139, 250, .26);
  border-radius: var(--radius-pill);
  padding: .8rem 1.4rem;
  box-shadow: 0 0 24px rgba(109, 40, 255, .12);
}
.bonus-timer-label {
  font-family: var(--font-accent);
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.bonus-timer-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, .35));
}
.bonus-timer-value.low-time {
  color: #FCA5A5;
  filter: drop-shadow(0 0 12px rgba(252, 165, 165, .45));
  animation: low-time-flash 1.4s ease-in-out infinite;
}
@keyframes low-time-flash {
  0%, 100% { opacity: 1; }
  50%       { opacity: .68; }
}
.bonus-actions {
  display: flex;
  justify-content: center;
}
.bonus-redeem-spinning { opacity: .7; }
.bonus-toast {
  margin: 1.4rem auto 0;
  max-width: 520px;
  padding: 1rem 1.4rem;
  background: rgba(11, 15, 20, .82);
  border: 1px solid rgba(167, 139, 250, .25);
  border-radius: var(--radius);
  color: var(--text-2);
  font-size: .88rem;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.bonus-toast.show { opacity: 1; transform: none; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip { padding: var(--section-y) var(--page-x); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-body p {
  color: var(--text-2);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.74;
}
.about-body p:last-child { margin-bottom: 0; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-box {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, .25), transparent);
}
.stat-box:hover {
  border-color: rgba(167, 139, 250, .25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4), 0 0 36px rgba(109, 40, 255, .08);
  transform: translateY(-4px);
}
.stat-box-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F4F4F8, var(--accent-bright), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .4rem;
  letter-spacing: -.02em;
  filter: drop-shadow(0 0 18px rgba(109, 40, 255, .18));
}
.stat-box-label {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(ellipse 85% 65% at 50% 100%, rgba(34, 211, 238, .03) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card { padding: 2.2rem 1.8rem; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.1rem 0 .55rem;
  letter-spacing: -.01em;
}
.feature-card p {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: var(--section-y) var(--page-x); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 18px);
  right: calc(16.67% + 18px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-primary), rgba(167, 139, 250, .3), var(--accent-bright));
  box-shadow: 0 0 12px rgba(109, 40, 255, .25);
}
.how-step { text-align: center; }
.how-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-bright);
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 28px rgba(109, 40, 255, .25),
    inset 0 0 12px rgba(167, 139, 250, .08);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.how-step:hover .how-step-num {
  box-shadow:
    0 0 42px rgba(109, 40, 255, .42),
    inset 0 0 16px rgba(167, 139, 250, .14);
  transform: scale(1.06);
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: .55rem;
  letter-spacing: -.01em;
}
.how-step p {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band {
  padding: clamp(2.2rem, 5vw, 3.6rem) var(--page-x);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-2), rgba(11, 15, 20, .9));
}
.trust-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.trust-tile {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.trust-tile:hover {
  border-color: rgba(167, 139, 250, .26);
  background: rgba(167, 139, 250, .03);
}
.trust-tile-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(109, 40, 255, .18), rgba(34, 211, 238, .04));
  border: 1px solid rgba(167, 139, 250, .22);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright);
}
.trust-tile-icon svg { width: 18px; height: 18px; }
.trust-tile-title {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .15rem;
}
.trust-tile-sub {
  font-family: var(--font-body);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.3;
}

/* ============================================================
   SUPPORT
   ============================================================ */
.support {
  padding: var(--section-y) var(--page-x);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.support-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.support-links-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.support-link-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all .25s var(--ease);
}
.support-link-card:hover {
  background: var(--surface-2);
  border-color: rgba(167, 139, 250, .25);
  transform: translateX(6px);
  box-shadow: -4px 0 24px rgba(109, 40, 255, .06);
}
.support-link-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  margin-bottom: .15rem;
}
.support-link-desc { font-size: .8rem; color: var(--muted); line-height: 1.45; }
.support-link-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: .9rem;
  transition: color .2s, transform .2s;
}
.support-link-card:hover .support-link-arrow {
  color: var(--accent-bright);
  transform: translate(3px, -3px);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  margin: var(--section-y) auto;
  max-width: 1200px;
  padding: 0 var(--page-x);
}
.cta-banner-inner {
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(109, 40, 255, .14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 100%, rgba(34, 211, 238, .06) 0%, transparent 55%),
    linear-gradient(150deg, rgba(167, 139, 250, .05) 0%, var(--surface) 50%, var(--bg-2) 100%);
  border: 1px solid rgba(167, 139, 250, .22);
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 5vw, 4.6rem) clamp(2rem, 4vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, .5),
    0 0 80px rgba(109, 40, 255, .08);
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-bright), var(--aqua), transparent);
  box-shadow: 0 0 18px rgba(109, 40, 255, .42);
}
.cta-banner-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .9rem;
}
.cta-banner-inner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #F4F4F8 0%, var(--accent-bright) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-banner-inner p {
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) var(--page-x) clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-disclaimer {
  font-size: .82rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 1080px;
  margin-bottom: 2.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .9fr .9fr .9fr .9fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand-tagline {
  font-size: .86rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.footer-socials a {
  font-size: .82rem;
  color: var(--text-2);
  transition: color .2s;
  font-weight: 500;
}
.footer-socials a:hover { color: var(--accent-bright); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -.005em;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .82rem;
  color: var(--text-3);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-size: .76rem;
  color: var(--text-3);
}
.footer-trust-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent-bright);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  color: var(--accent-bright);
  background: rgba(167, 139, 250, .06);
  box-shadow: 0 0 16px rgba(109, 40, 255, .2);
}
.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .8rem;
  background: rgba(167, 139, 250, .06);
  border: 1px solid rgba(167, 139, 250, .2);
  border-radius: var(--radius-pill);
  font-family: var(--font-accent);
  font-size: .62rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ssl-badge svg { width: 12px; height: 12px; }

/* ============================================================
   PLAY PAGE
   ============================================================ */
.play-header {
  padding: clamp(3rem, 6vw, 5rem) var(--page-x) 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.disclaimer-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-accent);
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid rgba(167, 139, 250, .15);
  padding: .5rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.6rem;
  background: rgba(11, 15, 20, .56);
}
.play-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2.4rem;
  padding: 0 var(--page-x);
  position: relative;
  z-index: 1;
}
.play-stat {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.play-stat:hover {
  border-color: rgba(167, 139, 250, .25);
  transform: translateY(-3px);
}
.play-stat-label {
  font-family: var(--font-accent);
  font-size: .60rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.play-stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #F4F4F8, var(--accent-bright), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.01em;
  filter: drop-shadow(0 0 14px rgba(109, 40, 255, .2));
}
.play-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-x) clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}
.game-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.play-disclaimer {
  margin: 1.8rem auto 0;
  max-width: 760px;
  padding: 1.2rem 1.4rem;
  background: rgba(167, 139, 250, .04);
  border: 1px solid rgba(167, 139, 250, .15);
  border-radius: var(--radius);
  text-align: center;
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.65;
}
.play-disclaimer strong { color: var(--accent-bright); }

/* ============================================================
   ABOUT, LEGAL, CONTACT PAGES (shared hero/sections)
   ============================================================ */
.about-hero, .contact-hero, .legal-hero {
  padding: clamp(4.5rem, 9vw, 7rem) var(--page-x) clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.legal-hero { max-width: 760px; }

/* About */
.about-mission {
  padding: 0 var(--page-x) var(--section-y);
  position: relative;
  z-index: 1;
}
.about-mission-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.6rem clamp(1.6rem, 3vw, 3rem);
}
.about-mission-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
  margin-bottom: 1.2rem;
}
.about-mission-card h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #F4F4F8 0%, var(--accent-bright) 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-mission-card p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 1rem;
}
.about-mission-card p:last-child { margin-bottom: 0; }
.about-pillars {
  padding: 0 var(--page-x) var(--section-y);
  position: relative;
  z-index: 1;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.pillar-card { padding: 2rem 1.6rem; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0 .5rem;
  letter-spacing: -.01em;
}
.pillar-card p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.65;
}

.about-commitment { padding: 0 var(--page-x) var(--section-y); position: relative; z-index: 1; }
.commitment-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.commit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.55;
  transition: border-color .25s, background .25s;
}
.commit-item:hover {
  border-color: rgba(167, 139, 250, .26);
  background: rgba(167, 139, 250, .03);
}
.commit-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px rgba(167, 139, 250, .45);
  margin-top: .5rem;
  flex-shrink: 0;
}
.about-cta { margin-top: 0; }

/* Contact */
.contact-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--page-x) var(--section-y);
  position: relative;
  z-index: 1;
}
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-info-card {
  padding: 1.8rem;
  text-align: center;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0 .35rem;
  letter-spacing: -.01em;
}
.info-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .55rem;
}
.info-val {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  color: var(--accent-bright);
  text-decoration: none;
}
.contact-info-card .icon-box {
  margin: 0 auto;
}

.form-wrap { padding: 2.4rem clamp(1.4rem, 3vw, 2.4rem); }
.form-wrap-header { margin-bottom: 1.8rem; text-align: center; }
.form-wrap-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}
.form-wrap-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #F4F4F8 0%, var(--accent-bright) 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-wrap-header p { color: var(--text-2); font-size: .96rem; }
.form-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: .42rem; }
.field label {
  font-family: var(--font-accent);
  font-size: .68rem;
  color: var(--accent-light);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}
.field .req { color: var(--error); }
.field input,
.field textarea {
  background: rgba(11, 15, 20, .6);
  border: 1px solid rgba(167, 139, 250, .14);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .94rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(196, 181, 253, .35);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 4px rgba(109, 40, 255, .14), 0 0 24px rgba(109, 40, 255, .14);
  background: rgba(167, 139, 250, .04);
}
.field input.invalid,
.field textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, .12);
}
.field-error {
  display: none;
  color: var(--error);
  font-size: .76rem;
  margin-top: .25rem;
  font-family: var(--font-body);
}
.field-error.show { display: block; }

.submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: .5rem;
}
.success-note {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(52, 211, 153, .08);
  border: 1px solid rgba(52, 211, 153, .25);
  border-radius: var(--radius);
  color: var(--success);
  font-size: .9rem;
  text-align: center;
}
.success-note.show { display: block; }

.rp-note {
  text-align: center;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: .86rem;
}
.rp-note a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Legal */
.legal-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--page-x) var(--section-y);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
.legal-card { padding: 2rem clamp(1.4rem, 3vw, 2.4rem); }
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .9rem;
  letter-spacing: -.01em;
  color: var(--text);
}
.legal-card p {
  color: var(--text-2);
  margin-bottom: .8rem;
  line-height: 1.74;
  font-size: .95rem;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.legal-card li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-2);
  font-size: .94rem;
  line-height: 1.6;
}
.legal-card li::before {
  content: '';
  position: absolute;
  left: 0; top: .58rem;
  width: 8px; height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-bright));
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(109, 40, 255, .4);
}
.legal-card a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-brand { grid-column: span 3; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 2.2rem; }
  .how-steps::before { display: none; }
  .about-grid,
  .support-inner,
  .commitment-inner { grid-template-columns: 1fr; }
  .trust-band-inner { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-info-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { height: 70px; }
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 70px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2rem 1.6rem;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    border-left: 1px solid var(--glass-border);
    transform: translateX(105%);
    transition: transform .3s var(--ease);
    z-index: 600;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-pill { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: 3.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .7rem; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 1rem; flex-direction: column; align-items: flex-start; max-width: 280px; margin-left: auto; margin-right: auto; }
  .hero-preview-card { padding: 1.6rem; }
  .preview-reel { width: 56px; height: 56px; font-size: 1.5rem; }

  .games-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .game-tile { padding: 1.1rem 1rem; }
  .game-tile-title { font-size: .94rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand,
  .footer-socials { grid-column: span 2; }
  .trust-band-inner { grid-template-columns: 1fr; }
  .field-duo { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .play-stats { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-socials { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
