/* ═══════ CSS Variables ═══════ */
:root {
  --primary: #7C3AED;
  --primary-dark: #6D28D9;
  --primary-light: #A78BFA;
  --primary-bg: #F5F3FF;
  --accent: #F59E0B;
  --accent-bg: #FEF3C7;
  --green: #10B981;
  --green-bg: #D1FAE5;
  --blue: #3B82F6;
  --blue-bg: #DBEAFE;
  --red: #EF4444;
  --red-bg: #FEE2E2;
  --text: #1E1B4B;
  --text-secondary: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #FAFAFF;
  --card-bg: #FFFFFF;
  --border: #E5E7EB;
  --radius: 20px;
  --radius-sm: 12px;
  --max-w: 1140px;
  --nav-h: 72px;
}

/* ═══════ Reset ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ═══════ Background Blobs ═══════ */
.bg-blob {
  position: fixed; border-radius: 50%; filter: blur(100px); opacity: .12;
  z-index: -1; pointer-events: none;
}
.blob-1 { width: 600px; height: 600px; background: #7C3AED; top: -200px; left: -200px; }
.blob-2 { width: 500px; height: 500px; background: #F59E0B; top: 40%; right: -200px; }
.blob-3 { width: 400px; height: 400px; background: #10B981; bottom: -100px; left: 20%; }

/* ═══════ Animations ═══════ */
.anim-fade { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.anim-fade.visible { opacity: 1; transform: translateY(0); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-5deg); }
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: .35; }
  50% { transform: scale(1.15); opacity: .55; }
}
@keyframes spin-slow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(255,255,255,.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,.08); z-index: 100;
}
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--primary); }
.nav-logo-img { width: 40px; height: 40px; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #4F46E5 100%);
  color: #FFF !important; padding: 10px 24px; border-radius: 50px; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.4); }
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.hamburger { display: none; border: none; background: none; cursor: pointer; color: var(--text); }

/* ═══════ Lang Switcher ═══════ */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 14px;
  border: 1px solid var(--border); border-radius: 50px; background: #FFF;
  font-size: 13px; cursor: pointer; color: var(--text-secondary); transition: all .2s;
}
.lang-btn:hover { border-color: var(--primary-light); background: var(--primary-bg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px;
  background: #FFF; border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0,0,0,.12); display: none; flex-direction: column; overflow: hidden; z-index: 10;
}
.lang-dropdown.open { display: flex; }
.lang-option { padding: 12px 18px; border: none; background: none; text-align: left; font-size: 14px; cursor: pointer; transition: all .15s; }
.lang-option:hover { background: var(--primary-bg); color: var(--primary); }
.lang-option.active { color: var(--primary); font-weight: 700; background: var(--primary-bg); }

/* ═══════ HERO ═══════ */
.hero {
  padding: calc(var(--nav-h) + 60px) 0 40px;
  background: linear-gradient(160deg, #F0EAFF 0%, #FFF8E1 30%, #E8FFF0 60%, #EEF4FF 100%);
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(245,158,11,.25));
  color: #B45309; font-size: 14px; font-weight: 700; margin-bottom: 20px;
  border: 1px solid rgba(245,158,11,.2);
}
.hero h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 900; line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero-subtitle { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; max-width: 500px; }
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  border-radius: 16px; font-weight: 700; font-size: 15px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.store-btn.google {
  background: linear-gradient(135deg, var(--primary) 0%, #4F46E5 100%);
  color: #FFF; box-shadow: 0 8px 24px rgba(124,58,237,.35);
}
.store-btn.google:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(124,58,237,.45); }
.store-btn.apple {
  background: #1E1B4B; color: #FFF;
  box-shadow: 0 8px 24px rgba(30,27,75,.25);
}
.store-btn.apple:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(30,27,75,.35); }
.hero-or { margin-top: 16px; font-size: 13px; color: var(--text-secondary); }

/* Hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-logo-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-logo-img { width: 280px; height: 280px; border-radius: 48px; position: relative; z-index: 2; filter: drop-shadow(0 20px 60px rgba(124,58,237,.3)); }

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; font-size: 28px; opacity: .15; animation: float 6s ease-in-out infinite; }
.p1 { top: 15%; left: 5%; animation-delay: 0s; }
.p2 { top: 25%; right: 8%; animation-delay: 1s; animation-name: float-reverse; }
.p3 { bottom: 20%; left: 12%; animation-delay: 2s; }
.p4 { top: 60%; left: 40%; animation-delay: 0.5s; font-size: 22px; animation-name: float-reverse; }
.p5 { bottom: 15%; right: 15%; animation-delay: 3s; }
.p6 { top: 10%; left: 50%; animation-delay: 1.5s; font-size: 20px; }
.p7 { bottom: 35%; right: 30%; animation-delay: 2.5s; font-size: 24px; animation-name: float-reverse; }
.p8 { top: 45%; left: 20%; animation-delay: 4s; font-size: 20px; }

/* ═══════ STATS STRIP ═══════ */
.stats-strip {
  padding: 0; margin-top: -32px; position: relative; z-index: 10;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #4F46E5 50%, #7C3AED 100%);
  border-radius: var(--radius); padding: 36px 24px;
  box-shadow: 0 16px 48px rgba(124,58,237,.25);
}
.stat-item { text-align: center; color: #FFF; padding: 8px 0; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.15); }
.stat-num { font-size: 36px; font-weight: 900; display: inline; }
.stat-plus { font-size: 28px; font-weight: 700; }
.stat-label { display: block; font-size: 13px; opacity: .8; margin-top: 4px; font-weight: 500; }

/* ═══════ Section Header ═══════ */
section { padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: var(--primary-bg); color: var(--primary); font-size: 13px; font-weight: 700;
  margin-bottom: 14px; border: 1px solid rgba(124,58,237,.1);
}
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 12px; letter-spacing: -0.3px; }
.section-header p { color: var(--text-secondary); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ═══════ Features ═══════ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-accent, var(--primary));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,.08); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(124,58,237,.15));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-emoji { font-size: 32px; }
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ═══════ How It Works ═══════ */
.how-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #FFF 100%);
}
.how-grid { display: flex; align-items: flex-start; justify-content: center; gap: 16px; }
.how-step {
  flex: 1; max-width: 280px; text-align: center; padding: 36px 24px;
  background: var(--card-bg); border-radius: var(--radius); border: 1px solid var(--border);
  position: relative; transition: all .4s cubic-bezier(.22,1,.36,1);
}
.how-step:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,.08); }
.how-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4F46E5);
  color: #FFF; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
}
.how-icon { font-size: 48px; margin: 16px 0 14px; }
.how-step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.how-arrow { display: flex; align-items: center; padding-top: 80px; color: var(--primary-light); }

/* ═══════ Games ═══════ */
.games-section { background: linear-gradient(160deg, #F0EAFF 0%, #FFF7E1 50%, #E8FFF0 100%); }
.games-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.games-col {
  border-radius: var(--radius); padding: 32px; position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.games-col.edu { background: linear-gradient(145deg, #FFF 0%, #F0EAFF 100%); border: 1px solid rgba(124,58,237,.12); }
.games-col.arc { background: linear-gradient(145deg, #FFF 0%, #FFF7E1 100%); border: 1px solid rgba(245,158,11,.12); }
.games-col:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.06); }
.games-col-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.games-col-icon { font-size: 32px; }
.games-col h3 { font-size: 22px; font-weight: 800; }
.games-col li {
  padding: 10px 0; font-size: 15px; color: var(--text-secondary);
  border-bottom: 1px solid rgba(0,0,0,.04); display: flex; align-items: center; gap: 10px;
}
.games-col li:last-child { border-bottom: none; }
.game-emoji { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
.games-bottom { text-align: center; margin-top: 28px; }
.games-badge {
  display: inline-block; padding: 12px 28px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(245,158,11,.22));
  font-size: 15px; font-weight: 700; color: #92400E; border: 1px solid rgba(245,158,11,.2);
}

/* ═══════ Security ═══════ */
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.security-card {
  text-align: center; padding: 32px 24px; background: var(--card-bg);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: all .4s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden;
}
.security-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(124,58,237,.03) 100%);
  opacity: 0; transition: opacity .3s;
}
.security-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,.08); }
.security-card:hover::after { opacity: 1; }
.security-icon { font-size: 40px; margin-bottom: 14px; }
.security-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; position: relative; z-index: 1; }
.security-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; position: relative; z-index: 1; }

