/* ================================================================
   HighRiseSpin – style.css
   Theme: Metropolitan Dark · Amber Gold · Electric Violet · Ultra-Luxury Social Casino
   Design System: Token-based, premium glassmorphism, VIP micro-UX
   Domain: highrisespin.com
   ================================================================ */

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

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Backgrounds – metropolitan noir */
  --bg-dark:   #020209;
  --bg-soft:   #04040E;
  --surface:   #070715;
  --surface-2: #0A0A1C;
  --surface-3: #0F0F28;

  /* Borders */
  --border:        rgba(255, 255, 255, 0.018);
  --border-strong: rgba(212, 168, 67, 0.55);
  --border-gold:   rgba(212, 168, 67, 0.14);

  /* Accent – Amber Gold (primary) */
  --accent-primary: #D4A843;
  --accent-bright:  #F0C840;
  --accent-deep:    #A07820;
  --accent-dim:     rgba(212, 168, 67, 0.08);
  --accent-glow:    rgba(212, 168, 67, 0.28);

  /* Electric Violet secondary */
  --violet:        #8B5CF6;
  --violet-bright: #A78BFA;
  --violet-dim:    rgba(139, 92, 246, 0.08);
  --violet-glow:   rgba(167, 139, 250, 0.22);

  /* Amethyst deep accent */
  --amethyst:     #6D28D9;
  --amethyst-dim: rgba(109, 40, 217, 0.08);

  /* Text */
  --text-primary:   #F0EFF8;
  --text-secondary: #6A6A9A;
  --text-muted:     #252548;
  --text-accent:    #F0C840;

  /* Radius – more architectural, less pill-y on surfaces */
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft:   0 16px 48px rgba(0, 0, 0, 0.80);
  --shadow-card:   0 12px 60px rgba(0, 0, 0, 0.90), 0 1px 0 rgba(255,255,255,0.012);
  --shadow-strong: 0 40px 100px rgba(0, 0, 0, 0.97);

  /* Glow – Gold */
  --glow-soft:    0 0 40px rgba(212, 168, 67, 0.16);
  --glow-gold:    0 0 64px rgba(212, 168, 67, 0.40);
  --glow-strong:  0 0 96px rgba(240, 200, 64, 0.52);

  /* Glow – Violet */
  --glow-violet:      0 0 48px rgba(139, 92, 246, 0.26);
  --glow-violet-soft: 0 0 28px rgba(167, 139, 250, 0.14);

  /* Glass */
  --glass-bg:     rgba(2, 2, 9, 0.98);
  --glass-border: rgba(212, 168, 67, 0.05);

  /* Typography */
  --font-display: 'Outfit', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Easing */
  --ease-out:  cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse 75% 55% at 8% -8%,  rgba(139, 92, 246, 0.060) 0%, transparent 50%),
    radial-gradient(ellipse 50% 45% at 96%  4%,  rgba(212, 168, 67, 0.055) 0%, transparent 50%),
    radial-gradient(ellipse 65% 52% at 50% 110%, rgba(109, 40, 217, 0.045) 0%, transparent 55%),
    linear-gradient(175deg, #020209 0%, #04040F 50%, #020209 100%);
  min-height: 100vh; overflow-x: hidden;
}

/* Architectural grid overlay – denser, more visible */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, black 0%, transparent 80%);
}

/* Vertical accent lines (architectural feel) */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(139, 92, 246, 0.012) 1px, transparent 1px);
  background-size: 192px 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.6;
}

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

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes voidDrift {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  25%  { transform: translate(60px, -48px) scale(1.08) rotate(1.5deg); }
  50%  { transform: translate(-36px, 64px) scale(0.93) rotate(-1deg); }
  75%  { transform: translate(28px, -18px) scale(1.05) rotate(0.8deg); }
  100% { transform: translate(18px, -26px) scale(1.03) rotate(0.4deg); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-14deg); }
  100% { transform: translateX(280%) skewX(-14deg); }
}

@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 22px rgba(212, 168, 67, 0.48); }
  50%       { text-shadow: 0 0 52px rgba(240, 200, 64, 0.92); }
}

@keyframes goldPulseBox {
  0%, 100% { box-shadow: 0 0 28px rgba(212, 168, 67, 0.25); }
  50%       { box-shadow: 0 0 58px rgba(240, 200, 64, 0.65); }
}

@keyframes violetPulseBox {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.20); }
  50%       { box-shadow: 0 0 48px rgba(167, 139, 250, 0.50); }
}

@keyframes starGlow {
  0%   { opacity: 0.04; }
  50%  { opacity: 0.14; }
  100% { opacity: 0.04; }
}

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

