/* ═══════════════════════════════════════════════════════════════
   BOOSTINGPLACE — CYBERPUNK / HUD / MILITARY SCI-FI INTERFACE
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;800;900&family=Share+Tech+Mono&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:           #020408;
  --bg-2:         #050B12;
  --bg-card:      #080F18;
  --surface:      #0C1520;
  --surface-2:    #101C2A;

  --cyan:         #00F5FF;
  --cyan-dim:     #00CFFD;
  --cyan-glow:    rgba(0,245,255,0.15);
  --cyan-glow-2:  rgba(0,245,255,0.06);
  --green:        #00FF41;
  --amber:        #FFB800;
  --red:          #FF2244;

  --border:       rgba(0,245,255,0.12);
  --border-bright:rgba(0,245,255,0.35);
  --border-dim:   rgba(0,245,255,0.06);

  --text:         #E0F4FF;
  --text-2:       rgba(0,245,255,0.6);
  --text-3:       rgba(0,245,255,0.3);
  --text-4:       rgba(0,245,255,0.15);

  --font-display: 'Orbitron', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Rajdhani', sans-serif;

  --nav-h:        72px;
  --container:    1200px;
}

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

html { scroll-behavior: smooth; }

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

/* ── Background grid overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Scanlines overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Custom Cursor — désactivé ── */

/* ── Boot Screen ── */
#boot-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: opacity 0.6s ease;
}

#boot-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.boot-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 0 30px var(--cyan), 0 0 60px rgba(0,245,255,0.3);
  animation: pulse-glow 1s ease-in-out infinite;
}

.boot-loading {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.boot-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.15em;
  min-height: 1.2em;
}

.boot-bar {
  width: 280px;
  height: 2px;
  background: var(--border);
  overflow: hidden;
  position: relative;
}

.boot-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan-dim), var(--cyan));
  box-shadow: 0 0 8px var(--cyan);
  transition: width 0.08s linear;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Keyframe Animations ── */
@keyframes glitch {
  0%   { transform: none; text-shadow: none; clip-path: none; }
  20%  { transform: translate(2px, 0); text-shadow: -1px 0 var(--cyan), 1px 0 rgba(255,0,80,0.5); }
  40%  { clip-path: inset(30% 0 50% 0); transform: translate(-2px, 0); }
  60%  { clip-path: none; transform: translate(1px, 0); text-shadow: 1px 0 var(--cyan); }
  100% { transform: none; text-shadow: none; clip-path: none; }
}

@keyframes scan {
  0%   { top: -2px; }
  100% { top: 102%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes flicker {
  0%, 91%, 93%, 95%, 100% { opacity: 1; }
  92%, 94% { opacity: 0.3; }
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0,245,255,0.3); }
  50%       { text-shadow: 0 0 40px var(--cyan), 0 0 80px rgba(0,245,255,0.5); }
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 8px var(--cyan-glow); }
  50%       { box-shadow: 0 0 20px var(--cyan-glow); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes hex-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}

/* ── Glitch class — joue une seule fois au chargement ── */
.glitch { animation: none; }
.glitch.glitch-once { animation: glitch 0.6s ease-out 1 forwards; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─────────────────────────────────────────────────────────────
   NAVBAR
   ───────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(2,4,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--nav-h);
  position: relative;
}

.nav-status-bar {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
}

.nav-status-bar .s-online { color: var(--green); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span { color: var(--cyan); }
.nav-logo::before { content: '[ '; color: var(--text-3); }
.nav-logo::after  { content: ' ]'; color: var(--text-3); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.7rem;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--cyan);
  border-color: var(--border);
  background: var(--cyan-glow-2);
}

.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  position: relative;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  cursor: pointer;
  transition: color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 0;
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover {
  color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow), 0 0 32px rgba(0,245,255,0.15);
}

.btn-primary:hover::before { opacity: 0.08; }

.btn-primary.btn-lg { font-size: 0.82rem; padding: 1rem 2.5rem; }
.btn-primary.btn-sm { font-size: 0.68rem; padding: 0.55rem 1.2rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.btn-secondary:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: var(--cyan-glow-2);
}

.btn-secondary.btn-lg { padding: 1rem 2.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cyan);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(2,4,8,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-2);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.75rem 1rem;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.mobile-menu a:hover {
  color: var(--cyan);
  border-left-color: var(--cyan);
  background: var(--cyan-glow-2);
}

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-hex-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpolygon points='60,2 118,32 118,72 60,102 2,72 2,32' fill='none' stroke='rgba(0,245,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 104px;
  animation: hex-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,245,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.hero-content { position: relative; }

