/* ══════════════════════════════════════════
   Tvara — Home Page Styles
   Depends on: base.css, nav.css
   ══════════════════════════════════════════ */

/* ════════════════════════════════
   Landing / Splash Screen
   ════════════════════════════════ */
#landing-view {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 30%, #1e1b4b 0%, #0a0d1a 70%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#landing-view.landing-exit {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}
.landing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  max-width: 520px;
  animation: fadeUp 0.8s ease;
}

.landing-logo {
  width: 420px;
  height: 280px;
  margin-bottom: 0;
  filter: drop-shadow(0 0 60px rgba(99,102,241,0.35)) drop-shadow(0 0 120px rgba(139,92,246,0.15));
  animation: logoPulse 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 60px rgba(99,102,241,0.35)) drop-shadow(0 0 120px rgba(139,92,246,0.15)); }
  50%      { filter: drop-shadow(0 0 80px rgba(99,102,241,0.5))  drop-shadow(0 0 160px rgba(139,92,246,0.25)); }
}

.landing-title {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-top: -76px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.landing-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.landing-enter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--indigo), #8b5cf6);
  color: #fff;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(99,102,241,0.5);
}
.landing-enter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(99,102,241,0.65);
}
.landing-enter-btn:active {
  transform: scale(0.96);
}

.landing-microcopy {
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  letter-spacing: 0.2px;
}
.landing-footer {
  margin-top: 28px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.5px;
}

/* ── Home hidden until landing dismissed ── */
.home-hidden {
  display: none !important;
}

/* ── Page wrapper ── */
#home-view {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  padding-bottom: var(--sp-12);
}

/* ── Content container ── */
.home-container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}

/* ════════════════════════════════
   Hero
   ════════════════════════════════ */
.home-hero {
  width: 100%;
  text-align: center;
  padding: 56px 0 48px;
  animation: fadeUp 0.5s ease;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
  opacity: 0.9;
}
.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-headline em {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.hero-tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #475569;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ── CTA row ── */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--indigo), #8b5cf6);
  color: #fff;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 22px rgba(99,102,241,0.5);
}
.hero-cta-btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,0.65); }
.hero-cta-btn:active { transform: scale(0.96); }
.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  color: #64748b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.hero-cta-ghost:hover { background: rgba(255,255,255,0.08); color: #94a3b8; }

/* ── Hero microcopy ── */
.hero-microcopy {
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  margin-top: 12px;
  margin-bottom: 0;
  letter-spacing: 0.2px;
}

/* ── Stats row ── */
.hero-stats { display: flex; justify-content: center; gap: 32px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-val {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-lbl {
  font-size: 0.68rem;
  color: #334155;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  align-self: center;
}

/* ════════════════════════════════
   Games section header
   ════════════════════════════════ */
.section-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
}
.section-count { font-size: 0.72rem; font-weight: 600; color: #64748b; }

/* ════════════════════════════════
   Games grid (replaces carousel)
   ════════════════════════════════ */
.games-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: var(--sp-10);
}

/* ════════════════════════════════
   Game cards
   ════════════════════════════════ */
.game-card {
  border-radius: var(--r-xl);
  padding: 24px 22px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.08);
}
.game-card:hover  { transform: translateY(-5px); }
.game-card:active { transform: scale(0.97); }
.game-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.game-card:hover::after { opacity: 1; }

