/* ==========================================================================
   NéonSpins Club — Dark adaptation of Mintlify's documentation-airy aesthetic
   Base: 8px scale, 16/24/9999 radii, 5-10% opacity borders, tight neg tracking
   ========================================================================== */

:root {
  --primary: #18E299;
  --primary-deep: #0fa76e;
  --primary-light: #d4fae8;
  --primary-rgb: 24,226,153;
  --bg: #0a0d0f;
  --surface: #14181b;
  --surface-raised: #1a1f23;
  --text: #edf0f2;
  --text-muted: #8a9097;
  --text-tertiary: #6b7075;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.1);
  --max-width: 1240px;
  --font-display: 'Clash Display', 'Playfair Display', serif;
  --font-body: 'Geist', 'Satoshi', sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', monospace;

  /* Mintlify-grade radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 9999px;

  /* Mintlify shadows — tinted with primary, whisper-quiet */
  --shadow-subtle: 0 2px 4px rgba(var(--primary-rgb), 0.03);
  --shadow-medium: 0 4px 16px rgba(var(--primary-rgb), 0.08);
  --shadow-heavy: 0 8px 32px rgba(var(--primary-rgb), 0.15);
  --shadow-glow: 0 0 24px rgba(var(--primary-rgb), 0.28);

  --speed-fast: 0.15s ease;
  --speed-normal: 0.3s ease-out;
  --speed-slow: 0.5s ease-out;

  --card-lift: -4px;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-section: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--speed-fast); }
a:hover { color: var(--primary); }
button { font-family: inherit; cursor: pointer; }

.nsc-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.nsc-section { padding: var(--sp-section) 0; position: relative; }

/* ==========================================================================
   COMPLIANCE STRIP — Fixed top, Mintlify uppercase mono tracking
   ========================================================================== */
.nsc-compliance-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9997;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.9px;
  color: var(--text-muted);
  background: rgba(10,13,15,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  text-align: center;
  padding: 0 var(--sp-3);
}

/* ==========================================================================
   HEADER / NAV — Sticky with backdrop-blur (Mintlify signature)
   ========================================================================== */
.nsc-header {
  position: fixed;
  top: 34px;
  left: 0; right: 0;
  z-index: 9996;
  background: rgba(10,13,15,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--speed-normal), border-color var(--speed-normal);
}
.nsc-header--scrolled {
  background: rgba(10,13,15,0.92);
  border-bottom-color: var(--border-strong);
}
.nsc-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px var(--sp-4);
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}
.nsc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text);
  flex-shrink: 0;
}
.nsc-logo-icon { font-size: 1.5rem; line-height: 1; }
.nsc-logo:hover { color: var(--primary); }

.nsc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: var(--sp-3);
}
.nsc-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  transition: all var(--speed-fast);
}
.nsc-nav a:hover {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
}

.nsc-auth { display: flex; align-items: center; gap: 10px; }
.nsc-chip-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.nsc-chip-icon { font-size: 1rem; line-height: 1; }

.nsc-user-name {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nsc-user-level {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-left: 8px;
}
.nsc-xp-container { display: none; }

.nsc-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 8px 12px;
  font-size: 1.1rem;
  margin-left: auto;
}

.nsc-nav-mobile {
  display: none;
  position: fixed;
  top: 104px;
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) var(--sp-4);
  z-index: 9995;
}
.nsc-nav-mobile.open { display: block; }
.nsc-nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nsc-nav-mobile a:last-child { border-bottom: none; }
.nsc-nav-mobile-auth { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--border); }
.nsc-nav-mobile-user { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--border); }
.nsc-nav-mobile-username { font-size: 0.9rem; font-weight: 500; }

main { padding-top: 104px; }

/* ==========================================================================
   BUTTONS — Full-pill Mintlify signature
   ========================================================================== */
.nsc-btn, .nsc-btn-mint, .nsc-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all var(--speed-fast);
  white-space: nowrap;
  cursor: pointer;
}
.nsc-btn-mint {
  background: var(--primary);
  color: #0a0d0f;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.nsc-btn-mint:hover {
  background: #1aff9e;
  box-shadow: var(--shadow-glow);
  color: #0a0d0f;
}
.nsc-btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.nsc-btn-ghost:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
}
.nsc-btn-lg {
  font-size: 1rem;
  padding: 14px 28px;
}

/* ==========================================================================
   HERO — Atmospheric gradient wash, Mintlify-style airy centered
   ========================================================================== */
