/* ============================================================
   JUMPYARDGARDEN — NEON JUNGLE GLASS DESIGN SYSTEM
   styles.css
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --bg-primary: #050a08;
  --bg-secondary: #0b1f18;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-sm: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(255, 255, 255, 0.22);
  --blur: blur(20px);
  --blur-sm: blur(12px);

  --green-start: #22c55e;
  --green-end: #4ade80;
  --yellow-start: #facc15;
  --yellow-end: #fde047;
  --orange-start: #f97316;
  --orange-end: #fb923c;

  --grad-green: linear-gradient(135deg, #22c55e, #4ade80);
  --grad-yellow: linear-gradient(135deg, #facc15, #fde047);
  --grad-orange: linear-gradient(135deg, #f97316, #fb923c);
  --grad-premium: linear-gradient(135deg, #22c55e, #facc15);
  --grad-hero: linear-gradient(135deg, #22c55e 0%, #facc15 50%, #f97316 100%);

  --glow-green: rgba(34, 197, 94, 0.4);
  --glow-yellow: rgba(250, 204, 21, 0.4);
  --glow-orange: rgba(249, 115, 22, 0.35);

  --text-primary: #ecfdf5;
  --text-secondary: #d1fae5;
  --text-muted: #6b7280;
  --text-dim: #9ca3af;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1280px;
  --header-h: 80px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--glow-green); color: var(--text-primary); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(34,197,94,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(34,197,94,0.7); }

/* ── PARTICLES ── */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ── LEAVES ── */
.leaves-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.leaf {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: leafFloat 12s ease-in-out infinite;
  filter: drop-shadow(0 0 6px var(--glow-green));
}
.leaf-1 { top: 10%; left: 5%; animation-delay: 0s; animation-duration: 14s; }
.leaf-2 { top: 25%; right: 8%; animation-delay: 2s; animation-duration: 11s; }
.leaf-3 { top: 55%; left: 3%; animation-delay: 4s; animation-duration: 13s; }
.leaf-4 { top: 70%; right: 5%; animation-delay: 6s; animation-duration: 10s; }
.leaf-5 { top: 40%; left: 92%; animation-delay: 1s; animation-duration: 15s; }
.leaf-6 { top: 85%; left: 15%; animation-delay: 3s; animation-duration: 12s; }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  25% { transform: translateY(-20px) rotate(10deg); opacity: 0.6; }
  50% { transform: translateY(-8px) rotate(-5deg); opacity: 0.3; }
  75% { transform: translateY(-30px) rotate(8deg); opacity: 0.5; }
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── GLASS CARDS ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(34,197,94,0.08);
}
.glass-card-sm {
  background: var(--glass-bg-sm);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.glass-card-sm:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ── GRADIENT TEXTS ── */
.gradient-text-primary {
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-yellow {
  background: var(--grad-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-orange {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--grad-premium);
  color: #050a08;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}
.btn-primary::before { background: linear-gradient(135deg, #4ade80, #facc15); }
.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(34,197,94,0.55), 0 0 20px rgba(250,204,21,0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 0 20px rgba(34,197,94,0.15);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1240px;
  z-index: 1000;
  background: rgba(5, 10, 8, 0.7);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  transition: var(--transition-slow);
}
.header.scrolled {
  top: 8px;
  background: rgba(5, 10, 8, 0.9);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 20px rgba(34,197,94,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px var(--glow-green));
  animation: monkeyBob 3s ease-in-out infinite;
}
@keyframes monkeyBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.logo-text { display: flex; font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; }
.logo-name { color: var(--text-primary); }
.logo-accent { background: var(--grad-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Nav */
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad-green);
  border-radius: 1px;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--glow-green);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(34,197,94,0.08);
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.header-cta { padding: 10px 22px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  border-top: 0px solid var(--glass-border);
}
.mobile-nav.open {
  max-height: 400px;
  border-top: 1px solid var(--glass-border);
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
}
.mobile-nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-nav-link:hover { background: rgba(34,197,94,0.08); color: var(--text-primary); }
.mobile-cta { margin-top: 8px; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-jungle {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(34,197,94,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(250,204,21,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(249,115,22,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #050a08 0%, #0b1f18 40%, #071a10 70%, #050a08 100%);
}
.hero-bg-rays {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 200deg at 70% 20%, transparent 0deg, rgba(34,197,94,0.04) 20deg, transparent 40deg, rgba(250,204,21,0.03) 60deg, transparent 80deg);
  animation: raysRotate 20s linear infinite;
}
@keyframes raysRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,10,8,0.3) 0%, transparent 40%, rgba(5,10,8,0.6) 100%);
}
.vines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.vine {
  position: absolute;
  top: 0;
  width: 3px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(34,197,94,0.3), transparent);
  border-radius: 2px;
}
.vine::before, .vine::after {
  content: '';
  position: absolute;
  bottom: -20px;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(34,197,94,0.2);
  border-radius: 50%;
}
.vine-left { left: 8%; animation: vineSwing 4s ease-in-out infinite; }
.vine-right { right: 8%; animation: vineSwing 4s ease-in-out infinite reverse; }
@keyframes vineSwing {
  0%, 100% { transform-origin: top center; transform: rotate(-8deg); }
  50% { transform-origin: top center; transform: rotate(8deg); }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-end);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-start);
  box-shadow: 0 0 8px var(--glow-green);
  animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 8px var(--glow-green); transform: scale(1); }
  50% { box-shadow: 0 0 16px var(--glow-green); transform: scale(1.2); }
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-left: 2px solid rgba(34,197,94,0.3);
  padding-left: 12px;
  line-height: 1.5;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
.hero-game-card {
  padding: 30px;
  width: 100%;
  max-width: 400px;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-monkey-scene { text-align: center; position: relative; }
.monkey-emoji-display {
  font-size: 5rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px var(--glow-green));
  animation: monkeyWiggle 2s ease-in-out infinite;
}
@keyframes monkeyWiggle {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
}
.jungle-orbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.orb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: orbBlink 2s ease infinite;
}
.orb-green { background: var(--green-start); box-shadow: 0 0 12px var(--glow-green); }
.orb-yellow { background: var(--yellow-start); box-shadow: 0 0 12px var(--glow-yellow); animation-delay: 0.4s; }
.orb-orange { background: var(--orange-start); box-shadow: 0 0 12px var(--glow-orange); animation-delay: 0.8s; }
@keyframes orbBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Slot Preview */
.slot-preview {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
}
.reel-row { display: flex; gap: 4px; justify-content: center; }
.reel-item {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.reel-spin { animation: reelSpin 1.5s ease-in-out infinite alternate; }
@keyframes reelSpin {
  0% { transform: translateY(0); filter: brightness(0.8); }
  100% { transform: translateY(-4px); filter: brightness(1.2); }
}

.hero-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Floating Coins */
.floating-coins { position: absolute; inset: 0; pointer-events: none; }
.coin {
  position: absolute;
  font-size: 1.4rem;
  animation: coinFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 8px var(--glow-yellow));
}
.coin-1 { top: 10%; left: 5%; animation-delay: 0s; }
.coin-2 { top: 20%; right: 10%; animation-delay: 1s; }
.coin-3 { bottom: 25%; left: 8%; animation-delay: 2s; }
.coin-4 { bottom: 15%; right: 5%; animation-delay: 3s; }
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(120deg); }
  66% { transform: translateY(8px) rotate(240deg); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 20px;
  height: 36px;
  border: 2px solid rgba(34,197,94,0.4);
  border-radius: 10px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--green-start);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  background: linear-gradient(to right, rgba(5,10,8,0) 0%, rgba(34,197,94,0.04) 50%, rgba(5,10,8,0) 100%);
  border-top: 1px solid rgba(34,197,94,0.08);
  border-bottom: 1px solid rgba(34,197,94,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-item {
  padding: 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SECTIONS COMMON ── */
section { position: relative; z-index: 2; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-end);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── GAME SECTION ── */
.game-section { padding: 120px 0; }
.game-card { padding: 2px; background: linear-gradient(135deg, rgba(34,197,94,0.3), rgba(250,204,21,0.15), rgba(249,115,22,0.2)); }
.game-card-glow-border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(34,197,94,0.4), transparent, rgba(250,204,21,0.3));
  z-index: -1;
  filter: blur(1px);
}
.game-preview-area {
  background: rgba(5,10,8,0.8);
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
}
.game-scene {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(34,197,94,0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(7,26,16,0.9), rgba(5,10,8,0.95));
}
.game-scene-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(34,197,94,0.02) 40px, rgba(34,197,94,0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(34,197,94,0.02) 40px, rgba(34,197,94,0.02) 41px);
}
.game-preview-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 50px 40px;
}
.game-big-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px var(--glow-green));
  animation: gameIconPulse 3s ease-in-out infinite;
}
@keyframes gameIconPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--glow-green)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 30px var(--glow-green)) drop-shadow(0 0 15px var(--glow-yellow)); }
}
.game-preview-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--grad-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.game-preview-subtitle { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 24px; }
.game-features-mini {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.mini-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.game-play-btn { font-size: 1.1rem; padding: 18px 40px; }

/* ── FEATURES SECTION ── */
.features-section { padding: 120px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.feature-icon-green { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); }
.feature-icon-yellow { background: rgba(250,204,21,0.1); border: 1px solid rgba(250,204,21,0.22); }
.feature-icon-orange { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.22); }
.feature-icon { font-size: 1.8rem; }
.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }
.feature-glow {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover .feature-glow { opacity: 0.5; }
.feature-glow-green { background: var(--glow-green); }
.feature-glow-yellow { background: var(--glow-yellow); }
.feature-glow-orange { background: var(--glow-orange); }

/* ── CTA BANNER ── */
.cta-banner { padding: 80px 0; }
.cta-banner-inner {
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 30% 50%, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.cta-banner-desc { color: var(--text-dim); margin-bottom: 28px; font-size: 1rem; }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 16px var(--glow-green));
  animation: ctaEmojiBob 3s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ctaEmojiBob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* ── FOOTER ── */
.footer {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
  background: linear-gradient(to bottom, transparent, rgba(7,26,16,0.3));
  border-top: 1px solid var(--glass-border);
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand { max-width: 300px; }
.footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.footer-legal-small { font-size: 0.78rem; color: var(--text-muted); opacity: 0.7; }
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-end);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--text-primary); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-disclaimer { font-size: 0.76rem !important; opacity: 0.6; }