/* HUD corners */
.hud-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hud-tl { top: 0; left: 0; }
.hud-tr { top: 0; right: 0; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 1px solid rgba(0,255,65,0.2);
  padding: 0.4rem 1rem;
  background: rgba(0,255,65,0.04);
  width: fit-content;
}

.hero-status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-title .text-cyan {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0,245,255,0.4);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  min-height: 3em;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--cyan);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-games {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-games-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-game-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  background: var(--cyan-glow-2);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.hero-game-tag:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* HUD Panel */
.hero-hud-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  min-width: 210px;
  position: relative;
  flex-shrink: 0;
}

.hero-hud-panel::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 16px; height: 16px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.hero-hud-panel::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.hud-panel-title {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.hud-line {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-2);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hud-line .green { color: var(--green); text-shadow: 0 0 8px rgba(0,255,65,0.4); }
.hud-line .cyan  { color: var(--cyan);  text-shadow: 0 0 8px rgba(0,245,255,0.4); }
.hud-line .amber { color: var(--amber); text-shadow: 0 0 8px rgba(255,184,0,0.4); }
.hud-line .flicker { animation: flicker 3.5s ease-in-out infinite; }

/* ─────────────────────────────────────────────────────────────
   STATS BAR
   ───────────────────────────────────────────────────────────── */
.stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-pre {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,245,255,0.4);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   SECTION COMMON
   ───────────────────────────────────────────────────────────── */
.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  background: var(--cyan-glow-2);
  margin-bottom: 1rem;
}

.section-label::before { content: '> '; opacity: 0.6; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   GAMES SECTION
   ───────────────────────────────────────────────────────────── */
.games-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.games-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
  cursor: pointer;
  --game-color: var(--cyan);
}

.game-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 16px; height: 16px;
  border-top: 2px solid var(--game-color);
  border-left: 2px solid var(--game-color);
  z-index: 2;
  transition: border-color 0.3s;
}

.game-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  border-bottom: 2px solid var(--game-color);
  border-right: 2px solid var(--game-color);
  z-index: 2;
}

.game-card .scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--game-color), transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  top: 0;
}

.game-card:hover .scan-line {
  opacity: 0.5;
  animation: scan 1.5s ease-in-out infinite;
}

.game-card:hover { background: var(--surface); }

.game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.game-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 2.5s ease-in-out infinite;
}

.game-status-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.game-id {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
}

.game-hover-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--game-color);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.game-icon-large {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0,245,255,0.2));
  transition: filter 0.3s, transform 0.3s;
}

.game-card:hover .game-icon-large {
  filter: drop-shadow(0 0 20px rgba(0,245,255,0.4));
  transform: scale(1.05);
}

.game-card-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.game-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.game-card-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: letter-spacing 0.3s;
}

.game-card-link::before { content: '> '; }

.game-card:hover .game-card-link { letter-spacing: 0.2em; }