@keyframes floatSpin {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-6px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(212, 168, 67, 0.26); }
  50%       { border-color: rgba(240, 200, 64, 0.68); }
}

@keyframes riseIn {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── AURORA / AMBIENT ──────────────────────────────────────── */
.aurora {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(260px); opacity: 0.065;
  animation: voidDrift 65s ease-in-out infinite alternate;
}
.aurora-blob-1 {
  width: 1200px; height: 1200px; top: -600px; left: -420px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45), rgba(212, 168, 67, 0.18) 55%, transparent 72%);
  animation-duration: 78s;
}
.aurora-blob-2 {
  width: 820px; height: 820px; top: 25%; right: -380px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.32), rgba(109, 40, 217, 0.08) 55%, transparent 70%);
  animation-duration: 48s; animation-delay: -28s;
}
.aurora-blob-3 {
  width: 980px; height: 980px; bottom: -460px; left: 14%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.22), rgba(139, 92, 246, 0.10) 50%, transparent 72%);
  animation-duration: 86s; animation-delay: -44s;
}

/* Stars layer */
.aurora::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 7%   4%,  rgba(240,200,64,0.80), transparent),
    radial-gradient(1px 1px at 23%  9%,  rgba(167,139,250,0.58), transparent),
    radial-gradient(1.5px 1.5px at 42%  3%, rgba(255,255,255,0.82), transparent),
    radial-gradient(1px 1px at 62%  7%,  rgba(240,200,64,0.52), transparent),
    radial-gradient(1px 1px at 81%  5%,  rgba(255,255,255,0.46), transparent),
    radial-gradient(1.5px 1.5px at 91% 14%, rgba(167,139,250,0.65), transparent),
    radial-gradient(1px 1px at  3%  18%, rgba(240,200,64,0.34), transparent),
    radial-gradient(1px 1px at 71%   2%, rgba(255,255,255,0.40), transparent),
    radial-gradient(1px 1px at 50%  20%, rgba(167,139,250,0.36), transparent),
    radial-gradient(1.2px 1.2px at 33%  6%, rgba(255,255,255,0.32), transparent),
    radial-gradient(1px 1px at 88%  11%, rgba(240,200,64,0.42), transparent),
    radial-gradient(0.8px 0.8px at 15%  14%, rgba(255,255,255,0.28), transparent);
  animation: starGlow 14s ease-in-out infinite;
}

/* ── TRUST RIBBON ───────────────────────────────────────────── */
.trust-ribbon {
  position: relative; z-index: 10;
  background: rgba(2, 2, 9, 1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.04);
  padding: 9px 0; overflow: hidden;
}
.trust-ribbon::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.55), rgba(240, 200, 64, 0.82), rgba(139, 92, 246, 0.40), transparent);
  pointer-events: none;
}
.trust-ribbon-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.08em; white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; color: var(--violet-bright); }
.trust-sep { color: rgba(139, 92, 246, 0.22); font-size: 13px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2, 2, 9, 0.96);
  backdrop-filter: blur(64px) saturate(180%);
  -webkit-backdrop-filter: blur(64px) saturate(180%);
  border-bottom: 1px solid rgba(212, 168, 67, 0.025);
  padding: 0 28px;
}
.nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(120deg, transparent, rgba(139, 92, 246, 0.55), rgba(240, 200, 64, 0.88) 50%, rgba(139, 92, 246, 0.42), transparent);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; height: 74px;
}
.nav-logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(130deg, #F0EFF8 0%, #F0C840 28%, #D4A843 55%, #A78BFA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-logo-text em {
  font-style: normal; -webkit-text-fill-color: var(--violet-bright); color: var(--violet-bright); font-weight: 800;
}
.nav-pill {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  color: var(--violet-bright); border: 1px solid rgba(139, 92, 246, 0.32);
  padding: 3px 13px; border-radius: var(--radius-full); letter-spacing: 0.09em;
  background: rgba(139, 92, 246, 0.07);
}
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  color: var(--text-secondary); padding: 7px 15px; border-radius: var(--radius);
  transition: color 220ms var(--ease-out), background 220ms var(--ease-out); letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(212, 168, 67, 0.06); }
