/* ===== CSS Variables ===== */
:root {
  --neon-green:  #00ff88;
  --neon-blue:   #00d4ff;
  --neon-purple: #bf00ff;
  --neon-orange: #ffaa00;
  --neon-red:    #ff3366;

  --bg-primary:   #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary:  #1a1a2e;
  --bg-hover:     #252540;

  --text-primary:   #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted:     #606070;

  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--bg-hover); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #303060; }
::selection { background: rgba(0,255,136,.25); color: #fff; }

/* ===== Utility ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple {
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.badge-green {
  background: rgba(0,20,10,.85);
  border: 1px solid rgba(0,255,136,.5);
  color: var(--neon-green);
}

.badge-blue {
  background: rgba(0,20,30,.85);
  border: 1px solid rgba(0,212,255,.5);
  color: var(--neon-blue);
}

/* ===== Animated background canvas ===== */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .45;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.3px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 20px; height: 20px; color: #0a0a0f; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), #00cc6d);
  color: #0a0a0f;
  box-shadow: 0 0 24px rgba(0,255,136,.25);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0,255,136,.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-primary);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 14px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,255,136,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-blue {
  position: absolute;
  top: 50px;
  right: -100px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,255,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-purple {
  position: absolute;
  top: 100px;
  left: -100px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(191,0,255,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== APP PREVIEW ===== */
.app-preview {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
}

.app-window {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 40px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(0,255,136,.05),
    0 0 60px rgba(0,255,136,.08);
}

.app-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red   { background: #ff5f57; }
.dot-yellow{ background: #febc2e; }
.dot-green { background: #28c840; }

.window-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.app-screen {
  padding: 28px;
}

/* Fake UI inside app window */
.fake-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fake-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fake-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-logo-text {
  font-size: 15px;
  font-weight: 700;
}

.fake-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.fake-badge-green {
  background: rgba(0,255,136,.15);
  border: 1px solid rgba(0,255,136,.3);
  color: var(--neon-green);
}

.fake-badge-blue {
  background: rgba(0,212,255,.15);
  border: 1px solid rgba(0,212,255,.3);
  color: var(--neon-blue);
}

.fake-status-card {
  background: linear-gradient(135deg, rgba(139,69,19,.1) 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fake-mc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5b8731 0%, #3e6b1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.fake-status-info { flex: 1; }

.fake-status-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.fake-status-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.fake-connect-card {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fake-address {
  font-family: monospace;
  font-size: 15px;
  color: var(--neon-blue);
  font-weight: 600;
}

.fake-copy-btn {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,212,255,.12);
  border: 1px solid rgba(0,212,255,.25);
  color: var(--neon-blue);
  cursor: pointer;
}

/* ===== SECTION COMMON ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.section-eyebrow {
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(0,255,136,.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 30px rgba(0,255,136,.07);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-green  { background: rgba(0,255,136,.12); }
.icon-blue   { background: rgba(0,212,255,.12); }
.icon-purple { background: rgba(191,0,255,.12); }
.icon-orange { background: rgba(255,170,0,.12); }
.icon-pink   { background: rgba(255,0,255,.12); }
.icon-red    { background: rgba(255,51,102,.12); }

.feature-icon svg { width: 26px; height: 26px; }

.svg-green  { color: var(--neon-green); }
.svg-blue   { color: var(--neon-blue); }
.svg-purple { color: var(--neon-purple); }
.svg-orange { color: var(--neon-orange); }
.svg-pink   { color: #ff00ff; }
.svg-red    { color: var(--neon-red); }

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-bg {
  background: linear-gradient(180deg, transparent 0%, rgba(0,255,136,.03) 50%, transparent 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,136,.3) 20%, rgba(0,212,255,.3) 80%, transparent 100%);
}

.step-card {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  background: var(--bg-tertiary);
  border: 2px solid rgba(0,255,136,.3);
  color: var(--neon-green);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== GAMES ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  border-radius: var(--radius-xl);
  overflow: visible;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
  background: var(--bg-secondary);
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  z-index: 2;
}

.game-card.available:hover {
  border-color: rgba(0,255,136,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(0,255,136,.1);
}

.game-card.coming-soon:hover {
  border-color: rgba(255,170,0,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(255,170,0,.1);
}

.game-card.coming-soon {
  opacity: .55;
}

.game-cover {
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 52px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.game-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

.game-card:hover .game-cover img {
  transform: scale(1.05);
}

.game-cover-mc {
  background: linear-gradient(160deg, #1a3d0a 0%, #0d1f05 50%, #0a0a0f 100%);
}

.game-cover-cs {
  background: linear-gradient(160deg, #1a1200 0%, #120d00 50%, #0a0a0f 100%);
}

.game-cover-val {
  background: linear-gradient(160deg, #2a0a0a 0%, #1a0505 50%, #0a0a0f 100%);
}

.game-cover-ter {
  background: linear-gradient(160deg, #001a1a 0%, #001010 50%, #0a0a0f 100%);
}

.game-cover-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}

.game-info {
  padding: 16px;
}

.game-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.game-tag {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.popular {
  border-color: rgba(0,255,136,.35);
  box-shadow: 0 0 40px rgba(0,255,136,.1);
}

.plan-card.popular:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 50px rgba(0,255,136,.15);
}

.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  color: #0a0a0f;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .5px;
}

.plan-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.plan-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,255,136,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-feature .check svg {
  width: 11px;
  height: 11px;
  color: var(--neon-green);
}

.btn-plan {
  width: 100%;
  justify-content: center;
  padding: 13px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
}

.btn-plan-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-plan-outline:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(255,255,255,.12); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  user-select: none;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
  position: relative;
}

.faq-question span {
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover span {
  transform: translateX(4px);
  color: var(--neon-green);
}

.faq-question:hover .faq-icon {
  background: rgba(0,255,136,.2);
  border-color: rgba(0,255,136,.4);
  box-shadow: 0 0 12px rgba(0,255,136,.2);
  transform: scale(1.1) rotate(90deg);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,255,136,.1);
  border: 1px solid rgba(0,255,136,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              background 0.3s ease, 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--neon-green);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon { background: rgba(0,255,136,.2); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              padding 0.3s ease;
  opacity: 0;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  transform: translateY(-8px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              opacity 0.4s ease 0.1s;
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-item.open .faq-answer-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,255,136,.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-card {
  background: linear-gradient(135deg, rgba(0,255,136,.05) 0%, rgba(0,212,255,.03) 50%, rgba(191,0,255,.04) 100%);
  border: 1px solid rgba(0,255,136,.15);
  border-radius: 28px;
  padding: 72px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.05);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: 72px 0 60px; }
  .hero-stats { gap: 28px; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }

  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .cta-card      { padding: 48px 28px; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .games-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps         { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ===== Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 4s ease-in-out infinite; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