/* Per-game accent colors */
.game-card[data-game="lol"]         { --game-color: #C89B3C; }
.game-card[data-game="valorant"]    { --game-color: #FF4655; }
.game-card[data-game="warzone"]     { --game-color: #4FC3F7; }
.game-card[data-game="fortnite"]    { --game-color: #A3E635; }
.game-card[data-game="cs2"]         { --game-color: #F5A623; }
.game-card[data-game="clashroyale"] { --game-color: #CE93D8; }

/* Features row */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-item {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}

.feature-item:hover { background: var(--surface); }

.feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }

.feature-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────────────────────── */
.marquee-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  background: var(--bg-2);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-section:hover .marquee-content { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 2rem;
}

.marquee-item::after {
  content: ' ///';
  color: var(--border-bright);
  margin-left: 2rem;
}

/* ─────────────────────────────────────────────────────────────
   STEPS SECTION
   ───────────────────────────────────────────────────────────── */
.steps-section {
  background: var(--bg-2);
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.step-card {
  position: relative;
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 12px; height: 12px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  opacity: 0.5;
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 12px; height: 12px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  opacity: 0.5;
}

.step-card:hover { background: var(--surface); }

.step-code {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  margin-bottom: 1.25rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.cta-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4rem 3rem;
  text-align: center;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 24px; height: 24px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 24px; height: 24px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.cta-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  top: 0;
  pointer-events: none;
}

.cta-card:hover .cta-scan {
  opacity: 0.25;
  animation: scan 3s ease-in-out infinite;
}

.cta-bg-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-bg-glow-1 { background: rgba(0,245,255,0.04); top: -100px; left: -100px; }
.cta-bg-glow-2 { background: rgba(0,100,255,0.04); bottom: -100px; right: -100px; }

.cta-game-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-game-pill {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  background: var(--cyan-glow-2);
  text-transform: uppercase;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-title .text-cyan { color: var(--cyan); }

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────────
   REVIEWS
   ───────────────────────────────────────────────────────────── */
.reviews-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.reviews-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.reviews-fade-left,
.reviews-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.reviews-fade-left  { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.reviews-fade-right { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.reviews-container { overflow: hidden; }

.reviews-track {
  display: flex;
  gap: 1px;
  animation: marquee 40s linear infinite;
  width: max-content;
  background: var(--border);
}

.reviews-wrapper:hover .reviews-track { animation-play-state: paused; }

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  min-width: 320px;
  max-width: 320px;
  position: relative;
  transition: background 0.3s;
}

.review-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 12px; height: 12px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  opacity: 0.4;
}

.review-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 12px; height: 12px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  opacity: 0.4;
}

.review-stars {
  color: var(--amber);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(255,184,0,0.4);
}

.review-quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cyan);
  opacity: 0.2;
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.review-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}

.review-avatar {
  width: 34px;
  height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-game {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.faq-item {
  background: var(--bg-card);
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
}

.faq-item.open {
  background: var(--surface);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-toggle {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 0.72rem;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.faq-question:hover { color: var(--cyan); }
.faq-item.open .faq-question { color: var(--cyan); }
.faq-chevron { display: none; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  border-left: 2px solid var(--cyan);
  margin: 0 1.5rem 0 3rem;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--cyan); }
.footer-logo::before { content: '[ '; color: var(--text-3); }
.footer-logo::after  { content: ' ]'; color: var(--text-3); }

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-heading::before { content: '// '; opacity: 0.5; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before { content: '>'; color: var(--text-3); font-size: 0.6rem; }
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-bottom > div:first-child {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
}

.footer-bottom > div:first-child::before { content: '// '; }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-3);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--cyan); }

/* ─────────────────────────────────────────────────────────────
   CALCULATOR PAGE
   ───────────────────────────────────────────────────────────── */
.calc-page-wrap {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  z-index: 1;
}

.calc-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.calc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.calc-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.75rem 0;
}

.calc-header .text-cyan { color: var(--cyan); }

.calc-header p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-2);
  letter-spacing: 0.12em;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--cyan); }

/* Progress */
.progress-wrap { margin-bottom: 3rem; }

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.prog-step-num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-2);
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.prog-step.active .prog-step-num {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 16px var(--cyan);
}

.prog-step.done .prog-step-num {
  background: rgba(0,245,255,0.15);
  border-color: var(--cyan);
  color: var(--cyan);
}

.prog-step-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.prog-step.active .prog-step-label { color: var(--cyan); }

.prog-connector {
  width: 80px;
  height: 1px;
  background: var(--border);
  transition: background 0.3s;
  margin-top: -1rem;
}

.prog-connector.done { background: var(--cyan); }

.progress-bar-outer {
  height: 2px;
  background: var(--border);
  margin-top: 1rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-dim), var(--cyan));
  box-shadow: 0 0 8px var(--cyan);
  transition: width 0.5s ease;
}

/* Calc step */
.calc-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.calc-step::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 16px; height: 16px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.calc-step::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.step-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.step-header h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.step-header p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
}

.step-header-code {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-3);
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
}

/* Game grid */
.calc-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.calc-game-card {
  background: var(--bg-card);
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s, border 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  position: relative;
  text-align: center;
}

.calc-game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.calc-game-card:hover::before { transform: scaleX(1); }
.calc-game-card:hover { background: var(--surface); }

.calc-game-card.selected {
  background: var(--surface);
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 20px var(--cyan-glow-2);
}

.calc-game-emoji {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0,245,255,0.15));
}