.nav-links a.active { color: var(--accent-bright); background: rgba(212, 168, 67, 0.07); }
.nav-cta-wrap { margin-left: 16px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px; margin-left: auto;
  padding: 4px; border-radius: var(--radius); background: rgba(212, 168, 67, 0.04);
}
.nav-toggle span {
  display: block; height: 2px; border-radius: 2px; background: var(--text-secondary);
  transition: transform 300ms var(--ease-out), opacity 220ms;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; padding: 14px 38px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; color: #060209;
  background: linear-gradient(140deg, #F0C840 0%, #D4A843 48%, #A07820 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 48px -10px rgba(212, 168, 67, 0.78),
              0 2px 0 rgba(255,255,255,0.012),
              inset 0 1px 0 rgba(255,255,255,0.32);
  transition: transform 180ms var(--ease-snap), box-shadow 220ms var(--ease-out), filter 220ms;
  cursor: pointer; border: none; white-space: nowrap;
  position: relative; overflow: hidden; text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.30), transparent 50%); pointer-events: none;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -65%;
  width: 38%; height: 100%;
  background: linear-gradient(108deg, transparent, rgba(255,255,255,0.40), transparent);
  animation: shimmer 5.5s ease-in-out infinite; pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.024);
  box-shadow: 0 22px 64px -10px rgba(212, 168, 67, 0.94), inset 0 1px 0 rgba(255,255,255,0.32);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0) scale(0.968); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 32px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--accent-bright);
  background: rgba(212, 168, 67, 0.04);
  border: 1.5px solid rgba(212, 168, 67, 0.24);
  border-radius: var(--radius-full);
  transition: background 220ms var(--ease-out), border-color 220ms, transform 180ms var(--ease-snap), box-shadow 220ms;
  cursor: pointer; white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(212, 168, 67, 0.10);
  border-color: rgba(240, 200, 64, 0.60);
  transform: translateY(-1px); box-shadow: var(--glow-soft);
}
.btn-ghost:active { transform: translateY(0); }

