/* ═══════════════════════════════════════════════════════════════════
   CYBER DASH — Landing (JRPG / steampunk / cyber-retro)
═══════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0b0e14;
  --surface: #11161f;
  --surface-2: #1a2230;
  --border: #243043;
  --teal: #1a9490;
  --teal-bright: #2ee6d6;
  --brass: #b08d57;
  --copper: #b87333;
  --gold: #e8b65a;
  --gold-light: #f3d089;
  --gold-dim: #8a6d3b;
  --danger: #aa1515;
  --text: #d7e0ea;
  --text-muted: #7c8aa0;
  --hp: #e0533f;
  --mp: #4aa3ff;
  --xp: #2ee6d6;
}

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

html { color-scheme: dark; background: var(--bg); scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.game-bg {
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 50% -10%, rgba(46, 230, 214, 0.07), transparent 60%),
    radial-gradient(900px 500px at 100% 80%, rgba(184, 115, 51, 0.06), transparent 60%),
    linear-gradient(rgba(36, 48, 67, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 48, 67, 0.18) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px, 28px 28px;
}

#stars {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ═══════════ TOPBAR ═══════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(11,14,20,0.92), rgba(11,14,20,0.7));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in oklab, var(--gold) 25%, var(--border));
  box-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(232, 182, 90, 0.4);
}
.brand-gem {
  width: 12px; height: 12px;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--teal-bright);
}
.brand-name { font-weight: 700; }
.nav { display: flex; gap: 26px; }
.nav a {
  font-family: 'VT323', monospace;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.15s, text-shadow 0.15s;
}
.nav a:hover { color: var(--gold-light); text-shadow: 0 0 8px rgba(232,182,90,0.3); }
.btn-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'VT323', monospace;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, color-mix(in oklab, var(--teal-bright) 30%, var(--surface-2)), var(--surface));
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  padding: 8px 18px;
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(0,0,0,0.5),
    0 0 18px -6px var(--teal-bright);
  transition: transform 0.12s, box-shadow 0.18s;
  cursor: pointer;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 0 0 1px rgba(0,0,0,0.5),
    0 0 28px -4px var(--teal-bright);
}
.btn-cta.big { font-size: 22px; padding: 14px 28px; letter-spacing: 0.1em; }
.btn-cta.huge { font-size: 28px; padding: 18px 40px; letter-spacing: 0.12em; }
.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-dim); }
.btn-ghost.big { font-size: 22px; padding: 14px 28px; }

/* ═══════════ ORNATE PANELS (JRPG) ═══════════ */
.ornate {
  position: relative;
  max-width: 1200px;
  margin: 36px auto;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(26, 34, 48, 0.97), rgba(11, 14, 20, 0.97)),
    radial-gradient(120% 120% at 50% 0%, rgba(46, 230, 214, 0.04), transparent 60%);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 2px rgba(11, 14, 20, 0.9),
    inset 0 0 0 3px color-mix(in oklab, var(--gold) 45%, transparent),
    inset 0 0 22px rgba(0, 0, 0, 0.6),
    0 10px 30px -12px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}
.ornate-teal {
  border-color: color-mix(in oklab, var(--teal) 70%, var(--gold-dim));
  box-shadow:
    inset 0 0 0 2px rgba(11, 14, 20, 0.9),
    inset 0 0 0 3px color-mix(in oklab, var(--teal-bright) 40%, transparent),
    inset 0 0 22px rgba(0, 0, 0, 0.6),
    0 0 30px -10px var(--teal-bright);
}

