/* ============================================================
   lucksterra – Global Stylesheet
   Premium VIP Casino Design | lucksterra.com
   Identity: Deep Black / Royal Gold / Violet Purple / Neon
   ============================================================ */

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

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

:root {
  /* ── Palette: deep black + royal gold + violet purple ── */
  --bg:          #05050A;
  --bg-2:        #080612;
  --surface:     #0D0B18;
  --surface-2:   #130F22;
  --border:      rgba(139,92,246,.22);
  --border-2:    rgba(201,168,76,.30);

  /* Primary accent: Royal Gold */
  --accent:      #C9A84C;
  --accent-bright: #F0C040;
  --accent-dim:  rgba(201,168,76,.14);
  --accent-glow: rgba(201,168,76,.50);
  --gold:        #F0C040;
  --gold-dim:    rgba(240,192,64,.16);

  /* Secondary: Violet / Royal Purple */
  --purple:      #8B5CF6;
  --purple-bright: #A78BFA;
  --purple-dim:  rgba(139,92,246,.14);
  --purple-glow: rgba(139,92,246,.48);

  /* Tertiary: Neon accent */
  --neon:        #D946EF;
  --neon-dim:    rgba(217,70,239,.12);

  /* Teal/green win flash */
  --win:         #10B981;

  --text:        #F8F5EE;
  --text-2:      rgba(248,245,238,.68);
  --muted:       rgba(195,180,155,.75);
  --error:       #ff4b4b;
  --success:     #10B981;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --page-x:     clamp(1.25rem, 6vw, 5rem);
  --section-y:  clamp(4rem, 9vw, 7rem);
  --radius-lg:  22px;
  --radius-md:  13px;
  --radius-sm:  9px;
  --radius-pill: 99px;

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
}

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

body {
  background:
    radial-gradient(ellipse at 10% -5%, rgba(139,92,246,.22) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 5%, rgba(201,168,76,.12) 0%, transparent 36%),
    radial-gradient(ellipse at 50% 108%, rgba(139,92,246,.18) 0%, transparent 46%),
    linear-gradient(165deg, #05050A 0%, #08060F 50%, #060410 100%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.72;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ── NOISE OVERLAY ── */
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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ── AURORA ── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .50;
  animation: aurora-drift 26s ease-in-out infinite alternate;
}

.nav-logo-img,
.footer-logo-img { display: none; }

.aurora-blob-1 {
  width: 780px; height: 520px;
  top: -240px; left: -180px;
  background: radial-gradient(ellipse, rgba(139,92,246,.30) 0%, transparent 70%);
}
.aurora-blob-2 {
  width: 620px; height: 430px;
  top: 10px; right: -180px;
  background: radial-gradient(ellipse, rgba(201,168,76,.12) 0%, transparent 68%);
  animation-delay: -9s;
  animation-duration: 21s;
}
.aurora-blob-3 {
  width: 460px; height: 340px;
  bottom: 6%; left: 26%;
  background: radial-gradient(ellipse, rgba(139,92,246,.16) 0%, transparent 70%);
  animation-delay: -16s;
  animation-duration: 30s;
}
@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, 3%) scale(1.08); }
}

/* ── 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: 70px;
  background: rgba(5,5,10,.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(201,168,76,.22);
  box-shadow:
    0 6px 40px rgba(0,0,0,.60),
    0 0 30px rgba(139,92,246,.07);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #130F22 0%, #1E1535 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(201,168,76,.30);
  box-shadow:
    0 0 18px rgba(139,92,246,.30),
    0 0 36px rgba(201,168,76,.18),
    0 0 60px rgba(139,92,246,.10);
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: 26px;
  height: 26px;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(201,168,76,.42))
    drop-shadow(0 0 16px rgba(139,92,246,.28));
  transition: transform .28s var(--ease), filter .28s var(--ease);
}
.nav-logo:hover .nav-logo-icon img {
  transform: translateY(-1px) rotate(-8deg) scale(1.05);
  filter:
    drop-shadow(0 0 12px rgba(201,168,76,.55))
    drop-shadow(0 0 24px rgba(139,92,246,.38));
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.nav-logo-text em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
  position: relative;
  padding-bottom: 2px;
  font-family: var(--font-display);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  transition: width .25s var(--ease);
}
.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%; background: linear-gradient(90deg, var(--accent), var(--accent-bright)); }

/* Age pill */
.nav-pill {
  font-size: .65rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(201,168,76,.28);
  padding: .28rem .85rem;
  border-radius: var(--radius-pill);
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-display);
}

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