.btn-violet {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; color: #fff;
  background: linear-gradient(140deg, #C4B5FD 0%, #8B5CF6 50%, #6D28D9 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 36px -8px rgba(139, 92, 246, 0.68), inset 0 1px 0 rgba(255,255,255,0.20);
  transition: transform 180ms var(--ease-snap), box-shadow 220ms, filter 220ms;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-violet:hover { transform: translateY(-2px) scale(1.016); box-shadow: 0 20px 50px -8px rgba(139, 92, 246, 0.84); filter: brightness(1.08); }
.btn-violet:active { transform: translateY(0) scale(0.974); }

.btn-sm { padding: 9px 22px; font-size: 13px; }
.cta-microcopy { display: block; font-size: 11.5px; color: var(--text-muted); margin-top: 10px; letter-spacing: 0.02em; text-align: center; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { position: relative; z-index: 1; padding: 124px 28px 108px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 88% 70% at 50% -18%, rgba(139, 92, 246, 0.065), transparent 55%),
    radial-gradient(ellipse 44% 42% at 6% 62%, rgba(212, 168, 67, 0.042), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 720px; height: 720px;
  background: radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.048), transparent 62%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 96px; position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--violet-bright);
  background: rgba(139, 92, 246, 0.08); border: 1px solid rgba(139, 92, 246, 0.26);
  padding: 5px 18px; border-radius: var(--radius-full); margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.8vw, 68px); font-weight: 900;
  line-height: 1.00; letter-spacing: -0.03em;
  color: var(--text-primary); margin-bottom: 28px;
}
.hero-title span {
  background: linear-gradient(128deg, #F0EFF8 0%, #F0C840 28%, #D4A843 60%, #A78BFA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title em {
  font-style: normal; display: block; font-size: 0.26em; font-weight: 600;
  background: linear-gradient(128deg, #A78BFA, #F0C840, #D4A843);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.18em; margin-top: 24px; font-family: var(--font-body);
}
.hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 510px; line-height: 1.90; margin-bottom: 50px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.hero-trust { display: flex; align-items: center; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 12px; color: var(--text-muted); }
.hero-trust-item svg { color: var(--violet-bright); }

/* Preview card */
.hero-preview {
  background: linear-gradient(158deg, rgba(7, 7, 21, 0.99) 0%, rgba(10, 10, 28, 0.98) 100%);
  border: 1px solid rgba(212, 168, 67, 0.14);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-card), 0 0 130px rgba(139, 92, 246, 0.05);
  position: relative; overflow: hidden; backdrop-filter: blur(40px);
}
.hero-preview::before {
  content: ''; position: absolute; top: -1px; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.66), rgba(240, 200, 64, 0.90), rgba(139, 92, 246, 0.48), transparent);
}
.hero-preview::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 84% 46% at 50% 0%, rgba(139, 92, 246, 0.038), transparent 58%);
  pointer-events: none;
}
.preview-label {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--violet-bright);
  background: rgba(139, 92, 246, 0.08); border: 1px solid rgba(139, 92, 246, 0.22);
  padding: 3px 14px; border-radius: var(--radius-full);
  display: inline-block; margin-bottom: 32px; position: relative; z-index: 1;
}
.preview-reels { display: flex; gap: 12px; justify-content: center; margin-bottom: 30px; position: relative; z-index: 1; }
.preview-reel {
  width: 72px; height: 84px; background: var(--surface-2);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 30px; transition: box-shadow 320ms, border-color 320ms;
}
.preview-reel.lit {
  border-color: var(--accent-bright);
  box-shadow: 0 0 36px rgba(212, 168, 67, 0.68), inset 0 1px 0 rgba(255,255,255,0.02);
  animation: goldPulseBox 2.8s ease-in-out infinite;
}
.preview-balance-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; background: var(--surface);
  border: 1px solid rgba(212, 168, 67, 0.06);
  border-radius: var(--radius); margin-bottom: 24px; position: relative; z-index: 1;
}
.preview-bal-label { font-family: var(--font-body); font-size: 11px; color: var(--text-muted); letter-spacing: 0.07em; }
.preview-bal-value {
  font-family: var(--font-mono); font-size: 26px; font-weight: 700;
  color: var(--accent-bright); text-shadow: 0 0 30px rgba(212, 168, 67, 0.62);
  transition: color 300ms; animation: goldPulse 3.6s ease-in-out infinite;
}
.security-badge {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: rgba(139, 92, 246, 0.04); border: 1px solid rgba(139, 92, 246, 0.11);
  border-radius: var(--radius); margin-top: 20px; position: relative; z-index: 1;
}
.security-badge svg { color: var(--violet-bright); flex-shrink: 0; }
.security-badge-text { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.security-badge-text strong { color: var(--text-secondary); font-size: 12px; display: block; }

/* ── SECTION COMMON ─────────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase; color: var(--violet-bright);
  background: rgba(139, 92, 246, 0.07); border: 1px solid rgba(139, 92, 246, 0.20);
  padding: 5px 16px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.8vw, 54px); font-weight: 800;
  line-height: 1.04; letter-spacing: -0.025em;
  color: var(--text-primary); margin-bottom: 14px;
}
.section-title span {
  background: linear-gradient(128deg, #F0EFF8 0%, #F0C840 34%, #D4A843 68%, #A78BFA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 15.5px; color: var(--text-secondary); max-width: 560px; line-height: 1.90; }
.section-divider {
  display: flex; align-items: center; gap: 10px;
  width: 100%; max-width: 84px; margin: 16px 0;
}
.section-divider::before {
  content: '';
  flex: 1; height: 2px;
  background: linear-gradient(90deg, var(--violet-bright), var(--accent-primary), rgba(139, 92, 246, 0.18), transparent);
  border-radius: 2px;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .section-divider { margin: 16px auto; justify-content: center; }
.section-header.centered .section-label { display: inline-flex; }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.70s var(--ease-out), transform 0.70s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GAMES SECTION ──────────────────────────────────────────── */
.games-section {
  padding: 104px 28px;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 21, 0.82) 24%, rgba(7, 7, 21, 0.82) 76%, transparent);
}
.games-section-inner { max-width: 1280px; margin: 0 auto; }
.games-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 20px; }
.game-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid rgba(212, 168, 67, 0.05);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none;
  transition: transform 240ms var(--ease-out), box-shadow 240ms, border-color 240ms;
}
.game-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-card), 0 0 56px rgba(139, 92, 246, 0.13);
  border-color: rgba(212, 168, 67, 0.34);
}
.game-thumb {
  position: relative; height: 148px;
  background: var(--game-gradient, linear-gradient(135deg, #070715, #020209));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.game-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(0,0,0,0.72)); }
.game-thumb-icon { font-size: 52px; position: relative; z-index: 1; filter: drop-shadow(0 2px 20px rgba(0,0,0,0.85)); }
.game-tag {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.07em; padding: 3px 10px; border-radius: var(--radius-full);
}
.game-tag.hot { background: rgba(239, 68, 68, 0.92); color: #fff; }
.game-tag.new { background: rgba(240, 200, 64, 0.95); color: #060209; }
.game-tag.vip { background: linear-gradient(135deg, #F0C840, #A07820); color: #060209; }
.game-play-pill {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%) translateY(8px);
  z-index: 2; opacity: 0; font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; color: #060209;
  background: linear-gradient(135deg, #F0C840, #D4A843);
  padding: 4px 16px; border-radius: var(--radius-full);
  transition: opacity 200ms, transform 200ms var(--ease-out);
  white-space: nowrap; box-shadow: 0 4px 22px rgba(212, 168, 67, 0.58);
}
.game-card:hover .game-play-pill { opacity: 1; transform: translateX(-50%) translateY(0); }
.game-meta { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.game-name { font-family: var(--font-body); font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.game-genre { font-size: 12px; color: var(--text-muted); }
.game-stat-row { display: flex; gap: 10px; margin-top: 6px; font-size: 11px; color: var(--text-muted); }
.game-stat-row strong { color: var(--accent-bright); }

/* ── BONUS STRIP ─────────────────────────────────────────────── */
.bonus-strip {
  padding: 96px 28px;
  background: linear-gradient(138deg, rgba(7, 7, 21, 1) 0%, rgba(10, 10, 28, 1) 100%);
  border-top: 1px solid rgba(212, 168, 67, 0.05); border-bottom: 1px solid rgba(212, 168, 67, 0.05);
  position: relative; overflow: hidden;
}
.bonus-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.58), rgba(240, 200, 64, 0.82), rgba(139, 92, 246, 0.44), transparent);
}
.bonus-strip::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 68% 78% at 50% 50%, rgba(139, 92, 246, 0.025), transparent 70%); pointer-events: none;
}
.bonus-strip-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.bonus-urgency { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--violet-bright); margin-bottom: 6px; }
.bonus-urgency::before { content: '◈ '; color: var(--accent-bright); }
.bonus-layout { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 60px; }
.bonus-timer-wrap { display: flex; align-items: center; gap: 20px; margin: 18px 0 34px; flex-wrap: wrap; }
.timer-label { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
#bonus-timer {
  font-family: var(--font-mono); font-size: 42px; font-weight: 700; color: var(--accent-bright);
  text-shadow: 0 0 38px rgba(212, 168, 67, 0.82); transition: color 300ms; animation: goldPulse 3.6s ease-in-out infinite;
}
#bonus-timer.low-time { color: #F87171; text-shadow: 0 0 28px rgba(239, 68, 68, 0.65); animation: none; }
.bonus-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
#bonus-toast { font-size: 12.5px; color: var(--text-secondary); opacity: 0; transition: opacity 300ms; font-family: var(--font-body); }
#bonus-toast.show { opacity: 1; }
.bonus-tiers { display: flex; flex-direction: column; gap: 13px; min-width: 310px; }
.bonus-tier {
  display: flex; align-items: center; justify-content: space-between; padding: 18px 26px;
  background: var(--surface-2); border: 1px solid rgba(212, 168, 67, 0.06);
  border-radius: var(--radius-lg); transition: border-color 240ms, box-shadow 240ms;
}
.bonus-tier:hover { border-color: rgba(212, 168, 67, 0.44); box-shadow: var(--glow-soft); }
.bonus-tier-name { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--text-primary); }
.bonus-tier-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.bonus-tier-amount {
  font-family: var(--font-mono); font-size: 17px; font-weight: 700;
  background: linear-gradient(128deg, #F0C840, #D4A843);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-section { padding: 104px 28px; }
.about-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 44px; }
.stat-box {
  padding: 32px; background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.05);
  border-radius: var(--radius-lg); transition: border-color 240ms, box-shadow 240ms; position: relative; overflow: hidden;
}
.stat-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.28), rgba(212, 168, 67, 0.20), transparent);
}
.stat-box:hover { border-color: rgba(212, 168, 67, 0.40); box-shadow: var(--glow-soft); }
.stat-value {
  font-family: var(--font-mono); font-size: 34px; font-weight: 700;
  background: linear-gradient(128deg, #F0EFF8, #F0C840);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-family: var(--font-body); }
.about-commitments { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.commitment-item {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px;
  background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.04);
  border-radius: var(--radius-lg); transition: border-color 240ms, box-shadow 240ms;
}
.commitment-item:hover { border-color: rgba(212, 168, 67, 0.26); box-shadow: var(--glow-soft); }
.commitment-icon {
  width: 52px; height: 52px; flex-shrink: 0; background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.20); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.commitment-title { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.commitment-text { font-size: 13px; color: var(--text-secondary); line-height: 1.78; }

/* ── FEATURES GRID ──────────────────────────────────────────── */
.features-section { padding: 104px 28px; }
.features-inner { max-width: 1280px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(296px, 1fr)); gap: 22px; margin-top: 10px; }
.feature-card {
  padding: 40px 36px; background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.04);
  border-radius: var(--radius-lg); transition: transform 240ms var(--ease-out), border-color 240ms, box-shadow 240ms;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.28), rgba(212, 168, 67, 0.16), rgba(139, 92, 246, 0.10), transparent);
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(212, 168, 67, 0.32); box-shadow: var(--shadow-card), var(--glow-violet-soft); }
.feature-icon {
  width: 60px; height: 60px; background: rgba(139, 92, 246, 0.07); border: 1px solid rgba(139, 92, 246, 0.20);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 28px;
}
.feature-title { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.feature-text { font-size: 14px; color: var(--text-secondary); line-height: 1.78; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner { padding: 104px 28px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 78% 88% at 50% 50%, rgba(139, 92, 246, 0.038), transparent 68%); pointer-events: none;
}
.cta-banner-inner { max-width: 780px; margin: 0 auto; position: relative; }
.cta-banner .section-title { margin-bottom: 18px; }
.cta-banner .section-sub { margin: 0 auto 50px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── RG CALLOUT ─────────────────────────────────────────────── */
.rg-callout { padding: 52px 28px; background: rgba(7, 7, 21, 0.98); border-top: 1px solid rgba(212, 168, 67, 0.04); border-bottom: 1px solid rgba(212, 168, 67, 0.04); }
.rg-callout-inner { max-width: 1280px; 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: 56px; height: 56px; flex-shrink: 0; background: rgba(139, 92, 246, 0.06); border: 1px solid rgba(139, 92, 246, 0.20); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.rg-title { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.rg-desc { font-size: 12.5px; color: var(--text-secondary); line-height: 1.74; max-width: 500px; }
.rg-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rg-logo-box {
  padding: 10px 22px; background: rgba(255,255,255,0.001); border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--text-muted);
  transition: border-color 200ms, color 200ms, background 200ms;
}
.rg-logo-box:hover { border-color: rgba(212, 168, 67, 0.46); color: var(--accent-bright); background: rgba(212, 168, 67, 0.06); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-soft); border-top: 1px solid rgba(212, 168, 67, 0.03); padding: 80px 28px 46px; position: relative; z-index: 1; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.52), rgba(240, 200, 64, 0.74), rgba(139, 92, 246, 0.36), transparent); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 64px; border-bottom: 1px solid rgba(212, 168, 67, 0.03); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { width: 40px; height: 40px; }
.footer-logo-text {
  font-family: var(--font-display); font-size: 17px; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(128deg, #F0EFF8 0%, #F0C840 38%, #D4A843 68%, #A78BFA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.90; max-width: 300px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-badge { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 11px; border: 1px solid rgba(212, 168, 67, 0.13); border-radius: var(--radius-full); color: var(--text-muted); }
.footer-col-title { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 13.5px; color: var(--text-muted); transition: color 200ms; }
.footer-col ul li a:hover { color: var(--accent-bright); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-link {
  width: 42px; height: 42px; background: rgba(212, 168, 67, 0.04); border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted); transition: color 200ms, border-color 200ms, background 200ms; text-decoration: none;
}
.footer-social-link:hover { color: var(--accent-bright); border-color: rgba(212, 168, 67, 0.46); background: rgba(212, 168, 67, 0.07); }
.footer-bottom { padding-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--text-muted); transition: color 200ms; }
.footer-legal a:hover { color: var(--accent-bright); }
.footer-disclaimer { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(212, 168, 67, 0.03); font-size: 11px; color: var(--text-muted); line-height: 1.90; max-width: 940px; }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact-section { padding: 104px 28px; }
.contact-inner { max-width: 1280px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card { display: flex; gap: 18px; padding: 26px; background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.05); border-radius: var(--radius-lg); transition: border-color 240ms, box-shadow 240ms; }
.contact-card:hover { border-color: rgba(212, 168, 67, 0.26); box-shadow: var(--glow-soft); }
.contact-card-icon { width: 52px; height: 52px; flex-shrink: 0; background: rgba(139, 92, 246, 0.07); border: 1px solid rgba(139, 92, 246, 0.20); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-card-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.contact-card-value { font-size: 13px; color: var(--text-secondary); }
.contact-form {
  display: flex; flex-direction: column; gap: 18px; padding: 44px;
  background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.06);
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
}
.contact-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.62), rgba(240, 200, 64, 0.82), rgba(139, 92, 246, 0.44), transparent); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.04em; }
.form-input, .form-textarea { background: var(--surface-2); border: 1.5px solid rgba(212, 168, 67, 0.08); border-radius: var(--radius); color: var(--text-primary); font-size: 14px; padding: 12px 17px; transition: border-color 200ms, box-shadow 200ms; outline: none; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus { border-color: var(--violet-bright); box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14); }
.form-input.invalid, .form-textarea.invalid { border-color: #EF4444; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 11.5px; color: #F87171; font-family: var(--font-body); display: none; }
.form-error.show { display: block; }
#contact-success { display: none; padding: 14px 20px; background: rgba(212, 168, 67, 0.07); border: 1px solid rgba(212, 168, 67, 0.34); border-radius: var(--radius); font-size: 13px; color: var(--accent-bright); font-family: var(--font-body); }
#contact-success.show { display: block; }

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.page-header { padding: 92px 28px 72px; text-align: center; position: relative; z-index: 1; border-bottom: 1px solid rgba(212, 168, 67, 0.04); }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 78% at 50% 0%, rgba(139, 92, 246, 0.048), transparent 62%); pointer-events: none; }
.page-header-inner { max-width: 760px; margin: 0 auto; position: relative; }
.page-header .section-label { display: inline-flex; margin-bottom: 18px; }
.page-header .section-title { font-size: clamp(22px, 4.2vw, 52px); }
.page-header .section-sub { margin: 0 auto; }