/* Cantoneiras em L com gema */
.corner {
  position: absolute;
  width: 18px; height: 18px;
  z-index: 3;
  pointer-events: none;
}
.corner::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: radial-gradient(circle at 35% 35%, #fff3cf, var(--gold) 55%, #6b521f);
  box-shadow: 0 0 6px rgba(232, 182, 90, 0.8);
  transform: rotate(45deg);
}
.corner.tl { top: 4px; left: 4px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.corner.tr { top: 4px; right: 4px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.corner.bl { bottom: 4px; left: 4px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.corner.br { bottom: 4px; right: 4px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.corner.tl::after { top: -4px; left: -4px; }
.corner.tr::after { top: -4px; right: -4px; }
.corner.bl::after { bottom: -4px; left: -4px; }
.corner.br::after { bottom: -4px; right: -4px; }

/* Ribbon */
.ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 8px 20px;
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(232, 182, 90, 0.5), 0 1px 0 #000;
  border-bottom: 1px solid color-mix(in oklab, var(--gold) 35%, transparent);
  background:
    linear-gradient(180deg, rgba(232, 182, 90, 0.12), transparent),
    radial-gradient(circle at center, rgba(46, 230, 214, 0.08), transparent 60%);
}
.ribbon .gem {
  width: 9px; height: 9px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  box-shadow: 0 0 8px var(--teal-bright);
}

.section-body { padding: 28px 36px 36px; position: relative; z-index: 1; }
.section-lead { font-size: 15px; color: var(--text-muted); margin-bottom: 22px; max-width: 760px; }

/* ═══════════ HERO ═══════════ */
.hero { margin-top: 28px; padding: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  padding: 36px 42px 42px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-text { position: relative; z-index: 2; }
.hero-h1 {
  font-family: 'Cinzel', 'VT323', serif;
  font-size: 76px;
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  text-shadow: 0 2px 0 #000, 0 0 24px rgba(46, 230, 214, 0.15);
  margin-bottom: 18px;
}
.gold-text {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(232, 182, 90, 0.4);
  font-style: italic;
}
.hero-lead {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 520px;
}
.hero-lead strong { color: var(--gold-light); font-weight: 700; }
.hero-bullets {
  list-style: none;
  margin-bottom: 26px;
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text);
}
.bul {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(232, 182, 90, 0.5);
  font-size: 16px;
  line-height: 1.4;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 12px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}
.badge-dot.ok { background: #9be07a; color: #9be07a; }
.badge-dot.teal { background: var(--teal-bright); color: var(--teal-bright); }
.badge-dot.gold { background: var(--gold); color: var(--gold); }

/* Mascot stage */
.hero-mascot {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 12px;
}
.mascot {
  width: min(360px, 100%);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
  animation: heroBob 4s ease-in-out infinite;
  cursor: pointer;
}
@keyframes heroBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mascot .aura {
  animation: auraPulse 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes auraPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.mascot .tail { transform-origin: 138px 138px; animation: tailWag 2.4s ease-in-out infinite; }
@keyframes tailWag {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(8deg); }
}
.mascot .eyes .eye {
  transform-origin: center;
  animation: blink 5s infinite;
}
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  94%, 98% { transform: scaleY(0.1); }
}
.mascot .iris, .mascot .shine { animation: blink 5s infinite; }
.mascot .crown { transform-origin: 90px 32px; animation: crownGlow 3.5s ease-in-out infinite; }
@keyframes crownGlow {
  0%, 100% { filter: drop-shadow(0 0 4px var(--gold)); }
  50% { filter: drop-shadow(0 0 14px var(--gold-light)); }
}
.mascot:hover .body { animation: bodyHappy 0.5s ease-in-out; }
@keyframes bodyHappy {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}

/* HUD card under mascot */
.hud-card {
  width: min(360px, 100%);
  background: linear-gradient(180deg, rgba(26, 34, 48, 0.95), rgba(11, 14, 20, 0.95));
  border: 1px solid color-mix(in oklab, var(--teal) 60%, var(--border));
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 18px -6px var(--teal-bright);
}
.hud-row {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--text);
  padding-bottom: 6px;
}
.hud-row.small { font-size: 14px; color: var(--text-muted); padding-top: 4px; padding-bottom: 0; }
.hud-label { color: var(--gold-light); letter-spacing: 0.1em; }
.hud-value { font-size: 22px; color: var(--gold-light); text-shadow: 0 0 8px rgba(232, 182, 90, 0.4); }
.hud-bar {
  height: 12px;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.xp-track { background: rgba(0, 0, 0, 0.55); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.7); }
.hud-bar-fill, .xp-fill {
  height: 100%;
  background-image: linear-gradient(90deg, var(--teal), var(--teal-bright));
  box-shadow: 0 0 12px -2px var(--teal-bright);
  position: relative;
  transition: width 0.6s ease;
}
.hud-bar-fill::after, .xp-fill::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.18) 0 6px,
    transparent 6px 12px);
  animation: stripeRoll 0.9s linear infinite;
}
@keyframes stripeRoll { to { background-position: 24px 0; } }
.streak {
  color: var(--hp);
  text-shadow: 0 0 6px rgba(224, 83, 63, 0.5);
}