.calc-game-name {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calc-game-card.selected .calc-game-name { color: var(--cyan); }

.calc-select-tag {
  display: block;
  margin: 0.6rem auto 0;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.calc-game-card.selected .calc-select-tag,
.calc-game-card:hover .calc-select-tag {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* Rank sections */
.rank-section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.rank-section-label::before { content: '> '; }

.rank-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.rank-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  background: var(--bg-card);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
}

.rank-pill:hover:not(.disabled) {
  color: var(--cyan);
  border-color: var(--cyan);
  background: var(--cyan-glow-2);
}

.rank-pill.selected {
  color: var(--bg);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.rank-pill.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* Boost direction */
.boost-direction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.boost-direction::before {
  content: 'MISSION_PARAMS';
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  color: var(--text-3);
  background: var(--surface);
  padding: 0 0.4rem;
  letter-spacing: 0.2em;
}

.boost-rank-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.boost-rank-value {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.boost-from .boost-rank-value { color: var(--amber); }
.boost-to   .boost-rank-value { color: var(--cyan); }

.boost-arrow-icon { font-family: var(--font-mono); color: var(--text-3); font-size: 1rem; }

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
  margin: 1rem 0;
  border-left: 2px solid var(--border);
  padding-left: 0.75rem;
}

/* Step nav */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.step-nav-right { display: flex; gap: 1rem; }

/* Price card */
.price-reveal-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
  animation: pulse-border 3s ease-in-out infinite;
}

.price-reveal-card::before {
  content: '[ ANALYSE TERMINÉE ]';
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--cyan);
  background: var(--surface);
  padding: 0 0.75rem;
  letter-spacing: 0.25em;
  white-space: nowrap;
}

.price-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.price-route-from { font-family: var(--font-mono); font-size: 0.8rem; color: var(--amber); letter-spacing: 0.08em; }
.price-route-arrow { color: var(--text-3); font-size: 1rem; }
.price-route-to { font-family: var(--font-mono); font-size: 0.8rem; color: var(--cyan); letter-spacing: 0.08em; }

.price-game-row {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0,245,255,0.5);
  line-height: 1;
  margin: 0.5rem 0 1rem;
}

.price-eta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.price-meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
}

.no-price-msg {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  padding: 2rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--border);
}

/* ─────────────────────────────────────────────────────────────
   ORDER PAGE
   ───────────────────────────────────────────────────────────── */
.order-page-wrap {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  z-index: 1;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.order-header { margin-bottom: 2rem; }

.order-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.order-header h1 .text-cyan { color: var(--cyan); }

.order-header p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.12em;
}

.order-page-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--cyan);
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  background: var(--bg-card);
}

.trust-icon { font-size: 0.82rem; }

/* Form card */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 16px; height: 16px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.form-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.form-section-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.form-section-title::before { content: '// '; opacity: 0.5; }

.form-group { margin-bottom: 1.25rem; }

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

label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

label::before { content: '> '; color: var(--text-3); }

input, select, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  letter-spacing: 0.05em;
}

input::placeholder, textarea::placeholder { color: var(--text-3); }

input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

input.invalid, select.invalid {
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(255,34,68,0.2);
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(0,245,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

select option { background: var(--bg-card); color: var(--text); }

textarea { resize: vertical; min-height: 80px; }

.form-divider { height: 1px; background: var(--border); margin: 1.75rem 0; }

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--cyan);
  cursor: pointer;
}

.checkbox-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label::before { display: none; }
.checkbox-label a { color: var(--cyan); text-decoration: none; }
.checkbox-label a:hover { text-decoration: underline; }

.form-note {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

.submit-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
}

/* Summary card */
.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.summary-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 16px; height: 16px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.summary-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.summary-card { position: relative; }

.summary-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.summary-title::before { content: '[ '; }
.summary-title::after  { content: ' ]'; }

.summary-game-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.summary-game-emoji { font-size: 1.75rem; }

.summary-game-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-rows { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.summary-row-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-row-value {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.06em;
  text-align: right;
}

.summary-divider { height: 1px; background: var(--border); margin: 1rem 0; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.summary-total-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.summary-total-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,245,255,0.4);
}

.summary-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.summary-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-2);
}

.summary-feature-icon {
  color: var(--green);
  font-size: 0.72rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  font-family: var(--font-mono);
}

/* Success screen */
.success-screen { text-align: center; padding: 2rem 1rem; }

.success-checkmark {
  width: 70px;
  height: 70px;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: var(--green);
  margin: 0 auto 2rem;
  box-shadow: 0 0 20px rgba(0,255,65,0.25), inset 0 0 20px rgba(0,255,65,0.06);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.success-title .text-cyan { color: var(--cyan); }

.success-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 450px;
  margin: 0 auto 2rem;
}

.success-summary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.success-summary-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.success-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: scan 2s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .games-bento { grid-template-columns: repeat(2, 1fr); }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-hud-panel { display: none; }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary-col { order: -1; }
  .summary-card { position: static; }
  .calc-games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .games-bento { grid-template-columns: 1fr 1fr; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .calc-games-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-connector  { width: 40px; }
}

@media (max-width: 480px) {
  .games-bento  { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .calc-games-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .calc-step  { padding: 1.5rem 1rem; }
  .form-card  { padding: 1.5rem 1rem; }
}

/* ── Utility ── */
.text-cyan  { color: var(--cyan); }
.text-green { color: var(--green); }
.text-amber { color: var(--amber); }

/* ═══════════════════════════════════════════════════════════════
   AUTH PAGE
   ═══════════════════════════════════════════════════════════════ */
.auth-page-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  position: relative;
  z-index: 1;
}