/* ── LEGAL CONTENT ───────────────────────────────────────────── */
.legal-section { padding: 80px 28px; }
.legal-inner { max-width: 840px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); margin: 44px 0 12px; border-bottom: 1px solid rgba(212, 168, 67, 0.07); padding-bottom: 9px; letter-spacing: 0.02em; }
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--accent-bright); margin: 22px 0 9px; }
.legal-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.94; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { font-size: 14px; color: var(--text-secondary); line-height: 1.92; margin-bottom: 6px; }
.legal-content a { color: var(--violet-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal-alert { background: linear-gradient(138deg, rgba(139, 92, 246, 0.07) 0%, rgba(212, 168, 67, 0.03) 100%); border: 1px solid rgba(139, 92, 246, 0.22); border-radius: var(--radius); padding: 18px 22px; font-size: 14px; color: var(--text-secondary); line-height: 1.72; margin-bottom: 8px; }
.legal-alert strong { color: var(--violet-bright); }
.legal-block { padding: 40px; background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.04); border-radius: var(--radius-lg); }
.legal-block h2 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 13px; }
.legal-block h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--text-secondary); margin: 18px 0 9px; }
.legal-block p { font-size: 14px; color: var(--text-secondary); line-height: 1.92; margin-bottom: 10px; }
.legal-block ul { padding-left: 18px; list-style: disc; }
.legal-block ul li { font-size: 14px; color: var(--text-secondary); line-height: 1.92; margin-bottom: 6px; }
.legal-block a { color: var(--violet-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal-meta { font-size: 12px; color: var(--text-muted); font-style: italic; margin-top: 12px; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-page-section { padding: 80px 28px; }
.about-page-inner { max-width: 1060px; margin: 0 auto; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 10px; }
.about-page-card { padding: 40px; background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.05); border-radius: var(--radius-xl); transition: border-color 240ms, box-shadow 240ms; position: relative; overflow: hidden; }
.about-page-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.28), rgba(212, 168, 67, 0.16), rgba(139, 92, 246, 0.10), transparent); }
.about-page-card:hover { border-color: rgba(212, 168, 67, 0.34); box-shadow: var(--glow-soft); }
.about-page-card h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; letter-spacing: 0.01em; }
.about-page-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.92; }
.team-values { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.value-item { display: flex; gap: 15px; align-items: flex-start; padding: 26px; background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.04); border-radius: var(--radius-lg); transition: border-color 240ms, box-shadow 240ms; }
.value-item:hover { border-color: rgba(212, 168, 67, 0.26); box-shadow: var(--glow-soft); }
.value-icon { width: 52px; height: 52px; flex-shrink: 0; background: rgba(139, 92, 246, 0.07); border: 1px solid rgba(139, 92, 246, 0.18); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.value-title { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.74; }

/* ── PLAY PAGE ───────────────────────────────────────────────── */
.play-page { padding: 80px 28px; }
.play-inner { max-width: 1280px; margin: 0 auto; }
.play-layout { display: grid; grid-template-columns: 1fr 400px; gap: 36px; align-items: start; }
.game-frame-wrap { background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.07); border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.game-frame-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.72), rgba(240, 200, 64, 0.92), rgba(139, 92, 246, 0.54), transparent); z-index: 1; }
.game-frame-wrap iframe { display: block; width: 100%; height: 600px; border: none; }
.play-sidebar { display: flex; flex-direction: column; gap: 20px; }
.play-card { padding: 28px; background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.06); border-radius: var(--radius-xl); position: relative; overflow: hidden; }
.play-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.38), rgba(240, 200, 64, 0.26), rgba(139, 92, 246, 0.18), transparent); }
.play-card-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.play-stat { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(212, 168, 67, 0.04); }
.play-stat:last-child { border-bottom: none; }
.play-stat-label { font-size: 13px; color: var(--text-secondary); }
.play-stat-value { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--accent-bright); }
.bet-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bet-opt { padding: 10px; text-align: center; background: var(--surface-2); border: 1.5px solid rgba(212, 168, 67, 0.06); border-radius: var(--radius); font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--text-secondary); cursor: pointer; transition: border-color 200ms, color 200ms, background 200ms; }
.bet-opt.active, .bet-opt:hover { border-color: var(--accent-primary); color: var(--accent-bright); background: rgba(212, 168, 67, 0.08); }
#spin-btn {
  width: 100%; padding: 17px; font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #060209;
  background: linear-gradient(140deg, #F0C840, #D4A843, #A07820);
  border: none; border-radius: var(--radius-full); cursor: pointer;
  box-shadow: 0 12px 42px -8px rgba(212, 168, 67, 0.80);
  transition: transform 180ms var(--ease-snap), box-shadow 220ms, filter 220ms;
  display: flex; align-items: center; justify-content: center; gap: 10px; position: relative; overflow: hidden;
}
#spin-btn::after { content: ''; position: absolute; top: 0; left: -65%; width: 38%; height: 100%; background: linear-gradient(108deg, transparent, rgba(255,255,255,0.32), transparent); animation: shimmer 5.5s ease-in-out infinite; pointer-events: none; }
#spin-btn:hover { transform: translateY(-2px); filter: brightness(1.10); box-shadow: 0 22px 56px -8px rgba(212, 168, 67, 0.94); }
#spin-btn:active { transform: translateY(0) scale(0.975); }
#spin-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
#spin-icon-el { font-size: 18px; transition: transform 600ms var(--ease-out); }
#win-msg { display: none; padding: 14px 20px; background: rgba(212, 168, 67, 0.08); border: 1px solid rgba(212, 168, 67, 0.40); border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--accent-bright); text-align: center; }
#win-msg.show { display: block; }
.reel-track { display: flex; gap: 12px; justify-content: center; padding: 12px 0; }
.reel { width: 62px; height: 74px; background: var(--surface-2); border: 1.5px solid rgba(212, 168, 67, 0.07); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 28px; transition: border-color 320ms, box-shadow 320ms; }
.reel.win-reel { border-color: var(--accent-bright); box-shadow: 0 0 36px rgba(212, 168, 67, 0.70); }