/* ── PAGE HERO ── */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(34,197,94,0.1) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(5,10,8,0), rgba(5,10,8,0.3));
}
.page-hero-content { max-width: 700px; margin: 0 auto; }
.page-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero-desc { font-size: 1.05rem; color: var(--text-dim); max-width: 500px; margin: 0 auto; }
.game-page-hero {
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(34,197,94,0.12) 0%, rgba(250,204,21,0.04) 40%, transparent 70%),
    linear-gradient(to bottom, rgba(5,10,8,0), rgba(5,10,8,0.5));
}

/* ── GAME EMBED ── */
.game-embed-section { padding: 20px 0 80px; }
.game-embed-wrapper { padding: 0; overflow: hidden; }
.game-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--glass-border);
  gap: 20px;
  flex-wrap: wrap;
}
.game-embed-title-wrap { display: flex; align-items: center; gap: 14px; }
.game-embed-icon { font-size: 2rem; filter: drop-shadow(0 0 10px var(--glow-green)); }
.game-embed-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--grad-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.game-embed-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-end);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.game-embed-controls { display: flex; gap: 10px; flex-wrap: wrap; }
.game-ctrl-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.game-ctrl-btn:hover {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: var(--text-primary);
}
.game-iframe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  min-height: 480px;
}
.game-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.game-embed-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.2);
}
.game-legal-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── HOW TO PLAY MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5,10,8,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  width: 100%;
  max-width: 560px;
  padding: 40px;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition);
}
.modal-close:hover { background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.3); color: var(--text-primary); }
.modal-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.modal-icon { font-size: 2.4rem; filter: drop-shadow(0 0 12px var(--glow-green)); }
.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.modal-content { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.how-to-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #050a08;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.step-content p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.modal-footer { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.modal-legal { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* ── GAME FEATURES SECTION ── */
.game-features-section { padding: 80px 0; }
.game-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-feat-card {
  padding: 28px 24px;
  text-align: center;
}
.game-feat-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; filter: drop-shadow(0 0 8px var(--glow-green)); }
.game-feat-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.game-feat-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ── ABOUT PAGE ── */
.about-section { padding: 40px 0 120px; }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-bottom: 60px; align-items: start; }
.about-content { display: flex; flex-direction: column; gap: 24px; }
.about-block { padding: 36px; }
.about-block-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.about-block p { font-size: 0.93rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 14px; }
.about-block p:last-child { margin-bottom: 0; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-card { padding: 20px; text-align: center; }
.value-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.value-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.value-card p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }
.about-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 40px 0 120px; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.contact-card { padding: 40px; }
.contact-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.03em; }
.form-input, .form-textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus {
  border-color: rgba(34,197,94,0.5);
  background: rgba(34,197,94,0.04);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.form-success {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-end);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { padding: 22px 20px; }
.contact-info-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.contact-info-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.contact-info-card p { font-size: 0.83rem; color: var(--text-dim); line-height: 1.6; }

/* ── LEGAL PAGES ── */
.legal-section { padding: 40px 0 120px; }
.legal-content { padding: 50px; max-width: 900px; margin: 0 auto; }
.legal-block { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.legal-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-block h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-block h2::before { content: ''; display: inline-block; width: 4px; height: 18px; background: var(--grad-green); border-radius: 2px; }
.legal-block p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { margin: 12px 0 12px 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-block ul li { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; position: relative; padding-left: 16px; }
.legal-block ul li::before { content: '▸'; position: absolute; left: -4px; color: var(--green-start); font-size: 0.75rem; }
.legal-link { color: var(--green-end); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal-link:hover { color: var(--yellow-end); }

/* ── RESPONSIBLE GAMING ── */
.responsible-section { padding: 40px 0 120px; }
.responsible-alert {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  margin-bottom: 50px;
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.06);
}
.alert-icon { font-size: 2.8rem; filter: drop-shadow(0 0 12px var(--glow-green)); flex-shrink: 0; }
.alert-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.alert-content p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.responsible-card { padding: 32px 28px; }
.resp-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.resp-green { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); }
.resp-yellow { background: rgba(250,204,21,0.08); border: 1px solid rgba(250,204,21,0.2); }
.resp-orange { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); }
.responsible-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.responsible-card > p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.resp-tips { display: flex; flex-direction: column; gap: 7px; }
.resp-tips li { font-size: 0.83rem; color: var(--text-muted); padding-left: 16px; position: relative; line-height: 1.5; }
.resp-tips li::before { content: '•'; position: absolute; left: 0; color: var(--green-start); }
.responsible-resources { padding: 36px; margin-top: 20px; }
.resources-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}
.resources-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.resource-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  min-width: 200px;
  cursor: pointer;
}
.resource-link:hover { transform: translateY(-4px); }
.resource-link span:first-child { font-size: 1.6rem; }
.resource-link strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.resource-link span:last-child { font-size: 0.8rem; color: var(--text-muted); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay { transition-delay: 0.15s; }
.fade-up-delay-2 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */

/* TABLET */
@media (max-width: 1024px) {
  .nav-desktop { gap: 2px; }
  .nav-link { padding: 8px 12px; font-size: 0.85rem; }
  .hero-container { grid-template-columns: 1fr; gap: 50px; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-subtext { margin-left: auto; margin-right: auto; }
  .hero-legal { text-align: center; border-left: none; border-top: 2px solid rgba(34,197,94,0.3); padding-left: 0; padding-top: 12px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .game-features-grid { grid-template-columns: repeat(2, 1fr); }
  .responsible-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE */
@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .header { top: 10px; width: calc(100% - 24px); border-radius: 20px; }
  .header-inner { padding: 12px 18px; }
  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-game-card { padding: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-number { font-size: 1.5rem; }
  .game-section, .features-section { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; padding: 40px 24px; }
  .cta-banner-btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { max-width: 100%; }
  .page-hero { padding: calc(var(--header-h) + 50px) 0 50px; }
  .game-embed-header { flex-direction: column; align-items: flex-start; }
  .game-iframe-container { min-height: 280px; }
  .game-features-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .about-values { grid-template-columns: 1fr; }
  .legal-content { padding: 28px 20px; }
  .responsible-grid { grid-template-columns: 1fr; }
  .resources-grid { flex-direction: column; align-items: center; }
  .resource-link { width: 100%; max-width: 320px; }
  .responsible-alert { flex-direction: column; text-align: center; }
  .modal-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .slot-preview { display: none; }
  .contact-card { padding: 24px 20px; }
}
/* ENDFILE */