.auth-container {
  width: 100%;
  max-width: 480px;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.auth-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-2);
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  padding: 2rem;
  position: relative;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 20px; height: 20px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.auth-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 20px; height: 20px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.auth-tab {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.auth-tab:hover { color: var(--text-2); }
.auth-tab.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.auth-form-wrap {}

.auth-alert {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.75rem 1rem;
  border: 1px solid;
  margin-bottom: 1rem;
}

.auth-alert-error {
  color: var(--red);
  border-color: rgba(255,34,68,0.4);
  background: rgba(255,34,68,0.06);
}

.auth-alert-success {
  color: var(--green);
  border-color: rgba(0,255,65,0.4);
  background: rgba(0,255,65,0.06);
}

.auth-switch-hint {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  margin-top: 1.25rem;
}

.auth-switch-hint a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}

.auth-switch-hint a:hover { opacity: 0.7; }

/* ── Navbar auth indicator ── */
.nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  background: var(--cyan-glow-2);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-user-btn:hover {
  border-color: var(--cyan);
  background: rgba(0,245,255,0.1);
}

.nav-user-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   BOOSTER PAGE
   ═══════════════════════════════════════════════════════════════ */
.booster-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.booster-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,245,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.booster-hero-inner {
  padding: 5rem 0;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.booster-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 1.25rem 0 1rem;
}

.booster-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.booster-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  width: fit-content;
  background: var(--bg-card);
}

.booster-stat-item {
  padding: 1rem 1.5rem;
  text-align: center;
}

.booster-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.booster-stat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.booster-stat-sep {
  font-family: var(--font-mono);
  color: var(--border-bright);
  padding: 0 0.25rem;
  align-self: center;
}

/* Requirements */
.booster-reqs-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.booster-reqs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.booster-req-card {
  background: var(--bg-card);
  padding: 2rem;
  position: relative;
  transition: background 0.3s;
}

.booster-req-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
  opacity: 0;
  transition: opacity 0.3s;
}

.booster-req-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
  opacity: 0;
  transition: opacity 0.3s;
}

.booster-req-card:hover { background: var(--surface); }
.booster-req-card:hover::before,
.booster-req-card:hover::after { opacity: 1; }

.req-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.req-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.req-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Perks */
.booster-perks-section {
  padding: 6rem 0;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.booster-perks-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}

.booster-perk-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.booster-perk-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.booster-perk-icon {
  font-size: 0.7rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.booster-perk-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.booster-perk-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}

.booster-perks-hud {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  min-width: 230px;
  position: relative;
  flex-shrink: 0;
}

.booster-perks-hud::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 16px; height: 16px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.booster-perks-hud::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

/* Application form */
.booster-form-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.booster-form-card-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS MODAL
   ═══════════════════════════════════════════════════════════════ */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,4,8,0.92);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.review-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.review-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  padding: 2rem;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

.review-modal-overlay.open .review-modal {
  transform: translateY(0);
}

.review-modal::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 20px; height: 20px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.review-modal::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 20px; height: 20px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.review-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.review-modal-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.review-modal-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.review-modal-close:hover {
  color: var(--red);
  border-color: var(--red);
}

/* Star rating */
.star-rating {
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--border-bright);
  transition: color 0.15s, transform 0.15s;
  padding: 0;
  line-height: 1;
}

.star-btn.active,
.star-btn:hover { color: var(--amber); transform: scale(1.15); }

/* Reviews section CTA */
.reviews-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — NEW PAGES
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .booster-perks-inner { grid-template-columns: 1fr; }
  .booster-perks-hud   { min-width: auto; }
  .booster-reqs-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .booster-reqs-grid  { grid-template-columns: 1fr; }
  .booster-stats-row  { flex-direction: column; width: 100%; }
  .booster-stat-sep   { display: none; }
  .booster-stat-item  { border-bottom: 1px solid var(--border); width: 100%; }
  .auth-card          { padding: 1.5rem 1rem; }
  .admin-sidebar      { width: 200px; min-width: 200px; }
  .admin-main         { padding: 1rem; }
}

@media (max-width: 480px) {
  .auth-tabs { flex-direction: column; }
  .admin-dashboard { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; }
  .admin-nav { display: flex; flex-wrap: wrap; padding: 0.5rem; }
  .admin-nav-btn { padding: 0.5rem; }
}
.text-red   { color: var(--red); }
