@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #08080a;
  --bg-elev: #101013;
  --bg-card: #131318;
  --bg-card-hover: #16161c;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f5f7;
  --text-muted: rgba(245, 245, 247, 0.55);
  --text-dim: rgba(245, 245, 247, 0.35);

  --accent: #ff7a1a;
  --accent-soft: #ffa56b;
  --accent-deep: #e45a00;
  --accent-glow: rgba(255, 122, 26, 0.35);
  --accent-glow-soft: rgba(255, 122, 26, 0.12);
  --accent-bg: rgba(255, 122, 26, 0.08);

  --danger: #ff3b3b;
  --success: #1ade7d;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-glow: 0 0 60px -10px var(--accent-glow);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 122, 26, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 122, 26, 0.04), transparent);
}

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

::selection { background: var(--accent); color: #000; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(8, 8, 10, 0.7);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 32px;
  width: auto;
  max-width: 40px;
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px -2px var(--accent-glow);
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
}

.logo-dot { color: var(--accent); }

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

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

.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.nav-links a.active { color: var(--accent); }

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

.nav-toggle { display: none; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: all 0.18s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  color: #1a0a00;
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.6) inset, 0 6px 24px -6px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.8) inset, 0 12px 32px -8px var(--accent-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); }

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

.btn-danger {
  background: rgba(255, 59, 59, 0.1);
  color: var(--danger);
  border: 1px solid rgba(255, 59, 59, 0.3);
}

.btn-danger:hover { 
  background: rgba(255, 59, 59, 0.15);
  border-color: rgba(255, 59, 59, 0.5);
}

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

.btn-icon { padding: 10px; width: 40px; height: 40px; justify-content: center; }

/* ============ BADGES & TAGS ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-glow-soft);
}

.badge-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.65; transform: translateX(-50%) scale(1.05); }
}

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

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

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 32px;
}

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

.compat-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.compat-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.compat-item .check { color: var(--accent); }

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

.logo-orb {
  position: absolute;
  inset: 8%;
  display: grid;
  place-items: center;
  animation: orbFloat 6s ease-in-out infinite;
}

.logo-orb::before {
  content: '';
  position: absolute;
  inset: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 55%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.logo-orb::after {
  content: '';
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.logo-floating {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px var(--accent-glow));
}

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

.hero-card {
  position: absolute;
  background: rgba(20, 20, 25, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  animation: floatY 5s ease-in-out infinite;
}

.hero-card-1 { top: 12%; left: -8%; animation-delay: 0s; }
.hero-card-2 { top: 38%; right: -10%; animation-delay: 1.5s; }
.hero-card-3 { bottom: 12%; left: 8%; animation-delay: 3s; }

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

.hero-card .ico {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 14px;
}

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

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

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .tag { display: block; margin-bottom: 14px; color: var(--accent); }

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-head h2 .accent { color: var(--accent); font-style: italic; font-weight: 600; }

.section-head p { color: var(--text-muted); font-size: 17px; }

/* ============ CARDS ============ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.card:hover { background: var(--bg-card-hover); border-color: var(--border-strong); transform: translateY(-2px); }

.card-glow:hover { box-shadow: 0 30px 60px -20px var(--accent-glow-soft); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
  border: 1px solid var(--accent-glow-soft);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

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

/* ============ SCREENSHOTS GRID ============ */
.shots-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  grid-auto-rows: 200px;
}

.shot {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.shot:hover { border-color: var(--accent-glow-soft); box-shadow: var(--shadow-glow); }

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot.tall { grid-row: span 2; }
.shot.wide { grid-column: span 2; }

.shot-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.08), transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.015) 12px, rgba(255, 255, 255, 0.015) 13px);
}

.shot-placeholder .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shot-placeholder .pic {
  position: absolute;
  inset: 16px;
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 32px;
  opacity: 0.6;
}

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

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.25s ease;
}

.price-card.featured {
  border-color: var(--accent-glow-soft);
  background:
    linear-gradient(180deg, rgba(255, 122, 26, 0.05), transparent 40%),
    var(--bg-card);
  box-shadow: 0 30px 60px -25px var(--accent-glow);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(180deg, var(--accent), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }

.price-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 16px 0 4px;
}

.price-amount .currency { font-size: 30px; vertical-align: top; color: var(--accent); }
.price-amount .period { font-size: 14px; font-weight: 400; color: var(--text-muted); margin-left: 4px; }

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

.price-features { list-style: none; margin-bottom: 28px; }

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child { border-bottom: none; }

.price-features .icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
}

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

.dl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.dl-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--accent-glow-soft), transparent 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.dl-card:hover { border-color: var(--accent-glow-soft); transform: translateY(-3px); }

.dl-card .game-art {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  background: var(--bg-elev);
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.dl-card .game-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--accent-glow-soft), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.dl-card .game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.dl-card .game-emoji {
  font-size: 64px;
  filter: drop-shadow(0 8px 20px var(--accent-glow));
  position: relative;
  z-index: 1;
}

.dl-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

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

.dl-meta { display: flex; gap: 16px; margin: 16px 0 24px; font-size: 12px; color: var(--text-dim); flex-wrap: wrap; }

.dl-meta span { display: flex; align-items: center; gap: 4px; }

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

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  z-index: 1;
}

.auth-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--accent-glow-soft), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.auth-card h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

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

.field { margin-bottom: 16px; }

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

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

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow-soft);
}

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

.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.checkbox-row input { width: 16px; height: 16px; accent-color: var(--accent); }

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

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

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

/* ============ DASHBOARD ============ */
.dash {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 40px 0;
  min-height: calc(100vh - 80px);
}

.sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.user-block {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #1a0a00;
  margin-bottom: 12px;
  box-shadow: 0 0 30px -5px var(--accent-glow);
}

.user-name { font-family: var(--font-display); 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: 4px; }
.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.15s ease;
}
.side-nav a:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.side-nav a.active { background: var(--accent-bg); color: var(--accent); }

.dash-main h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

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

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

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

.stat-card .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 12px;
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

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

.stat-card .stat-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.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-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.key-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: all 0.15s ease;
}

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

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

.key-info { flex: 1; min-width: 0; }
.key-info .game-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }

.key-value {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.key-actions { display: flex; gap: 8px; }

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

.footer a { color: var(--text-muted); transition: color 0.15s ease; }
.footer a:hover { color: var(--accent); }

/* ============ MISC ============ */
.cta-banner {
  margin: 40px 0;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.12), rgba(255, 122, 26, 0.02)),
    var(--bg-card);
  border: 1px solid var(--accent-glow-soft);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow-soft), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p { color: var(--text-muted); margin-bottom: 24px; position: relative; }
.cta-banner .btn { position: relative; }

.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

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

.faq-q {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
}

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

/* ============ FADE IN ============ */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 0.7s ease forwards; }
.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.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: rgba(8,8,10,0.95); backdrop-filter: blur(20px); padding: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; border-radius: 8px; }
  .nav-toggle { display: grid; place-items: center; }

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

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

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

  .auth-card { padding: 28px 22px; }

  .cta-banner { padding: 36px 24px; }

  section { padding: 60px 0; }
}

@media (max-width: 540px) {
  .hero-card-1, .hero-card-3 { display: none; }
  .price-amount { font-size: 44px; }
}
