/* Spectral Moose — Design System */

:root {
  --bg-deep: #020204;
  --bg-surface: rgba(8, 10, 18, 0.78);
  --bg-elevated: rgba(12, 14, 24, 0.9);
  --border: rgba(255, 255, 255, 0.12);
  --border-bright: rgba(255, 255, 255, 0.45);
  --text: #f4f8ff;
  --text-muted: #a8b8d4;
  --text-dim: #6b7d9a;
  --neon: #ffffff;
  --neon-soft: #e8f4ff;
  --cyan: #d4ecff;
  --purple: #b8c8ff;
  --violet: #8b9cff;
  --mint: #c8fff0;
  --amber: #ffe8b0;
  --glow-white: rgba(255, 255, 255, 0.55);
  --glow-spectral: rgba(200, 230, 255, 0.4);
  --spectral-shadow: 0 0 20px rgba(255, 255, 255, 0.35), 0 0 50px rgba(220, 240, 255, 0.25), 0 0 100px rgba(180, 220, 255, 0.15);
  --spectral-text: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 30px rgba(200, 230, 255, 0.5), 0 0 60px rgba(160, 210, 255, 0.25);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.65);
  --nav-height: 76px;
  --max-width: 1180px;
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Exo 2", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Spectral background */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(255, 255, 255, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 40%, rgba(200, 230, 255, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 45% 35% at 85% 60%, rgba(220, 240, 255, 0.06) 0%, transparent 50%),
    var(--bg-deep);
}

.aurora-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 30% at 50% 0%, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-soft);
  text-shadow: var(--spectral-text);
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
  text-shadow: var(--spectral-text);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 48px;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), backdrop-filter 0.35s;
}

.site-header.scrolled {
  background: rgba(3, 3, 8, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 28px rgba(200, 230, 255, 0.3));
}

.brand-logo--hero {
  height: auto;
  width: min(100%, 380px);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 50px rgba(210, 235, 255, 0.35)) drop-shadow(0 0 90px rgba(180, 220, 255, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s, text-shadow 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 18px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #020204 !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35), 0 0 40px rgba(200, 230, 255, 0.2) !important;
}

.nav-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.5), 0 0 60px rgba(200, 230, 255, 0.3) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text);
  border: 1px solid var(--border);
}

.menu-toggle svg { width: 22px; height: 22px; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 48px) 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-soft);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 20px rgba(200, 230, 255, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.9); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  text-shadow: var(--spectral-text);
}

.hero h1 .gradient-text {
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.95), 0 0 40px rgba(220, 240, 255, 0.7), 0 0 80px rgba(180, 220, 255, 0.4);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 0 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #020204;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.4), 0 0 48px rgba(200, 230, 255, 0.2);
}

.btn-secondary {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--neon-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-orbit {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
}

.orbit-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  animation: spin 40s linear infinite;
}

.orbit-ring:nth-child(2) {
  inset: 0;
  border-color: rgba(220, 240, 255, 0.12);
  animation-direction: reverse;
  animation-duration: 55s;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-brand-wrap {
  position: absolute;
  inset: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--spectral-shadow), inset 0 0 80px rgba(255, 255, 255, 0.04);
}

/* Featured */
.featured {
  padding-top: 0;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--spectral-shadow);
}

.featured-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.featured-art img {
  width: min(100%, 280px);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.15);
}

.featured-art::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  z-index: -1;
  filter: blur(30px);
}

.featured-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--neon-soft);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.featured h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: var(--spectral-text);
  margin: 0 0 16px;
}

.featured-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "—";
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 2px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  transition: transform 0.2s, opacity 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge img,
.store-badge svg {
  height: 48px;
  width: auto;
}

/* Games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.game-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(200, 230, 255, 0.4));
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.06);
}

.game-card:hover::before { opacity: 1; }

.game-card-header {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.game-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.game-meta h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.game-tagline {
  font-size: 0.85rem;
  color: var(--neon-soft);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
  margin: 0 0 6px;
}

.game-genre {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

.game-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.55;
}

.game-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.platform-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.platform-pill.live {
  color: var(--neon-soft);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-soft);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: gap 0.2s;
}

.download-link:hover { gap: 12px; }

.download-link svg { width: 16px; height: 16px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 12px;
}

.about-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 6px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.support-info {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 8px;
}

.info-card p,
.info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  text-decoration: none;
}

.info-card a:hover { color: var(--neon-soft); text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); }

.contact-form {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-bright);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { max-height: 200px; }

/* Footer */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 32ch;
  margin: 16px 0 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
}

.social-links svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--neon-soft); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-dim);
  text-decoration: none;
}

.footer-legal a:hover { color: var(--text-muted); }

/* Subpages */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 40px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content ul { padding-left: 20px; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 960px) {
  .hero-grid,
  .featured-card,
  .about-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .values-grid { grid-template-columns: 1fr; }

  .hero-visual { order: -1; }
  .hero-orbit { width: min(100%, 300px); margin-inline: auto; }

  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    background: rgba(3, 3, 8, 0.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a { padding: 12px 16px; }
  .nav-cta { margin-left: 0 !important; text-align: center; }

  .featured-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 520px) {
  .games-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