/* ── UTILITY CLASSES ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.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-block;
  font-size: .62rem;
  font-weight: 600;
  color: var(--purple-bright);
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--accent-bright);
}

.section-body {
  font-size: clamp(.9rem, 1.5vw, 1.02rem);
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.80;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .88rem 2.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .24s var(--ease);
  cursor: pointer;
  border: none;
  will-change: transform;
}

/* Primary: Gold-to-Purple gradient (VIP power) */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #C9A84C 0%, #8B5CF6 55%, #D946EF 100%);
  color: #fff;
  border: 1px solid rgba(201,168,76,.32);
  box-shadow:
    0 0 30px rgba(139,92,246,.44),
    0 0 60px rgba(201,168,76,.20),
    0 0 90px rgba(217,70,239,.12);
  text-shadow: 0 1px 4px rgba(0,0,0,.40);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #F0C040 0%, #A78BFA 55%, #E040FB 100%);
  opacity: 0;
  transition: opacity .24s var(--ease);
  pointer-events: none;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(255,255,255,.18) 38%,
    rgba(255,224,71,.28) 52%,
    rgba(167,139,250,.18) 68%,
    transparent 100%
  );
  transform: translateX(-130%);
  opacity: 0;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 48px rgba(139,92,246,.60),
    0 0 88px rgba(201,168,76,.28),
    0 0 110px rgba(217,70,239,.20);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after {
  opacity: 1;
  animation: btn-shimmer 1s var(--ease) both;
}
.btn-primary:active::after { opacity: .7; }

@keyframes btn-shimmer {
  0%   { transform: translateX(-130%); }
  55%  { transform: translateX(0%); }
  100% { transform: translateX(130%); }
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(201,168,76,.32);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow:
    0 0 26px rgba(201,168,76,.20),
    0 0 60px rgba(139,92,246,.12);
}

/* Gold */
.btn-gold {
  background: linear-gradient(130deg, #F0C040 0%, #C9A84C 50%, #8B5CF6 115%);
  color: #06040A;
  border: 1px solid rgba(201,168,76,.32);
  text-shadow: none;
  box-shadow:
    0 0 24px rgba(201,168,76,.38),
    0 0 54px rgba(201,168,76,.18),
    0 0 70px rgba(139,92,246,.12),
    0 0 0 1px rgba(201,168,76,.12) inset;
}
.btn-gold:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(201,168,76,.52),
    0 0 72px rgba(139,92,246,.20);
}

.btn:focus-visible,
.btn-ghost:focus-visible,
.btn-primary:focus-visible,
.btn-gold:focus-visible {
  outline: 2px solid rgba(201,168,76,.85);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(139,92,246,.18), 0 0 30px rgba(201,168,76,.24);
}
.btn:active { transform: translateY(0) scale(.99); }
.btn:disabled { opacity: .38; cursor: not-allowed; transform: none !important; }

/* ── CARDS ── */
.card {
  background: linear-gradient(158deg, rgba(139,92,246,.04) 0%, var(--surface) 65%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 14px 44px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.028);
  transition:
    border-color .25s var(--ease),
    transform .25s var(--ease),
    box-shadow .25s var(--ease);
}
.card:hover {
  border-color: rgba(201,168,76,.36);
  transform: translateY(-3px);
  box-shadow:
    0 20px 56px rgba(0,0,0,.50),
    0 0 40px rgba(139,92,246,.12);
}
.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(--purple), var(--accent), var(--neon));
}

.icon-box {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,.26);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.icon-box-gold {
  background: var(--gold-dim);
  border-color: rgba(201,168,76,.26);
}

/* ── DIVIDER ── */
.divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--accent), transparent);
  margin: 1.5rem 0;
}