.nsc-hero {
  position: relative;
  padding: var(--sp-12) 0 var(--sp-10);
  overflow: hidden;
  isolation: isolate;
}
.nsc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(var(--primary-rgb), 0.12), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(var(--primary-rgb), 0.04), transparent 50%),
    linear-gradient(180deg, rgba(var(--primary-rgb), 0.03), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.nsc-hero--aurora::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(var(--primary-rgb), 0.4) 0%,
    transparent 15%,
    rgba(var(--primary-rgb), 0.3) 30%,
    transparent 45%,
    rgba(var(--primary-rgb), 0.4) 60%,
    transparent 75%
  );
  opacity: 0.06;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: heroAurora 20s linear infinite;
}
@keyframes heroAurora { to { transform: rotate(360deg); } }

.nsc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--sp-4);
}
.nsc-hero-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.nsc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.28px;
  color: var(--text);
  margin-bottom: var(--sp-3);
}
.nsc-hero h1 .nsc-highlight {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #1aff9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nsc-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--sp-4);
}
.nsc-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.nsc-hero-trust {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.nsc-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   STATS BAR — Mintlify mono uppercase, subtle border
   ========================================================================== */
.nsc-stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
}
.nsc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
.nsc-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.8px;
  color: var(--text);
  line-height: 1.1;
}
.nsc-stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.85px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   LIVE TICKER
   ========================================================================== */
.nsc-ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  background: rgba(255,255,255,0.015);
}
.nsc-ticker-track {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.nsc-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 var(--sp-4);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.nsc-ticker-item::after {
  content: '·';
  margin-left: var(--sp-4);
  color: var(--text-tertiary);
}
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTION HEADING — Mintlify with label above
   ========================================================================== */
.nsc-section-head {
  text-align: center;
  margin-bottom: var(--sp-6);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.nsc-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}
.nsc-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.nsc-section-head p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================================
   GAME GRID / CARDS — Mintlify card style adapted for casino
   ========================================================================== */
.nsc-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.nsc-game-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--speed-normal);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
}
.nsc-game-card:hover {
  transform: translateY(var(--card-lift));
  border-color: var(--border-strong);
  box-shadow: var(--shadow-medium);
}
.nsc-game-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-raised);
}
.nsc-game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nsc-game-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,13,15,0.78) 100%);
  pointer-events: none;
}
.nsc-game-emoji {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.nsc-game-info, .nsc-game-body {
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
}
.nsc-game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
/* Hidden XP bar elements (chip economy mode) — kept for template compat */
.nsc-xp-bar { display: none; }
.nsc-xp-fill { display: none; }
.nsc-xp-text { display: none; }
.nsc-game-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text);
  margin-bottom: 4px;
}
.nsc-game-meta {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nsc-game-play {
  background: var(--primary);
  color: #0a0d0f;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-top: 12px;
  cursor: pointer;
  transition: all var(--speed-fast);
}
.nsc-game-play:hover { background: #1aff9e; box-shadow: var(--shadow-glow); }

/* Game badges — Mintlify full-pill style */
.nsc-badge-hot, .nsc-badge-new, .nsc-badge-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid;
}
.nsc-badge-hot {
  background: rgba(255, 45, 120, 0.15);
  color: #ff6d9d;
  border-color: rgba(255, 45, 120, 0.35);
}
.nsc-badge-new {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.35);
}
.nsc-badge-fav {
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.35);
}

/* Game filter bar */
.nsc-filter-bar, .nsc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.nsc-filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--speed-fast);
}
.nsc-filter-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}
.nsc-filter-btn--active, .nsc-filter-btn--active:hover {
  background: var(--primary);
  color: #0a0d0f;
  border-color: var(--primary);
}

/* ==========================================================================
   FEATURED 2-COL: 1 big + 2 small
   ========================================================================== */
.nsc-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-3);
}
.nsc-featured-big {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 440px;
  transition: all var(--speed-normal);
}
.nsc-featured-big:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-medium);
}
.nsc-featured-small-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.nsc-featured-small {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  flex: 1;
  min-height: 212px;
  transition: all var(--speed-normal);
}
.nsc-featured-small:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-medium);
}
.nsc-featured-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.nsc-featured-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,13,15,0.92) 100%);
}
.nsc-featured-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-4);
  z-index: 2;
}
.nsc-featured-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 8px;
}
.nsc-featured-small .nsc-featured-content h3 { font-size: 1.25rem; }
.nsc-featured-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ==========================================================================
   HOW IT WORKS — 3 step grid
   ========================================================================== */
.nsc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.nsc-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  transition: all var(--speed-normal);
}
.nsc-step:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-medium);
}
.nsc-step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}
.nsc-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.nsc-step p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================================
   FREE CHIPS PROMO — Featured card
   ========================================================================== */
.nsc-chips-promo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nsc-chips-promo::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1), transparent 70%);
  pointer-events: none;
}
.nsc-chips-promo h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: var(--sp-2);
  position: relative;
}
.nsc-chips-promo p {
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  position: relative;
}
.nsc-chips-rewards {
  position: relative;
}
.nsc-chips-rewards li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
  font-size: 0.9rem;
  color: var(--text);
}
.nsc-chips-rewards li:last-child { border-bottom: none; }
.nsc-chips-rewards strong {
  color: var(--primary);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-left: auto;
}

