@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-0: #07021a;
  --bg-1: #0f0628;
  --bg-2: #1a0d3d;
  --bg-card: rgba(26, 13, 61, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.03);

  --text: #ffffff;
  --text-muted: #b4a3d6;
  --text-dim: #7a6a9c;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);

  --pink: #ff2d8a;
  --pink-soft: rgba(255, 45, 138, 0.15);
  --cyan: #00e5ff;
  --cyan-soft: rgba(0, 229, 255, 0.15);
  --lime: #ccff00;
  --lime-soft: rgba(204, 255, 0, 0.15);
  --purple: #a855f7;
  --purple-soft: rgba(168, 85, 247, 0.15);
  --orange: #ff6b35;

  --gradient: linear-gradient(135deg, #ff2d8a 0%, #a855f7 50%, #00e5ff 100%);
  --gradient-warm: linear-gradient(135deg, #ff2d8a, #ff6b35);
  --gradient-cool: linear-gradient(135deg, #a855f7, #00e5ff);
  --gradient-electric: linear-gradient(135deg, #00e5ff, #ccff00);
  --gradient-conic: conic-gradient(from 220deg, #ff2d8a 0%, #a855f7 25%, #00e5ff 50%, #ccff00 70%, #ff2d8a 100%);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --glow-pink: 0 0 30px rgba(255, 45, 138, 0.5);
  --glow-cyan: 0 0 30px rgba(0, 229, 255, 0.5);
  --glow-lime: 0 0 30px rgba(204, 255, 0, 0.5);
  --glow-purple: 0 0 30px rgba(168, 85, 247, 0.5);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(255, 45, 138, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(0, 229, 255, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(168, 85, 247, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

::selection { background: var(--pink); color: white; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: var(--radius-pill); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.eyebrow.outline {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  animation: none;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 2, 26, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 10px rgba(255, 45, 138, 0.5));
}

.logo-name { display: flex; flex-direction: column; line-height: 0.95; }
.logo-name .top { font-size: 10px; letter-spacing: 0.2em; color: var(--cyan); font-weight: 700; text-transform: uppercase; }
.logo-name .bot { font-size: 22px; font-weight: 700; }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: all 0.18s ease;
}

.nav-links a:hover { color: var(--text); background: var(--bg-glass); }
.nav-links a.active { color: var(--text); background: var(--purple-soft); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.nav-toggle { display: none; padding: 8px 12px; border: 1px solid var(--line); background: transparent; border-radius: var(--radius-sm); color: var(--text); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  background-size: 200% 200%;
  box-shadow: 0 4px 20px rgba(255, 45, 138, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 45, 138, 0.55), var(--glow-cyan);
  background-position: 100% 0;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--bg-0);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
}

.btn-cyan:hover { transform: translateY(-2px); box-shadow: var(--glow-cyan), 0 8px 25px rgba(0, 229, 255, 0.5); }

.btn-lime {
  background: var(--lime);
  color: var(--bg-0);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(204, 255, 0, 0.4);
}

.btn-lime:hover { transform: translateY(-2px); box-shadow: var(--glow-lime), 0 8px 25px rgba(204, 255, 0, 0.5); }

.btn-outline {
  background: var(--bg-glass);
  color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}

.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

.btn-ghost { color: var(--text-muted); padding: 12px 16px; }
.btn-ghost:hover { color: var(--text); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ============ HERO ============ */
.hero { padding: 80px 0 100px; position: relative; }

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

.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 24px 0 22px;
}

.hero p.lead { max-width: 480px; margin-bottom: 32px; }

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

.compat-list {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.compat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}

.compat-pill::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.compat-pill.cyan::before { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.compat-pill.pink::before { background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.compat-pill.lime::before { background: var(--lime); box-shadow: 0 0 10px var(--lime); }

.hero-visual { position: relative; aspect-ratio: 1; max-width: 520px; justify-self: center; width: 100%; }

.hero-orb {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: var(--gradient-conic);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
  animation: orbSpin 12s linear infinite;
}

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

.hero-orb img {
  position: relative;
  width: 80%;
  height: 80%;
  object-fit: contain;
  animation: orbFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(168, 85, 247, 0.4));
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card {
  position: absolute;
  background: rgba(26, 13, 61, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  font-size: 13px;
}

.hero-card-1 { bottom: 8%; left: -5%; animation: float1 6s ease-in-out infinite; }
.hero-card-2 { top: 8%; right: -5%; animation: float2 7s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-10px) rotate(-2deg); } }

.hero-card .ico {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  font-size: 18px;
}
.hero-card.pink .ico { background: var(--pink-soft); color: var(--pink); box-shadow: 0 0 16px var(--pink-soft); }
.hero-card.cyan .ico { background: var(--cyan-soft); color: var(--cyan); box-shadow: 0 0 16px var(--cyan-soft); }

.hero-card strong { display: block; color: var(--text); font-weight: 700; font-size: 13px; }
.hero-card small { color: var(--text-muted); font-size: 11px; }

/* ============ SECTIONS ============ */
section { padding: 80px 0; position: relative; }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow { display: inline-flex; margin-bottom: 22px; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.section-head p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ============ FEATURE CARDS ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  opacity: 0.5;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

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

.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: 28px;
  margin-bottom: 22px;
}

.feature-icon.pink { background: var(--pink-soft); color: var(--pink); box-shadow: var(--glow-pink); }
.feature-icon.cyan { background: var(--cyan-soft); color: var(--cyan); box-shadow: var(--glow-cyan); }
.feature-icon.lime { background: var(--lime-soft); color: var(--lime); box-shadow: var(--glow-lime); }
.feature-icon.purple { background: var(--purple-soft); color: var(--purple); box-shadow: var(--glow-purple); }

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ STATS ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 64px;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label { color: var(--text-muted); font-size: 13px; margin-top: 6px; font-weight: 500; }

/* ============ SHOTS ============ */
.shots-frame {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: var(--radius-lg);
  position: relative;
}

.shots-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-conic);
  border-radius: var(--radius-lg);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.4;
}

.shots-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  grid-auto-rows: 200px;
}

.shot {
  background: var(--bg-1);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.shot.tall { grid-row: span 2; }
.shot.wide { grid-column: span 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}

.price-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }

.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25);
}

.featured-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--gradient);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(255, 45, 138, 0.5);
}

.price-card .name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card .desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
  min-height: 42px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-amount.plain { background: none; -webkit-text-fill-color: var(--text); }

.price-amount .currency {
  font-size: 28px;
  vertical-align: top;
  margin-right: 4px;
}

.price-period { color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }

.price-features { list-style: none; margin-bottom: 28px; flex: 1; }
.price-features li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
}
.price-features li:last-child { border-bottom: none; }