/* ── FADE-IN ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 13vw, 10rem) var(--page-x) clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid rgba(139,92,246,.32);
  padding: .32rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2.2rem;
  background: rgba(139,92,246,.06);
}
.hero-eyebrow span { color: var(--purple-bright); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow:
    0 8px 40px rgba(0,0,0,.60),
    0 0 30px rgba(139,92,246,.18),
    0 0 18px rgba(201,168,76,.12);
  margin-bottom: 1.7rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title em {
  font-style: normal;
  color: var(--accent-bright);
}
.hero-title .hero-gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 2.9rem;
  line-height: 1.80;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.6rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.85rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--purple-bright); }

/* Mini slot preview in hero */
.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: linear-gradient(155deg, rgba(139,92,246,.08) 0%, rgba(13,11,24,.94) 100%);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow:
    0 32px 100px rgba(0,0,0,.68),
    0 0 0 1px rgba(139,92,246,.14),
    0 0 88px rgba(139,92,246,.12),
    0 0 44px rgba(201,168,76,.08);
  position: relative;
  overflow: hidden;
}
.hero-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--accent), var(--neon));
}
.preview-label {
  font-family: var(--font-display);
  font-size: .60rem;
  color: var(--muted);
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}
.preview-reels {
  display: flex;
  justify-content: center;
  gap: .65rem;
  margin-bottom: 1.3rem;
}
.preview-reel {
  width: 74px; height: 74px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: border-color .2s, box-shadow .2s;
}
.preview-reel.lit {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(201,168,76,.36), 0 0 36px rgba(139,92,246,.18);
}
.preview-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1rem;
  background: rgba(5,5,10,.65);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,.14);
}
.preview-balance-label {
  font-family: var(--font-display);
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.preview-balance-val {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-bright);
  text-shadow: 0 0 20px rgba(201,168,76,.40);
}
.preview-spin-btn { width: 100%; margin-top: 1rem; }

/* ── HOME SECTIONS ── */
.section { position: relative; z-index: 1; }

/* 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: 1120px;
  margin: 0 auto;
}
.about-body p { color: var(--text-2); margin-bottom: 1.1rem; font-size: .97rem; }
.about-body p:last-child { margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.3rem;
  text-align: center;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.stat-box:hover {
  border-color: rgba(201,168,76,.34);
  box-shadow: 0 0 28px rgba(139,92,246,.10);
}
.stat-box-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: .38rem;
  letter-spacing: .02em;
  text-shadow: 0 0 22px rgba(201,168,76,.30);
}
.stat-box-label { font-size: .78rem; color: var(--muted); line-height: 1.4; }

/* Features */
.features {
  padding: var(--section-y) var(--page-x);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.6rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  max-width: 1120px;
  margin: 0 auto;
}
.feature-card { padding: 2.1rem 1.8rem; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 1rem 0 .6rem;
}
.feature-card p { font-size: .9rem; color: var(--text-2); line-height: 1.74; }

/* How it works */
.how { padding: var(--section-y) var(--page-x); }
.how-inner { max-width: 1120px; margin: 0 auto; }
.how-header { max-width: 560px; margin-bottom: 3.6rem; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--border), var(--accent));
}
.how-step { text-align: center; }
.how-step-num {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-bright);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 22px rgba(139,92,246,.26), 0 0 44px rgba(201,168,76,.10);
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.how-step p { font-size: .88rem; color: var(--text-2); }

