/* ============================================================
   LunaReels – Global Stylesheet
   Virtual Slots & Entertainment | lunareels.com
   ============================================================ */

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

:root {
  /* Palette */
  --bg:          #f6f7ff;
  --bg-2:        #eef1ff;
  --surface:     #ffffff;
  --surface-2:   #f7f9ff;
  --border:      #dde3ff;
  --border-2:    #cfd8ff;
  --accent:      #6a5cff;
  --accent-dim:  rgba(106,92,255,.12);
  --accent-glow: rgba(106,92,255,.25);
  --gold:        #ff9f43;
  --gold-dim:    rgba(255,159,67,.16);
  --sky:         #4cc9f0;
  --sky-dim:     rgba(76,201,240,.12);
  --text:        #1d2340;
  --text-2:      #4f5c8a;
  --muted:       #6f7aa4;
  --error:       #d14343;
  --success:     #1f9d67;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Manrope', sans-serif;

  /* Spacing */
  --page-x: clamp(1.25rem, 6vw, 5rem);
  --section-y: clamp(4rem, 9vw, 7rem);
  --radius-lg: 22px;
  --radius-md: 14px;
  --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(circle at 20% -10%, #dcd7ff 0%, transparent 35%),
              radial-gradient(circle at 95% 20%, #cfeeff 0%, transparent 30%),
              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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%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(90px);
  opacity: .55;
  animation: aurora-drift 22s ease-in-out infinite alternate;
}

.nav-logo-img,
.footer-logo-img { display: none; }
.aurora-blob-1 {
  width: 700px; height: 500px;
  top: -180px; left: -120px;
  background: radial-gradient(ellipse, rgba(56,217,169,.18) 0%, transparent 70%);
}
.aurora-blob-2 {
  width: 600px; height: 420px;
  top: 30px; right: -150px;
  background: radial-gradient(ellipse, rgba(125,211,252,.12) 0%, transparent 70%);
  animation-delay: -7s;
  animation-duration: 18s;
}
.aurora-blob-3 {
  width: 400px; height: 300px;
  bottom: 10%; left: 30%;
  background: radial-gradient(ellipse, rgba(244,200,64,.07) 0%, transparent 70%);
  animation-delay: -14s;
  animation-duration: 26s;
}
@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4%, 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: 68px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-2);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #8b7dff 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 18px rgba(56,217,169,.35);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--text);
  line-height: 1;
}
.nav-logo-text em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: 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); }
.nav-links a.active::after { width: 100%; }

/* Age pill */
.nav-pill {
  font-size: .7rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(56,217,169,.22);
  padding: .28rem .8rem;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 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: .7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .22s var(--ease);
  cursor: pointer;
  border: none;
  letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #8b7dff 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(56,217,169,.3);
}
.btn-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(56,217,169,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #080c10;
  box-shadow: 0 0 24px rgba(244,200,64,.25);
}
.btn-gold:hover {
  opacity: .9;
  transform: translateY(-2px);
}
.btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none !important;
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.card-accent-top {
  position: relative;
  overflow: hidden;
}
.card-accent-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--sky));
}

.icon-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid rgba(56,217,169,.18);
  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(244,200,64,.18);
}

/* ── DIVIDER ── */
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, 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(5rem, 12vw, 9rem) var(--page-x) clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--border-2);
  padding: .3rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
}
.hero-eyebrow span { color: var(--accent); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.02em;
  margin-bottom: 1.6rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-title .hero-gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--muted);
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--accent); }

/* 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(160deg, #ffffff 0%, #f7f7ff 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(56,217,169,.06);
  position: relative;
  overflow: hidden;
}
.hero-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--sky));
}
.preview-label {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}
.preview-reels {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.preview-reel {
  width: 72px; height: 72px;
  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;
}
.preview-reel.lit {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(56,217,169,.25);
}
.preview-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1rem;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
}
.preview-balance-label { font-size: .75rem; color: var(--muted); }
.preview-balance-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.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.4rem 1.25rem;
  text-align: center;
}
.stat-box-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .35rem;
}
.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.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}
.feature-card {
  padding: 2rem 1.75rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 1rem 0 .6rem;
}
.feature-card p { font-size: .9rem; color: var(--text-2); line-height: 1.7; }

/* 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.5rem;
}
.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(--accent), var(--border), var(--accent));
}
.how-step { text-align: center; }
.how-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  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);
  position: relative;
  z-index: 1;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  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.1rem 1.4rem;
  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: var(--border-2);
  transform: translateX(4px);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #f5f5f5; /* 👈 əlavə et */
  display: flex;
  align-items: center;
  justify-content: center;
}
.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); }