.nsc-chips-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  text-shadow: 0 0 60px rgba(var(--primary-rgb), 0.5);
}

/* ==========================================================================
   FAQ — Accordion
   ========================================================================== */
.nsc-faq {
  max-width: 780px;
  margin: 0 auto;
}
.nsc-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--speed-fast);
}
.nsc-faq-item:hover { border-color: var(--border-strong); }
.nsc-faq-question {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
}
.nsc-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--speed-fast);
}
.nsc-faq-item--open .nsc-faq-question::after { transform: rotate(45deg); }
.nsc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--speed-normal);
  padding: 0 var(--sp-3);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.nsc-faq-item--open .nsc-faq-answer {
  max-height: 400px;
  padding: 12px var(--sp-3) var(--sp-3);
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   ENHANCED DISCLAIMER — 4-item structured box
   ========================================================================== */
.nsc-disclaimer-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin: var(--sp-4) 0;
}
.nsc-disclaimer-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: center;
  color: var(--text);
  margin-bottom: var(--sp-4);
}
.nsc-disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.nsc-disclaimer-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.nsc-disclaimer-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.nsc-disclaimer-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.nsc-disclaimer-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.nsc-disclaimer-block > p {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.nsc-disclaimer-block > p a {
  color: var(--primary);
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.nsc-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--sp-10) 0 var(--sp-4);
  margin-top: var(--sp-8);
}
.nsc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.nsc-footer-brand .nsc-logo { margin-bottom: var(--sp-2); }
.nsc-footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 320px;
  margin-bottom: var(--sp-2);
}
.nsc-footer-age {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.nsc-footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.nsc-footer-links ul { list-style: none; }
.nsc-footer-links li { margin-bottom: 10px; }
.nsc-footer-links a {
  font-size: 0.88rem;
  color: var(--text);
}
.nsc-footer-links a:hover { color: var(--primary); }

.nsc-footer-compliance {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
}
.nsc-footer-compliance span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}
.nsc-footer-compliance a {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nsc-footer-compliance a:hover { color: var(--primary); }
.nsc-footer-disclosures {
  padding: var(--sp-3) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.nsc-footer-disclosures p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.nsc-footer-bottom {
  padding-top: var(--sp-3);
  text-align: center;
}
.nsc-footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

/* ==========================================================================
   MODALS — Mintlify roundness
   ========================================================================== */
.nsc-modal-overlay, .nsc-login-overlay, .nsc-register-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,13,15,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
  animation: modalFade 0.3s ease;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.nsc-modal-content, .nsc-login-content, .nsc-register-content {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  max-width: 480px;
  width: 100%;
  padding: var(--sp-6);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
  animation: modalScale 0.3s ease;
}
.nsc-modal-content { max-width: 960px; padding: 0; overflow: hidden; }
@keyframes modalScale { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.nsc-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  color: var(--text);
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--speed-fast);
  z-index: 5;
}
.nsc-modal-close:hover { background: rgba(255,255,255,0.06); }
.nsc-modal-header {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nsc-modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.nsc-login-content h2, .nsc-register-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: var(--sp-3);
  text-align: center;
}
.nsc-form-group {
  margin-bottom: var(--sp-2);
}
.nsc-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.nsc-form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: border-color var(--speed-fast);
}
.nsc-form-input:focus {
  outline: 1px solid var(--primary);
  border-color: var(--primary);
}