/* Support */
.support {
  padding: var(--section-y) var(--page-x);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.support-inner {
  max-width: 1120px;
  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: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all .22s var(--ease);
}
.support-link-card:hover {
  background: var(--surface-2);
  border-color: rgba(201,168,76,.30);
  transform: translateX(5px);
}
.support-link-name { font-weight: 500; font-size: .95rem; margin-bottom: .15rem; }
.support-link-desc { font-size: .8rem; color: var(--muted); }
.support-link-arrow { margin-left: auto; color: var(--muted); font-size: .9rem; transition: color .2s; }
.support-link-card:hover .support-link-arrow { color: var(--accent-bright); }

/* Home CTA Banner */
.cta-banner {
  margin: var(--section-y) auto;
  max-width: 1120px;
  padding: 0 var(--page-x);
}
.cta-banner-inner {
  background: linear-gradient(135deg, rgba(139,92,246,.10) 0%, var(--surface) 40%, var(--bg-2) 100%);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 5vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 90px rgba(139,92,246,.10);
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--accent), var(--neon), transparent);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-banner h2 em { font-style: normal; color: var(--accent-bright); }
.cta-banner p { color: var(--text-2); max-width: 480px; margin: 0 auto 2.2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   HOME: lucksterra VIP Boost Bonus
   ============================================================ */
.bonus-strip {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(circle at 15% 10%, rgba(139,92,246,.16) 0%, transparent 38%),
    radial-gradient(circle at 85% 30%, rgba(201,168,76,.10) 0%, transparent 40%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.bonus-inner { max-width: 1120px; margin: 0 auto; }
.bonus-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.4rem;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 1.9rem;
}
.bonus-card {
  padding: 1.9rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-color: rgba(201,168,76,.28);
  background: linear-gradient(175deg, rgba(139,92,246,.10) 0%, rgba(13,11,24,.80) 100%);
}
.bonus-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 30% 20%, rgba(139,92,246,.28) 0%, transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(201,168,76,.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.bonus-card:hover::before { opacity: 1; }

.bonus-tier {
  font-family: var(--font-display);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple-bright);
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  margin: .7rem 0 .38rem;
  text-shadow: 0 0 26px rgba(201,168,76,.28), 0 0 40px rgba(139,92,246,.12);
}
.bonus-desc { color: var(--text-2); font-size: .9rem; line-height: 1.72; }

.bonus-timer-row { display: flex; justify-content: center; margin-bottom: 1.3rem; }
.bonus-timer-pill {
  width: 100%;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,.28);
  background: rgba(5,5,10,.70);
  box-shadow: 0 0 48px rgba(139,92,246,.06);
}
.bonus-timer-label {
  font-family: var(--font-display);
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .66rem;
  font-weight: 600;
}
.bonus-timer-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-bright);
  text-shadow: 0 0 20px rgba(201,168,76,.28);
}
.bonus-timer-value.low-time {
  animation: nova-flicker 1.1s ease-in-out infinite;
}
.bonus-actions { display: flex; justify-content: center; gap: 1rem; }
.bonus-toast {
  text-align: center;
  margin-top: 1.2rem;
  min-height: 1.25em;
  font-size: .92rem;
  color: var(--text-2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.bonus-toast.show { opacity: 1; transform: none; }
.bonus-redeem-spinning {
  animation: bonus-redeem-spin .85s var(--ease) both;
}
@keyframes bonus-redeem-spin {
  0%   { transform: translateY(0) rotate(0deg); }
  35%  { transform: translateY(-2px) rotate(14deg); }
  70%  { transform: translateY(0) rotate(-10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes nova-flicker {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 16px rgba(139,92,246,.16)); }
  50%       { filter: brightness(1.7) drop-shadow(0 0 30px rgba(201,168,76,.32)); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 8.5rem) var(--page-x) clamp(3.5rem, 6vw, 5.5rem);
}
.about-hero .section-title { max-width: 640px; margin: .5rem auto 1.25rem; }
.about-hero .section-body { margin: 0 auto; text-align: center; }

.about-mission {
  position: relative; z-index: 1;
  padding: 0 var(--page-x) var(--section-y);
}
.about-mission-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem);
}
.about-mission-card p { color: var(--text-2); font-size: .97rem; margin-bottom: 1rem; max-width: 760px; }
.about-mission-card p:last-child { margin-bottom: 0; }

.about-pillars {
  position: relative; z-index: 1;
  padding: var(--section-y) var(--page-x);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  max-width: 1120px;
  margin: 3rem auto 0;
}
.pillar-card { padding: 2.1rem 1.7rem; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: .9rem 0 .5rem;
}
.pillar-card p { font-size: .88rem; color: var(--text-2); line-height: 1.67; }

.about-commitment {
  position: relative; z-index: 1;
  padding: var(--section-y) var(--page-x);
}
.commitment-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.commit-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  color: var(--text-2);
}
.commit-dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
  box-shadow: 0 0 8px rgba(139,92,246,.50);
}
.about-cta { position: relative; z-index: 1; }