/* ── AGE GATE ────────────────────────────────────────────────── */
.age-gate { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(2, 2, 9, 0.98); backdrop-filter: blur(52px); align-items: center; justify-content: center; padding: 24px; }
.age-gate.show { display: flex; }
.age-gate-box { max-width: 540px; width: 100%; background: var(--surface); border: 1px solid rgba(212, 168, 67, 0.26); border-radius: var(--radius-xl); padding: 60px 54px; text-align: center; box-shadow: var(--shadow-strong), 0 0 130px rgba(139, 92, 246, 0.07); position: relative; overflow: hidden; }
.age-gate-box::before { content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 1px; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.68), rgba(240, 200, 64, 0.95), rgba(139, 92, 246, 0.50), transparent); }
.age-gate-box::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 86% 54% at 50% 0%, rgba(139, 92, 246, 0.042), transparent 60%); pointer-events: none; }
.age-gate-icon { font-size: 58px; margin-bottom: 24px; animation: floatSpin 4.5s ease-in-out infinite; }
.age-gate-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 12px; }
.age-gate-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.76; }
.age-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.age-gate-legal { margin-top: 22px; font-size: 11px; color: var(--text-muted); line-height: 1.74; position: relative; z-index: 1; }
.age-gate-legal a { color: var(--violet-bright); text-decoration: underline; }
.bonus-redeem-spinning { opacity: 0.65; cursor: wait; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 760px; gap: 60px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .play-layout { grid-template-columns: 1fr; }
  .game-frame-wrap iframe { height: 500px; }
  .about-page-grid { grid-template-columns: 1fr; }
  .bonus-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; position: absolute; top: 74px; left: 0; right: 0; background: rgba(2, 2, 9, 0.99); border-bottom: 1px solid rgba(212, 168, 67, 0.06); padding: 14px 18px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 15px; width: 100%; }
  .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 76px 22px 70px; }
  .hero-title { font-size: clamp(24px, 7.5vw, 48px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .games-section, .bonus-strip, .about-section, .features-section, .cta-banner { padding: 72px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .trust-ribbon-inner { gap: 14px; }
  .trust-sep { display: none; }
  .preview-reel { width: 62px; height: 76px; font-size: 26px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 25px; }
  .section-title { font-size: 22px; }
  .bonus-tiers { gap: 10px; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 20px; }
  .age-gate-box { padding: 46px 26px; }
}