/* Card colour variants */
.gc-pulse  { background: linear-gradient(135deg, #1e1b4b 0%, #12172e 100%); box-shadow: 0 16px 48px rgba(99,102,241,0.2); }
.gc-reflex { background: linear-gradient(135deg, #1a2e1a 0%, #0f1a0f 100%); box-shadow: 0 16px 48px rgba(34,197,94,0.15);  opacity: 0.7; }
.gc-logic  { background: linear-gradient(135deg, #2e1a1a 0%, #1a0f0f 100%); box-shadow: 0 16px 48px rgba(239,68,68,0.15);  opacity: 0.7; }
.gc-memory { background: linear-gradient(135deg, #1a2a2e 0%, #0f181a 100%); box-shadow: 0 16px 48px rgba(96,165,250,0.15); opacity: 0.7; }

/* Card internals */
.card-top  { display: flex; align-items: flex-start; justify-content: space-between; }
.card-icon { font-size: 2.4rem; line-height: 1; filter: drop-shadow(0 0 12px rgba(167,139,250,0.4)); }
.gc-reflex .card-icon { filter: drop-shadow(0 0 12px rgba(34,197,94,0.4)); }
.gc-logic  .card-icon { filter: drop-shadow(0 0 12px rgba(239,68,68,0.4)); }
.gc-memory .card-icon { filter: drop-shadow(0 0 12px rgba(96,165,250,0.4)); }

.card-status {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-full);
}
.status-live { background: rgba(34,197,94,0.15);  border: 1px solid rgba(34,197,94,0.3);  color: #86efac; }
.status-soon { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #475569; }

.card-body  { margin-top: 16px; }
.card-name  { font-size: 1.25rem; font-weight: 800; color: #f1f5f9; letter-spacing: -0.3px; margin-bottom: 4px; }
.card-desc  { font-size: 0.8rem; color: #475569; line-height: 1.5; }

.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.card-meta   { display: flex; gap: 10px; flex-wrap: wrap; }

.meta-chip {
  font-size: 0.68rem; font-weight: 700;
  color: #334155;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  padding: 3px 8px; border-radius: var(--r-sm);
}
.gc-pulse .meta-chip { color: #6366f1; border-color: rgba(99,102,241,0.2); background: rgba(99,102,241,0.08); }
.gc-reflex-chip      { color: #22c55e; border-color: rgba(34,197,94,0.2);  background: rgba(34,197,94,0.08); }

.card-play-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.82rem; font-weight: 700;
  padding: 8px 16px; border-radius: var(--r-full); border: none;
  cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
}
.gc-pulse .card-play-btn {
  background: linear-gradient(135deg, var(--indigo), #8b5cf6);
  color: #fff; box-shadow: 0 4px 16px rgba(99,102,241,0.45);
}
.gc-pulse .card-play-btn:hover  { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(99,102,241,0.6); }
.gc-pulse .card-play-btn:active { transform: scale(0.95); }

.gc-reflex-btn {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff; box-shadow: 0 4px 16px rgba(34,197,94,0.45);
}
.gc-reflex-btn:hover  { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(34,197,94,0.6); }
.gc-reflex-btn:active { transform: scale(0.95); }

/* un-dim the live reflex card */
.gc-reflex { opacity: 1; }

.locked-btn {
  font-size: 0.75rem; font-weight: 600; color: #334155;
  padding: 7px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-full); cursor: default;
}

/* Best score chip */
.card-best {
  font-size: 0.72rem; font-weight: 700;
  color: #fcd34d;
  background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.18);
  padding: 3px 9px; border-radius: var(--r-full);
  display: none;
}
.card-best.show { display: inline-flex; align-items: center; gap: 4px; }

/* ════════════════════════════════
   Logic Lock card
   ════════════════════════════════ */
.gc-logic { opacity: 1; }
.gc-logic-chip {
  color: var(--red);
  border-color: rgba(239,68,68,0.22);
  background: rgba(239,68,68,0.08);
}
.gc-logic-btn {
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  color: #fff;
  box-shadow: 0 4px 16px rgba(239,68,68,0.4);
}
.gc-logic-btn:hover {
  background: linear-gradient(135deg, #991b1b, #dc2626);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239,68,68,0.55);
}

/* ════════════════════════════════
   Memory Grid card
   ════════════════════════════════ */
.gc-memory { opacity: 1; }
.gc-memory-chip {
  color: #60a5fa;
  border-color: rgba(96,165,250,0.22);
  background: rgba(96,165,250,0.08);
}
.gc-memory-btn {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}
.gc-memory-btn:hover {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.55);
}

/* ════════════════════════════════
   Speed Math card
   ════════════════════════════════ */
.gc-speedmath { background: linear-gradient(135deg, #2e1f00 0%, #1a1000 100%); box-shadow: 0 16px 48px rgba(245,158,11,0.15); opacity: 1; }
.gc-speedmath .card-icon { filter: drop-shadow(0 0 12px rgba(245,158,11,0.5)); }
.gc-speedmath-chip {
  color: #fbbf24;
  border-color: rgba(245,158,11,0.22);
  background: rgba(245,158,11,0.08);
}
.gc-speedmath-btn {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #0a0d1a;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.gc-speedmath-btn:hover {
  background: linear-gradient(135deg, #b45309, #d97706);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.55);
}

/* ════════════════════════════════
   Stroop Challenge card
   ════════════════════════════════ */
.gc-stroop { background: linear-gradient(135deg, #1e0a2e 0%, #110517 100%); box-shadow: 0 16px 48px rgba(168,85,247,0.15); opacity: 1; }
.gc-stroop .card-icon { filter: drop-shadow(0 0 12px rgba(168,85,247,0.5)); }
.gc-stroop-chip {
  color: #c084fc;
  border-color: rgba(168,85,247,0.22);
  background: rgba(168,85,247,0.08);
}
.gc-stroop-btn {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168,85,247,0.4);
}
.gc-stroop-btn:hover {
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168,85,247,0.55);
}

/* ════════════════════════════════
   Word Scramble card
   ════════════════════════════════ */
.gc-wordscramble { background: linear-gradient(135deg, #062a1a 0%, #031510 100%); box-shadow: 0 16px 48px rgba(16,185,129,0.15); opacity: 1; }
.gc-wordscramble .card-icon { filter: drop-shadow(0 0 12px rgba(16,185,129,0.5)); }
.gc-wordscramble-chip {
  color: #34d399;
  border-color: rgba(16,185,129,0.22);
  background: rgba(16,185,129,0.08);
}
.gc-wordscramble-btn {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,0.4);
}
.gc-wordscramble-btn:hover {
  background: linear-gradient(135deg, #047857, #059669);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16,185,129,0.55);
}

/* ════════════════════════════════
   Live Thinking Moment — auto-play
   ════════════════════════════════ */
.ltm-section {
  width: 100%;
  margin-bottom: 40px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0d1025 0%, #0a0d1a 100%);
  border: 1px solid rgba(99,102,241,0.14);
  padding: 28px 32px 26px;
  position: relative;
  overflow: hidden;
}
/* top accent line */
.ltm-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(99,102,241,0.45) 40%, rgba(139,92,246,0.45) 60%, transparent 95%);
}

/* Label */
.ltm-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 22px;
}

/* Token stage */
.ltm-stage {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ltm-tokens {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

/* Individual chips */
.ltm-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ltm-chip.ltm-chip-in {
  opacity: 1;
  transform: translateY(0);
}
.ltm-chip.ltm-chip-out {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* Number chips */
.ltm-num {
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.5px;
  min-width: 2ch;
  text-align: center;
}

/* Arrow chips */
.ltm-arrow {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #1e293b;
  font-weight: 400;
  padding: 0 2px;
}

/* Question mark chip */
.ltm-question {
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  font-weight: 800;
  color: #334155;
  min-width: 2ch;
  text-align: center;
}

/* Answer chip — highlighted reveal */
.ltm-answer {
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  font-weight: 800;
  color: #a5b4fc;
  min-width: 2ch;
  text-align: center;
  text-shadow: 0 0 20px rgba(99,102,241,0.5);
}

/* Reveal area: prompt + CTA */
.ltm-reveal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.ltm-reveal.ltm-reveal-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ltm-prompt {
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  font-style: italic;
  flex: 1;
  min-width: 180px;
}
.ltm-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(99,102,241,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ltm-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(99,102,241,0.5);
}

@media (max-width: 480px) {
  .ltm-section { padding: 22px 18px 20px; }
  .ltm-num, .ltm-question, .ltm-answer { font-size: 1.2rem; }
  .ltm-reveal { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ════════════════════════════════
   Stat bar
   ════════════════════════════════ */
.stat-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.stat-bar-val {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.5px;
  line-height: 1;
}
.stat-bar-key {
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat-bar-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .stat-bar { gap: 0; padding: 14px 0; }
  .stat-bar-val { font-size: 1rem; }
  .stat-bar-key { font-size: 0.58rem; letter-spacing: 0.5px; }
  .stat-bar-div { height: 20px; }
}

/* ════════════════════════════════
   Footer
   ════════════════════════════════ */
.home-footer {
  width: 100%; text-align: center;
  font-size: 0.7rem; color: #64748b;
  font-weight: 600; letter-spacing: 0.3px;
  padding-top: 8px;
}
.home-footer a { color: inherit; text-decoration: none; }
.home-footer a:hover { color: #94a3b8; }

/* ════════════════════════════════
   Responsive overrides
   ════════════════════════════════ */
@media (min-width: 640px) {
  .home-container { padding: 0 40px; }
}

@media (min-width: 1024px) {
  .home-container { padding: 0 56px; }
  .home-hero { padding: 80px 0 64px; text-align: left; }
  .home-hero .hero-eyebrow  { text-align: left; }
  .home-hero .hero-headline { text-align: left; }
  .home-hero .hero-tagline  { text-align: left; margin-left: 0; max-width: 520px; }
  .home-hero .hero-cta-row  { justify-content: flex-start; }
  .home-hero .hero-stats    { justify-content: flex-start; gap: 36px; }
  .game-card { min-height: 240px; }
  .feat { padding: 28px 22px; }
  .feat-icon  { font-size: 2rem; margin-bottom: 12px; }
  .feat-title { font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 480px) {
  .home-container { padding: 0 16px; }
  .games-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-btn, .hero-cta-ghost { justify-content: center; }
}