/* ============================================================
   PLAY PAGE
   ============================================================ */
.play-header {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) var(--page-x) 2rem;
}
.play-header p.disclaimer-tag {
  font-family: var(--font-display);
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.play-header .section-title { max-width: 540px; margin: .5rem auto 0; }

.play-stats {
  position: relative; z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  flex-wrap: wrap;
  padding: 2rem var(--page-x) 2.5rem;
}
.play-stat { text-align: center; }
.play-stat-label {
  font-family: var(--font-display);
  font-size: .63rem;
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.play-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: -.01em;
  text-shadow: 0 0 20px rgba(201,168,76,.30);
}

.play-main {
  position: relative; z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
}
.game-card { margin-bottom: 1.5rem; }
.game-top {
  background: linear-gradient(148deg, rgba(139,92,246,.08) 0%, rgba(201,168,76,.04) 100%);
  padding: 2.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.win-message {
  min-height: 2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s;
  margin-bottom: 1rem;
  text-shadow: 0 0 22px rgba(201,168,76,.38);
}
.win-message.show { opacity: 1; }

.reels { display: flex; justify-content: center; gap: .8rem; }
.reel {
  width: 88px; height: 88px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  overflow: hidden;
  position: relative;
}
.reel.spinning .reel-sym { animation: sym-blur .07s steps(1) infinite; }
.reel.win-reel {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(201,168,76,.40), 0 0 44px rgba(139,92,246,.16);
  animation: reel-pulse .5s ease 3;
}
@keyframes reel-pulse {
  0%,100% { box-shadow: 0 0 24px rgba(201,168,76,.40); }
  50%      { box-shadow: 0 0 50px rgba(139,92,246,.28); }
}
@keyframes sym-blur { to {} }

.game-controls { padding: 1.8rem 2.5rem; }
.bet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bet-row-label {
  font-family: var(--font-display);
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bet-options { display: flex; gap: .5rem; flex-wrap: wrap; }
.bet-opt {
  padding: .34rem .9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s;
}
.bet-opt:hover, .bet-opt.active {
  border-color: var(--purple);
  color: var(--accent-bright);
  background: var(--purple-dim);
  box-shadow: 0 0 12px rgba(139,92,246,.20);
}
.spin-row { display: flex; justify-content: center; }
.spin-btn-el { min-width: 200px; justify-content: center; font-size: .9rem; }
.spin-icon-el { display: inline-block; transition: transform .2s; }

.paytable {
  padding: 1.5rem 2.5rem 2.2rem;
  border-top: 1px solid var(--border);
}
.paytable h3 {
  font-family: var(--font-display);
  font-size: .63rem;
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.paytable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .6rem;
}
.pay-item { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-2); }
.pay-mult { color: var(--accent-bright); font-weight: 600; }

.play-disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.6rem;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.68;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 8.5rem) var(--page-x) clamp(3rem, 6vw, 4.8rem);
}
.contact-hero .section-title { max-width: 520px; margin: .5rem auto 1.25rem; }
.contact-hero .section-body { margin: 0 auto; }

.contact-main {
  position: relative; z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
}
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 2.5rem;
}
.contact-info-card { padding: 1.9rem; }
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: .9rem 0 .3rem;
}
.contact-info-card .info-sub { font-size: .8rem; color: var(--muted); margin-bottom: .4rem; }
.contact-info-card .info-val { font-size: .92rem; color: var(--accent-bright); font-weight: 500; text-decoration: none; }
.contact-info-card a.info-val:hover { text-decoration: underline; }

.form-wrap { margin-bottom: 1.5rem; }
.form-wrap-header {
  padding: 2.2rem 2.8rem 1.6rem;
  border-bottom: 1px solid var(--border);
}
.form-wrap-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .38rem;
}
.form-wrap-header p { font-size: .9rem; color: var(--text-2); }
.form-body { padding: 2.2rem 2.8rem 2.8rem; }