/* ═══════════ PILARES ═══════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.pillar {
  background: linear-gradient(180deg, rgba(26, 34, 48, 0.9), rgba(11, 14, 20, 0.9));
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--gold) 50%, var(--border));
  box-shadow: 0 8px 22px -8px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  border: 1px solid var(--border);
}
.pillar-icon[data-icon="corpo"]::after { content: '💪'; }
.pillar-icon[data-icon="mente"]::after { content: '🧠'; }
.pillar-icon[data-icon="tech"]::after { content: '💻'; }
.pillar-icon[data-icon="alma"]::after { content: '🎨'; }
.pillar-icon[data-icon="estudo"]::after { content: '📚'; }
.pillar-icon[data-icon="financas"]::after { content: '💰'; }
.pillar-icon[data-icon="social"]::after { content: '👥'; }

.pillar h3 {
  font-family: 'VT323', monospace;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.4; margin-bottom: 12px; }
.pillar-bar {
  height: 8px;
  background: rgba(0,0,0,0.4);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.6);
}
.pillar-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c), color-mix(in oklab, var(--c) 60%, #fff 8%));
  box-shadow: 0 0 8px -2px var(--c);
}

/* ═══════════ SYSTEMS GRID ═══════════ */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.slot {
  position: relative;
  background: linear-gradient(180deg, rgba(26, 34, 48, 0.92), rgba(11, 14, 20, 0.92));
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 18px;
  transition: transform 0.18s, border-color 0.18s;
}
.slot::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px dashed color-mix(in oklab, var(--gold) 30%, transparent);
  border-radius: 3px;
  pointer-events: none;
  opacity: 0.4;
}
.slot:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--teal-bright) 60%, var(--border));
}
.slot:hover::before { opacity: 0.8; border-color: color-mix(in oklab, var(--gold) 50%, transparent); }