/* ═══════ Pricing ═══════ */
.pricing-section { background: linear-gradient(180deg, var(--bg-alt) 0%, #FFF 100%); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 720px; margin: 0 auto; }
.pricing-card {
  border-radius: var(--radius); padding: 40px 32px; position: relative;
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.pricing-card.free { background: var(--card-bg); border: 1px solid var(--border); }
.pricing-card.pro {
  background: linear-gradient(145deg, #F5F3FF 0%, #FFF 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(124,58,237,.12);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-popular {
  position: absolute; top: -14px; right: 24px;
  background: linear-gradient(135deg, var(--primary), #4F46E5); color: #FFF;
  padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 800;
  box-shadow: 0 4px 12px rgba(124,58,237,.3);
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { font-size: 24px; font-weight: 900; }
.pricing-price { font-size: 18px; font-weight: 700; color: var(--primary); }
.pricing-card li {
  padding: 8px 0; font-size: 15px; color: var(--text-secondary);
}
.pricing-card li::before { content: '✓ '; color: var(--green); font-weight: 800; }
.pricing-cta {
  display: inline-block; margin-top: 24px; padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 15px; transition: all .3s cubic-bezier(.22,1,.36,1);
  background: linear-gradient(135deg, var(--primary), #4F46E5); color: #FFF;
  box-shadow: 0 6px 20px rgba(124,58,237,.3);
}
.pricing-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,58,237,.4); }
.pricing-cta.outline {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
  box-shadow: none;
}
.pricing-cta.outline:hover { background: var(--primary-bg); }

/* ═══════ CTA ═══════ */
.cta-section {
  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 40%, #3B82F6 100%);
  color: #FFF; text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; font-size: 40px; opacity: .1; animation: float 8s ease-in-out infinite; }
.s1 { top: 10%; left: 8%; animation-delay: 0s; }
.s2 { top: 20%; right: 10%; animation-delay: 2s; animation-name: float-reverse; }
.s3 { bottom: 15%; left: 15%; animation-delay: 4s; }
.s4 { bottom: 25%; right: 20%; animation-delay: 1s; animation-name: float-reverse; }
.cta-logo { margin: 0 auto 24px; border-radius: 20px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.2)); }
.cta-section h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 14px; }
.cta-section p { font-size: 17px; opacity: .85; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-store-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  border-radius: 50px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  color: #FFF; font-weight: 700; font-size: 15px; border: 1px solid rgba(255,255,255,.25);
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.cta-store-btn:hover { background: rgba(255,255,255,.25); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ═══════ Footer ═══════ */
.footer { background: #1E1B4B; color: #D1D5DB; padding: 60px 24px 0; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-row img { border-radius: 8px; }
.footer-brand h3 { color: #FFF; font-size: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #FFF; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  max-width: var(--max-w); margin: 44px auto 0; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; font-size: 13px; opacity: .7;
}

/* ═══════ Legal Pages ═══════ */
.legal-page { padding: calc(var(--nav-h) + 60px) 0 80px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; margin-bottom: 8px; }
.legal-page .legal-updated { color: var(--text-secondary); font-size: 14px; margin-bottom: 32px; }
.legal-page h2 { font-size: 20px; font-weight: 800; margin: 32px 0 12px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; list-style: disc; }
.legal-page a { color: var(--primary); text-decoration: underline; }

.delete-page { padding: calc(var(--nav-h) + 60px) 0 80px; text-align: center; }
.delete-page .container { max-width: 600px; }
.delete-page h1 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; margin-bottom: 16px; }
.delete-page p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.delete-page ol { text-align: left; padding-left: 24px; margin-bottom: 24px; }
.delete-page ol li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 8px; }
.delete-page .warn {
  padding: 20px 28px; background: linear-gradient(135deg, #FEF2F2, #FFF5F5);
  border: 1px solid #FCA5A5; border-radius: var(--radius-sm);
  color: #B91C1C; font-size: 14px; line-height: 1.65; margin: 24px auto; max-width: 500px;
}

/* ═══════ Responsive ═══════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; margin-bottom: 24px; }
  .hero-subtitle { max-width: 600px; margin: 0 auto 32px; }
  .store-buttons { justify-content: center; }
  .hero-logo-img { width: 200px; height: 200px; border-radius: 36px; }
  .hero-logo-glow { width: 240px; height: 240px; }
}
@media (max-width: 900px) {
  .features-grid, .security-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .how-grid { flex-direction: column; align-items: center; }
  .how-arrow { transform: rotate(90deg); padding: 0; }
  .how-step { max-width: 400px; width: 100%; }
}
@media (max-width: 700px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: #FFFFFF;
    flex-direction: column; align-items: center; justify-content: flex-start; gap: 8px;
    display: none; z-index: 98;
    padding: 24px 24px 40px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; height: 500px; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { font-size: 17px; font-weight: 600; color: var(--text); display: block; padding: 14px 0; border-bottom: 1px solid #F3F4F6; }
  .nav-links a:hover { color: var(--primary); }
  .nav-links .nav-cta { font-size: 16px; padding: 14px 36px; display: inline-block; color: #FFF !important; border-bottom: none; margin-top: 8px; }
  .nav-links .lang-switcher { display: inline-block; margin-top: 8px; }
  .nav-links li:last-child a { border-bottom: none; }
  .hamburger { display: block; }
  .features-grid, .security-grid { grid-template-columns: 1fr; }
  .games-showcase { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: center; text-align: center; }
  .hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 20px; }
  section { padding: 60px 0; }
  .stats-strip { margin-top: -20px; }
  .stats-grid { border-radius: 16px; padding: 24px 16px; }
  .stat-num { font-size: 28px; }
  .particle { display: none; }
}
@media (max-width: 460px) {
  .store-buttons, .cta-buttons { flex-direction: column; align-items: center; }
  .store-btn, .cta-store-btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