/* Bonus popup */
.nsc-bonus-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  max-width: 320px;
  box-shadow: var(--shadow-heavy);
  z-index: 9999;
  display: none;
}
.nsc-bonus-xp {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}
.nsc-bonus-streak {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ==========================================================================
   LEGAL / CONTACT PAGES
   ========================================================================== */
.nsc-heading { margin-bottom: var(--sp-4); }
.nsc-legal {
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.nsc-legal-section { margin-bottom: var(--sp-4); }
.nsc-legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text);
  margin-bottom: 12px;
}
.nsc-contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-6);
}
.nsc-contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}
.nsc-field { margin-bottom: var(--sp-2); }
.nsc-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.nsc-field input, .nsc-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-family: var(--font-body);
}
.nsc-field textarea {
  border-radius: var(--r-md);
  min-height: 120px;
  resize: vertical;
}
.nsc-field input:focus, .nsc-field textarea:focus {
  outline: 1px solid var(--primary);
  border-color: var(--primary);
}
.nsc-success {
  display: none;
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ==========================================================================
   VIP TIERS
   ========================================================================== */
.nsc-vip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
}
.nsc-vip-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  text-align: center;
  transition: all var(--speed-normal);
}
.nsc-vip-tier:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-medium);
}
.nsc-vip-tier-icon { font-size: 2.5rem; margin-bottom: 10px; }
.nsc-vip-tier h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.nsc-vip-tier-chips {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.nsc-vip-tier ul { list-style: none; padding: 0; }
.nsc-vip-tier li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.nsc-vip-tier li:first-child { border-top: none; }

/* ==========================================================================
   LEADERBOARD
   ========================================================================== */
.nsc-leaderboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.nsc-leaderboard-row {
  display: grid;
  grid-template-columns: 60px 1fr 160px 140px;
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.nsc-leaderboard-row:last-child { border-bottom: none; }
.nsc-leaderboard-head {
  background: var(--surface-raised);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nsc-leaderboard-rank {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.nsc-leaderboard-chips {
  font-family: var(--font-mono);
  color: var(--primary);
  font-weight: 600;
}
.nsc-your-rank {
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  margin-bottom: var(--sp-3);
  text-align: center;
}

/* ==========================================================================
   SPIN WHEEL (Free Chips page)
   ========================================================================== */
.nsc-wheel-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  margin: var(--sp-4) auto;
}
.nsc-wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid var(--primary);
  z-index: 10;
  filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.6));
}
.nsc-spin-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: #0a0d0f;
  border: 4px solid var(--bg);
  border-radius: var(--r-pill);
  width: 90px; height: 90px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  z-index: 10;
  transition: all var(--speed-fast);
  box-shadow: var(--shadow-heavy);
}
.nsc-spin-btn:hover { background: #1aff9e; box-shadow: var(--shadow-glow); }
.nsc-spin-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.nsc-cooldown-badge {
  display: none;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: var(--r-pill);
  padding: 12px 24px;
  text-align: center;
  margin: 0 auto var(--sp-3);
  max-width: 380px;
}
.nsc-cooldown-badge.active { display: block; }
.nsc-cooldown-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.nsc-cooldown-time {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.nsc-balance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  text-align: center;
  margin-bottom: var(--sp-3);
}
.nsc-balance-card .nsc-label { margin-bottom: 6px; }
.nsc-balance-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.8px;
}
.nsc-reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.nsc-reward-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  text-align: center;
}
.nsc-reward-card-icon { font-size: 2rem; margin-bottom: 8px; }
.nsc-reward-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}
.nsc-reward-card .nsc-reward-chips {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.nsc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.nsc-blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  transition: all var(--speed-normal);
  display: block;
}
.nsc-blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-medium);
  color: var(--text);
}
.nsc-blog-card .nsc-label { margin-bottom: 10px; }
.nsc-blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.nsc-blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.nsc-article {
  max-width: 760px;
  margin: 0 auto;
}
.nsc-article h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}
.nsc-article h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
  margin: var(--sp-4) 0 var(--sp-2);
}
.nsc-article p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.nsc-article-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}

/* ==========================================================================
   SCROLL REVEAL & FALLBACK
   ========================================================================== */
.nsc-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  animation: fallbackReveal 0s 1.5s forwards;
}
.nsc-revealed {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes fallbackReveal { to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   HERO PARTICLES CONTAINER
   ========================================================================== */
#heroParticles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .nsc-game-grid { grid-template-columns: repeat(3, 1fr); }
  .nsc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .nsc-vip-grid { grid-template-columns: repeat(3, 1fr); }
  .nsc-chips-promo { grid-template-columns: 1fr; }
  .nsc-chips-visual { font-size: 6rem; }
  .nsc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --sp-section: 56px; }
  .nsc-nav { display: none; }
  .nsc-nav-toggle { display: block; }
  .nsc-header-inner .nsc-auth { display: none; }
  .nsc-chip-counter, .nsc-user-name, .nsc-user-level { display: none; }
  .nsc-nav-mobile-auth { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--border); }
  .nsc-nav-mobile-user { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--border); }
  .nsc-game-grid { grid-template-columns: repeat(2, 1fr); }
  .nsc-featured { grid-template-columns: 1fr; }
  .nsc-steps { grid-template-columns: 1fr; }
  .nsc-hero h1 { letter-spacing: -0.8px; }
  .nsc-vip-grid { grid-template-columns: 1fr 1fr; }
  .nsc-blog-grid, .nsc-footer-grid { grid-template-columns: 1fr; }
  .nsc-disclaimer-grid { grid-template-columns: 1fr; }
  .nsc-reward-grid { grid-template-columns: 1fr; }
  .nsc-leaderboard-row { grid-template-columns: 40px 1fr 100px; }
  .nsc-leaderboard-row > *:nth-child(4) { display: none; }
  .nsc-contact-grid { grid-template-columns: 1fr; }
  .nsc-footer-disclosures { grid-template-columns: 1fr; }
  /* CSS glow fallback for mobile (disable aurora rotation) */
  .nsc-hero--aurora::after { animation: none; opacity: 0.03; }
}