.check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  font-size: 10px; color: white; font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(255, 45, 138, 0.4);
}

/* ============ DOWNLOAD ============ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.dl-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
}

.dl-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.dl-card .game-art {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}

.dl-card .game-art img { width: 100%; height: 100%; object-fit: cover; }

.dl-card .badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 4px 12px;
  background: var(--gradient);
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(255, 45, 138, 0.3);
}

.dl-card .badge.beta {
  background: var(--lime);
  color: var(--bg-0);
}

.dl-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.dl-card .subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
  flex: 1;
}

/* ============ FORMS / AUTH ============ */
.auth-page {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  padding: 60px 24px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  padding: 44px 40px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}

.auth-card .logo-mini {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 20px rgba(255, 45, 138, 0.5));
}

.auth-card h1 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.auth-sub {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  margin-bottom: 32px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.field input, .field select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}

.field input::placeholder { color: var(--text-dim); }

.checkbox-row { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.checkbox-row input { accent-color: var(--pink); }
.checkbox-row a { color: var(--cyan); font-weight: 600; }

.auth-divider {
  display: flex; gap: 14px; align-items: center;
  margin: 22px 0;
  color: var(--text-dim);
  font-size: 12px;
}

.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

.auth-foot { text-align: center; margin-top: 26px; font-size: 14px; color: var(--text-muted); }
.auth-foot a { color: var(--cyan); font-weight: 600; }

/* ============ DASHBOARD ============ */
.dash {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 32px 0;
  min-height: calc(100vh - 78px);
}

.sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.user-block {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  text-align: center;
}

.user-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700;
  color: white;
  margin: 0 auto 12px;
  box-shadow: 0 4px 20px rgba(255, 45, 138, 0.5);
}

.user-name { font-weight: 700; font-size: 16px; }
.user-mail { color: var(--text-muted); font-size: 12px; }

.side-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.side-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.18s ease;
}
.side-nav a:hover { background: var(--bg-glass); color: var(--text); }
.side-nav a.active { background: var(--purple-soft); color: var(--text); }

.dash-main h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
}

.dash-main .subtitle { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
}
.stat-card.pink::after { background: var(--pink); box-shadow: 0 0 20px var(--pink); }
.stat-card.cyan::after { background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
.stat-card.lime::after { background: var(--lime); box-shadow: 0 0 20px var(--lime); }
.stat-card.purple::after { background: var(--purple); box-shadow: 0 0 20px var(--purple); }

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-meta { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

.stat-pill {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-0);
  padding: 3px 10px;
  background: var(--lime);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}

.section-block {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

.section-block-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap; gap: 12px;
}

.section-block-head h2 {
  font-size: 22px;
  font-weight: 700;
}

.key-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.key-row:hover { border-color: var(--line-strong); }

.key-game {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.key-game.unity { background: var(--cyan-soft); color: var(--cyan); box-shadow: var(--glow-cyan); }
.key-game.retro { background: var(--pink-soft); color: var(--pink); box-shadow: var(--glow-pink); }
.key-game.touch { background: var(--lime-soft); color: var(--lime); box-shadow: var(--glow-lime); }

.key-info { flex: 1; min-width: 0; }
.key-info .game-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }

.key-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.key-actions { display: flex; gap: 6px; }
.key-actions .btn { padding: 7px 14px; font-size: 12px; }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: var(--radius-pill);
}

.tag.lime { background: var(--lime-soft); color: var(--lime); }

/* ============ FAQ ============ */
.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.faq-item:hover { border-color: var(--line-strong); }

.faq-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}

.faq-q::after {
  content: '+';
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.faq-a { color: var(--text-muted); font-size: 14px; line-height: 1.65; max-width: 760px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  margin: 60px auto 0;
  padding: 70px 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(255, 45, 138, 0.2), transparent 60%),
    var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: var(--gradient-conic);
  opacity: 0.1;
  animation: orbSpin 20s linear infinite;
  z-index: 0;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 32px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

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

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-1); padding: 16px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero { padding: 50px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 360px; }

  .shots-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .shot.tall { grid-row: auto; }
  .shot.wide { grid-column: auto; }

  .dash { grid-template-columns: 1fr; padding: 24px 0; }
  .sidebar { position: relative; top: 0; }

  .auth-card { padding: 36px 24px; }

  .cta-banner { padding: 50px 28px; }

  section { padding: 56px 0; }
}