.slot-icon { font-size: 28px; margin-bottom: 6px; }
.slot h3 {
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.slot p { font-size: 13px; color: var(--text-muted); line-height: 1.45; margin-bottom: 10px; }
.system-tag {
  display: inline-block;
  font-family: 'VT323', monospace;
  font-size: 12px;
  color: var(--teal-bright);
  background: rgba(46, 230, 214, 0.08);
  border: 1px solid color-mix(in oklab, var(--teal-bright) 40%, transparent);
  padding: 2px 8px;
  border-radius: 12px;
  letter-spacing: 0.05em;
}

/* ═══════════ MASCOTS ROW ═══════════ */
.mascots-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.mascot-card {
  background: linear-gradient(180deg, rgba(26,34,48,0.9), rgba(11,14,20,0.9));
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 18px 12px 14px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.mascot-card:hover { transform: translateY(-4px); }
.mascot-card.rarity-comum { border-color: #4a5468; }
.mascot-card.rarity-incomum { border-color: var(--copper); box-shadow: 0 0 14px -6px var(--copper); }
.mascot-card.rarity-raro { border-color: var(--teal-bright); box-shadow: 0 0 14px -6px var(--teal-bright); }
.mascot-card.rarity-epico { border-color: #d77adf; box-shadow: 0 0 16px -6px #d77adf; }
.mascot-card.rarity-lendario {
  border-color: var(--gold);
  box-shadow: 0 0 24px -4px var(--gold-light);
  background: linear-gradient(180deg, rgba(232,182,90,0.08), rgba(11,14,20,0.9));
}
.mascot-card.rarity-lendario::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(232,182,90,0.15), transparent 70%);
  pointer-events: none;
}
.mini-mascot {
  width: 92px; height: 92px;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
}
.mini-mascot svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); }
.mascot-card.rarity-lendario .mini-mascot { animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.mascot-card h4 {
  font-family: 'VT323', monospace;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 4px;
}
.rarity {
  font-family: 'VT323', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rarity-comum .rarity { color: #8a96a8; }
.rarity-incomum .rarity { color: var(--copper); }
.rarity-raro .rarity { color: var(--teal-bright); }
.rarity-epico .rarity { color: #d77adf; }
.rarity-lendario .rarity { color: var(--gold-light); text-shadow: 0 0 6px rgba(232,182,90,0.6); }

/* ═══════════ ACTIVITIES ═══════════ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.activity {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, rgba(26,34,48,0.85), rgba(11,14,20,0.85));
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: 'VT323', monospace;
  font-size: 17px;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: border-color 0.18s, transform 0.18s;
}
.activity:hover { border-color: var(--teal-bright); transform: scale(1.03); }
.act-icon { font-size: 22px; }

/* ═══════════ PRIVACIDADE ═══════════ */
.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.privacy-grid h3 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 12px;
}
.privacy-lead { font-size: 15px; margin-bottom: 18px; color: var(--text); }
.privacy-list { list-style: none; }
.privacy-list li { padding: 6px 0; font-size: 14px; color: var(--text); display: flex; gap: 10px; align-items: flex-start; }

.privacy-card {
  background: linear-gradient(180deg, rgba(26,34,48,0.9), rgba(11,14,20,0.9));
  border: 1px solid color-mix(in oklab, var(--teal) 50%, var(--border));
  border-radius: 6px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0 22px -8px var(--teal-bright);
}
.privacy-stat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 10px 0;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.4;
}
.privacy-stat:not(:last-child) { border-bottom: 1px dashed rgba(255,255,255,0.08); }
.privacy-stat b { color: var(--gold-light); }
.psk { font-size: 22px; line-height: 1; flex-shrink: 0; }

/* ═══════════ CTA FINAL ═══════════ */
.cta-final-sec { padding-bottom: 8px; }
.cta-final-body { padding: 36px; text-align: center; }
.cta-final-body h2 {
  font-family: 'Cinzel', serif;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta-final-body p { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.cta-foot {
  margin-top: 20px;
  font-family: 'VT323', monospace;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'VT323', monospace;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}
.footer-nav { display: flex; gap: 20px; }
.footer-nav a {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-meta { font-size: 12px; color: var(--text-muted); font-family: 'VT323', monospace; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .topbar-inner { padding: 10px 16px; gap: 12px; }
  .nav { display: none; }
  .ornate { margin: 22px 12px; }
  .hero-grid { grid-template-columns: 1fr; padding: 28px 24px; }
  .hero-h1 { font-size: 52px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-grid h3 { font-size: 26px; }
  .mascots-row { grid-template-columns: repeat(3, 1fr); }
  .cta-final-body h2 { font-size: 32px; }
}
@media (max-width: 560px) {
  .hero-h1 { font-size: 42px; }
  .section-body { padding: 22px 18px 26px; }
  .mascots-row { grid-template-columns: repeat(2, 1fr); }
  .btn-cta.huge { font-size: 22px; padding: 14px 28px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .mascot, .mascot .aura, .mascot .tail, .mascot .crown, .mascot .body { animation: none; }
  .hud-bar-fill::after, .xp-fill::after { animation: none; }
  .mascot-card.rarity-lendario .mini-mascot { animation: none; }
}