.field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-bottom: 1.3rem;
}
.field { display: flex; flex-direction: column; gap: .44rem; margin-bottom: 1.3rem; }
.field:last-child { margin-bottom: 0; }
.field label {
  font-family: var(--font-display);
  font-size: .70rem;
  color: var(--text-2);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.field label .req { color: var(--purple-bright); margin-left: 1px; }
.field input,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .82rem 1.05rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,.14);
}
.field input.invalid,
.field textarea.invalid { border-color: var(--error); }
.field textarea { min-height: 150px; resize: none; line-height: 1.65; }
.field-error { font-size: .76rem; color: var(--error); display: none; }
.field-error.show { display: block; }

.submit-row { display: flex; justify-content: flex-end; margin-top: 1.8rem; }
.success-note {
  display: none;
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.22);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-size: .9rem;
  color: var(--success);
  text-align: center;
  margin-top: 1.3rem;
}
.success-note.show { display: block; }

.rp-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.6rem;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.rp-note a { color: var(--accent-bright); text-decoration: none; }
.rp-note a:hover { text-decoration: underline; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 8.5rem) var(--page-x) clamp(3rem, 6vw, 4.8rem);
}
.legal-hero .section-title { max-width: 600px; margin: .5rem auto 1.25rem; }
.legal-hero .section-body { margin: 0 auto; }

.legal-main {
  position: relative; z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
  display: grid;
  gap: 1.3rem;
}
.legal-card { padding: 2rem 2.2rem; }
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.legal-card p,
.legal-card li { color: var(--text-2); font-size: .93rem; line-height: 1.80; }
.legal-card ul { list-style: disc; margin-left: 1.25rem; }
.legal-card a { color: var(--accent-bright); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER (shared)
   ============================================================ */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3.8rem var(--page-x) 2.2rem;
  background: rgba(5,5,10,.75);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-disclaimer {
  font-size: .78rem;
  color: var(--muted);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  max-width: 680px;
  line-height: 1.67;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand-tagline {
  font-size: .84rem;
  color: var(--muted);
  margin-top: .8rem;
  max-width: 240px;
  line-height: 1.62;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a {
  font-size: .84rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-socials a {
  font-size: 0.70rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.footer-socials a:hover {
  color: var(--accent-bright);
  border-color: rgba(201,168,76,.26);
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--purple);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  color: var(--purple-bright);
  letter-spacing: .01em;
  box-shadow: 0 0 12px rgba(139,92,246,.20);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .features-grid,
  .how-steps      { grid-template-columns: 1fr 1fr; }
  .pillars-grid   { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .bonus-grid     { grid-template-columns: 1fr; }
  .about-grid,
  .support-inner,
  .commitment-inner { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(5,5,10,.97);
    backdrop-filter: blur(26px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem var(--page-x);
    gap: 1.2rem;
    z-index: 499;
  }
  .nav-toggle { display: flex; }
  .features-grid,
  .how-steps          { grid-template-columns: 1fr; }
  .pillars-grid       { grid-template-columns: 1fr; }
  .contact-info-row   { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .field-duo          { grid-template-columns: 1fr; }
  .form-body          { padding: 1.5rem; }
  .form-wrap-header   { padding: 1.6rem; }
  .legal-card         { padding: 1.5rem; }
  .reels              { gap: .5rem; }
  .reel               { width: 64px; height: 64px; font-size: 1.75rem; }
  .preview-reel       { width: 58px; height: 58px; font-size: 1.5rem; }
  .about-stats        { grid-template-columns: 1fr 1fr; }
  .bonus-timer-pill   { flex-direction: column; align-items: flex-start; }
  .bonus-actions      { flex-direction: column; }
}

@media (max-width: 380px) {
  .reel   { width: 54px; height: 54px; font-size: 1.5rem; }
  .reels  { gap: .35rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .aurora-blob { animation: none !important; }
  .reveal { transition: none !important; transform: none !important; opacity: 1 !important; }
  .bonus-timer-value.low-time { animation: none !important; }
  .bonus-redeem-spinning { animation: none !important; }
  .btn-primary:hover::after { animation: none !important; }
}