/* 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, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--sky), transparent);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .9rem;
}
.cta-banner h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.cta-banner p { color: var(--text-2); max-width: 480px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) var(--page-x) clamp(3.5rem, 6vw, 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, 4rem);
}
.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.25rem;
  max-width: 1120px;
  margin: 3rem auto 0;
}
.pillar-card { padding: 2rem 1.6rem; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: .9rem 0 .5rem;
}
.pillar-card p { font-size: .88rem; color: var(--text-2); line-height: 1.65; }

.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: 1rem 1.25rem;
  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(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}
.about-cta {
  position: relative; z-index: 1;
}

/* ============================================================
   PLAY PAGE
   ============================================================ */
.play-header {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) var(--page-x) 2rem;
}
.play-header p.disclaimer-tag {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .12em;
  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, 4rem);
  flex-wrap: wrap;
  padding: 2rem var(--page-x) 2.5rem;
}
.play-stat { text-align: center; }
.play-stat-label {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.play-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.02em;
}

.play-main {
  position: relative; z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--page-x) 6rem;
}

.game-card { margin-bottom: 1.5rem; }
.game-top {
  background: linear-gradient(150deg, rgba(56,217,169,.06) 0%, rgba(125,211,252,.04) 100%);
  padding: 2.25rem;
  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);
  opacity: 0;
  transition: opacity .3s;
  margin-bottom: 1rem;
}
.win-message.show { opacity: 1; }

.reels {
  display: flex;
  justify-content: center;
  gap: .75rem;
}
.reel {
  width: 86px; height: 86px;
  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 20px rgba(56,217,169,.3);
  animation: reel-pulse .5s ease 3;
}
@keyframes reel-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(56,217,169,.3); }
  50%      { box-shadow: 0 0 40px rgba(56,217,169,.6); }
}
@keyframes sym-blur { to {} }

.game-controls { padding: 1.75rem 2.25rem; }
.bet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bet-row-label {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.bet-options { display: flex; gap: .5rem; flex-wrap: wrap; }
.bet-opt {
  padding: .32rem .85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}
.bet-opt:hover, .bet-opt.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.spin-row { display: flex; justify-content: center; }
.spin-btn-el {
  min-width: 200px;
  justify-content: center;
  font-size: 1rem;
}
.spin-icon-el { display: inline-block; transition: transform .2s; }

.paytable {
  padding: 1.5rem 2.25rem 2rem;
  border-top: 1px solid var(--border);
}
.paytable h3 {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .12em;
  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); font-weight: 500; }

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) var(--page-x) clamp(3rem, 6vw, 4.5rem);
}
.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.25rem;
  margin-bottom: 2.5rem;
}
.contact-info-card { padding: 1.75rem; }
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  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); 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: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.form-wrap-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .35rem;
}
.form-wrap-header p { font-size: .9rem; color: var(--text-2); }
.form-body { padding: 2rem 2.5rem 2.5rem; }

.field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.25rem; }
.field:last-child { margin-bottom: 0; }
.field label {
  font-size: .78rem;
  color: var(--text-2);
  letter-spacing: .05em;
  font-weight: 400;
}
.field label .req { color: var(--accent); margin-left: 1px; }
.field input,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .78rem 1rem;
  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(--accent);
  box-shadow: 0 0 0 3px rgba(56,217,169,.1);
}
.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.75rem; }
.success-note {
  display: none;
  background: rgba(74,222,128,.07);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--success);
  text-align: center;
  margin-top: 1.25rem;
}
.success-note.show { display: block; }

.rp-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.rp-note a { color: var(--accent); 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, 8rem) var(--page-x) clamp(3rem, 6vw, 4.5rem);
}
.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.25rem;
}

.legal-card {
  padding: 1.8rem 2rem;
}

.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-2);
  font-size: .93rem;
  line-height: 1.75;
}

.legal-card ul {
  list-style: disc;
  margin-left: 1.25rem;
}

.legal-card a {
  color: var(--accent);
  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.5rem var(--page-x) 2rem;
}
.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.65;
}
.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: .75rem;
  max-width: 240px;
  line-height: 1.6;
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  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.72rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ============================================================
   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; }
  .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: 68px; left: 0; right: 0;
    background: rgba(8,12,16,.97);
    backdrop-filter: blur(20px);
    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.5rem; }
  .legal-card { padding: 1.4rem; }
  .reels { gap: .5rem; }
  .reel { width: 62px; height: 62px; font-size: 1.75rem; }
  .preview-reel { width: 56px; height: 56px; font-size: 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

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