/* ═══════════════════════════════════════
   RAGE GAME — WEBSITE STYLES
   Cyberpunk / Dark / Gold Aesthetic
════════════════════════════════════════ */

:root {
  --bg: #0A0A0F;
  --surface: #13131A;
  --surface-light: #1C1C28;
  --primary: #FFD700;
  --primary-glow: #FFB300;
  --primary-dim: rgba(255, 215, 0, 0.15);
  --success: #00FF88;
  --error: #FF2D55;
  --warning: #FF6B00;
  --cyan: #00E5FF;
  --purple: #9C27B0;
  --text: #FFFFFF;
  --text-muted: #AAAAAA;
  --track-bg: #252535;
  --border: rgba(255, 215, 0, 0.12);
  --border-bright: rgba(255, 215, 0, 0.35);

  --font-display: 'Orbitron', monospace;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Rajdhani', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

*, *::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;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, opacity 0.2s;
}
body:hover .cursor { opacity: 1; }

/* ── SCANLINES ── */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 8000;
  opacity: 0.4;
}

/* ── GLITCH OVERLAY ── */
.glitch-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8001;
  opacity: 0;
}
.glitch-overlay.active {
  animation: glitchFlash 0.3s steps(2) forwards;
}
@keyframes glitchFlash {
  0% { background: rgba(255,45,85,0.05); opacity:1; }
  50% { background: rgba(0,229,255,0.05); }
  100% { opacity:0; }
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, border-bottom 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,15,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 2px;
  flex-shrink: 0;
}
.logo-bracket { color: var(--primary); }
.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 10px 24px;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover { color: var(--bg); }
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  z-index: -1;
}
.nav-cta:hover::before { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 24px;
  transition: right 0.4s var(--ease-out);
}
.mobile-menu.open { right: 0; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--primary); }
.mobile-cta {
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  text-align: center;
}

/* ═══════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.neural-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--bg) 90%);
  z-index: 2;
}

/* Data badges */
.data-badge {
  position: absolute;
  z-index: 10;
  background: rgba(19,19,26,0.8);
  border: 1px solid var(--border-bright);
  padding: 10px 16px;
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite;
}
.badge-tl { top: 20%; left: 4%; }
.badge-tr { top: 20%; right: 4%; }
.badge-bl { bottom: 20%; left: 4%; }
.badge-br { bottom: 20%; right: 4%; }

.badge-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.badge-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(255,215,0,0.2); }
  50% { border-color: rgba(255,215,0,0.6); box-shadow: 0 0 15px rgba(255,215,0,0.15); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}
.eyebrow-line:last-child { transform: scaleX(-1); }
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--primary);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.title-line {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 6px;
  position: relative;
}
.title-rage {
  font-size: clamp(5rem, 14vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.3));
}
.title-game {
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--primary);
  text-shadow: 0 0 40px rgba(255,215,0,0.5), 0 0 80px rgba(255,215,0,0.2);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 28px 0 36px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
.hero-sub em { color: var(--primary); font-style: normal; }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
}
.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  font-family: var(--font-mono);
  color: rgba(255,215,0,0.3);
  font-size: 1.2rem;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--primary);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(255,215,0,0.5), 0 0 80px rgba(255,215,0,0.2);
}
.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn-primary:hover .btn-shine { left: 150%; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-secondary:hover { color: var(--primary); border-color: var(--primary); }

/* Hero mockup */
.hero-mockup {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0;
  animation: slideInRight 1s var(--ease-out) 1.2s forwards;
}

.phone-frame {
  width: 240px;
  height: 480px;
  border: 2px solid rgba(255,215,0,0.25);
  border-radius: 28px;
  position: relative;
  background: linear-gradient(180deg, #13131A 0%, #0A0A0F 100%);
  box-shadow: 0 0 60px rgba(255,215,0,0.1), inset 0 0 30px rgba(255,215,0,0.03);
  overflow: hidden;
}
.phone-screen {
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 16px;
  background: #0A0A0F;
  border-radius: 0 0 10px 10px;
  z-index: 10;
}

/* Game demo inside phone */
.game-demo {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 20px;
  gap: 16px;
}
.demo-hud {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.65rem;
}
.demo-score { color: var(--primary); }
.demo-combo { color: var(--success); }

.demo-track {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--track-bg);
  position: relative;
  background: var(--surface);
}
.demo-track-bg {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.1);
}
.demo-indicator {
  position: absolute;
  width: 4px;
  height: 40%;
  background: var(--primary);
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary);
}
.demo-target {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 12px;
  background: rgba(0,255,136,0.2);
  border: 1px solid var(--success);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.target-inner {
  width: 8px; height: 4px;
  background: var(--success);
  border-radius: 1px;
}
.demo-tap-hint {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--primary);
  animation: tapHintPulse 1s ease-in-out infinite;
}
@keyframes tapHintPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.demo-hit-flash {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
}
.demo-hit-flash.good { background: rgba(0,255,136,0.3); }
.demo-hit-flash.fail { background: rgba(255,45,85,0.3); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 1.8s forwards;
}
.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: rgba(255,215,0,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,215,0,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 30px; }
  50% { opacity: 1; height: 50px; }
}

/* ═══════════════════════════════════
   SECTION COMMONS
════════════════════════════════════ */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(255,215,0,0.5);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--primary); }
.section-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

/* ═══════════════════════════════════
   MODES SECTION
════════════════════════════════════ */
.modes { background: var(--bg); }

.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.mode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: none;
}
.mode-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 60px rgba(255,215,0,0.08);
}
.card-bg-effect {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.mode-card:hover .card-bg-effect {
  opacity: 1;
}
.mode-classic .card-bg-effect {
  background: radial-gradient(circle at top right, rgba(255,215,0,0.05), transparent 60%);
}
.mode-death .card-bg-effect {
  background: radial-gradient(circle at top right, rgba(255,45,85,0.05), transparent 60%);
}
.mode-immortal .card-bg-effect {
  background: radial-gradient(circle at top right, rgba(255,215,0,0.08), transparent 60%);
}
.mode-daily .card-bg-effect {
  background: radial-gradient(circle at top right, rgba(0,229,255,0.05), transparent 60%);
}

.card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.mode-classic .card-glow { background: var(--primary); }
.mode-death .card-glow { background: var(--error); }
.mode-immortal .card-glow { background: linear-gradient(90deg, var(--primary), var(--warning)); }
.mode-daily .card-glow { background: var(--cyan); }
.mode-card:hover .card-glow { transform: scaleX(1); }

.mode-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 2px;
  padding: 4px 10px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--primary);
}
.badge-danger { background: rgba(255,45,85,0.1); border-color: rgba(255,45,85,0.3); color: var(--error); }
.badge-gold { background: rgba(255,215,0,0.15); border-color: rgba(255,215,0,0.4); color: var(--primary); }
.badge-cyan { background: rgba(0,229,255,0.1); border-color: rgba(0,229,255,0.3); color: var(--cyan); }

.mode-icon-wrap {
  margin-bottom: 20px;
}
.mode-icon { font-size: 2.5rem; }

.mode-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 12px;
}

.mode-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mode-features {
  list-style: none;
  margin-bottom: 24px;
}
.mode-features li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-icon { color: var(--primary); font-size: 0.6rem; }

.mode-difficulty { margin-top: auto; }
.diff-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}
.diff-bar {
  height: 3px;
  background: var(--track-bg);
  border-radius: 2px;
  overflow: hidden;
}
.diff-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 1s var(--ease-out);
  animation: diffGlow 2s ease-in-out infinite;
}
.diff-danger { background: var(--error); }
.diff-gold { background: linear-gradient(90deg, var(--primary), var(--warning)); }
.diff-cyan { background: var(--cyan); }

@keyframes diffGlow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 8px currentColor; }
}

/* ═══════════════════════════════════
   SABOTAGE SECTION
════════════════════════════════════ */
.sabotage {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}

.sabotage-timeline {
  margin-bottom: 48px;
}
.timeline-bar {
  height: 4px;
  background: var(--track-bg);
  border-radius: 2px;
  position: relative;
  margin-bottom: 12px;
}
.timeline-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success), var(--warning), var(--error), var(--purple));
  border-radius: 2px;
  width: 0%;
  transition: width 2s var(--ease-out);
}
.timeline-levels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.sabotage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.sab-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.sab-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.3);
}
.sab-card::before {
  content: attr(data-level);
  position: absolute;
  bottom: -10px; right: 8px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,215,0,0.04);
  pointer-events: none;
}

.sab-ultimate {
  border-color: rgba(255,45,85,0.3);
  background: linear-gradient(135deg, var(--surface), rgba(255,45,85,0.05));
}

.sab-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sab-icon { font-size: 1.5rem; }
.sab-level {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--primary);
}
.sab-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  margin-top: 2px;
}
.sab-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.sab-duration {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--primary);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════
   LEVELS SECTION
════════════════════════════════════ */
.levels { background: var(--bg); }

.levels-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.levels-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phase-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
}
.phase-block:first-child { border-radius: 4px 4px 0 0; }
.phase-block:last-child { border-radius: 0 0 4px 4px; }

.phase-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.phase-range {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.phase-bar {
  height: 3px;
  background: var(--track-bg);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.phase-fill {
  height: 100%;
  width: 100%;
  border-radius: 2px;
}
.phase-features {
  list-style: none;
}
.phase-features li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.phase-features li::before { content: '// '; color: rgba(255,215,0,0.3); }

.phase-arrow {
  text-align: center;
  color: rgba(255,215,0,0.2);
  font-size: 1.2rem;
  padding: 4px 0;
}

/* Boss showcase */
.boss-showcase {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}
.boss-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 8px;
}
.boss-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.boss-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,215,0,0.3) transparent;
}
.boss-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,215,0,0.04);
  border-left: 2px solid var(--primary);
  transition: background 0.2s;
}
.boss-item:hover { background: rgba(255,215,0,0.08); }
.boss-lv {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--primary);
  min-width: 40px;
}
.boss-name-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════
   RAGE MODE SECTION
════════════════════════════════════ */
.rage-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--surface);
}
.rage-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,45,85,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255,215,0,0.05) 0%, transparent 60%);
}
.rage-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rage-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rage-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--error);
  display: block;
  margin-bottom: 16px;
  animation: ragePulse 1s ease-in-out infinite;
}
@keyframes ragePulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; text-shadow: 0 0 10px var(--error); }
}

.rage-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,215,0,0.4);
  margin-bottom: 24px;
}
.rage-title span {
  color: var(--error);
  -webkit-text-stroke: 2px var(--error);
  text-shadow: 0 0 30px rgba(255,45,85,0.5);
}

.rage-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.rage-trigger { }
.trigger-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}
.trigger-conditions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cond-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.cond-icon { font-size: 1.1rem; }

/* Rage Meter */
.rage-meter-wrap {
  background: rgba(10,10,15,0.8);
  border: 1px solid rgba(255,45,85,0.2);
  padding: 32px;
}
.rage-meter-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--error);
  margin-bottom: 20px;
}
.rage-meter {
  height: 24px;
  background: var(--track-bg);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.rage-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--warning), var(--error));
  border-radius: 2px;
  transition: width 0.1s linear;
  box-shadow: 0 0 20px rgba(255,45,85,0.5);
}
.rage-pct {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text);
}
.rage-effects { }
.effect-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.effect-row:last-child { border-bottom: none; }
.eff-name { color: var(--text-muted); }
.eff-val { color: var(--error); font-weight: 600; }

/* ═══════════════════════════════════
   LEADERBOARD
════════════════════════════════════ */
.leaderboard { background: var(--bg); }

.lb-container {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.lb-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.lb-tab {
  flex: 1;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: none;
  transition: color 0.2s, border-color 0.2s;
}
.lb-tab:hover { color: var(--primary); }
.lb-tab.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(255,215,0,0.04); }

.lb-header {
  display: grid;
  grid-template-columns: 60px 1fr 80px 100px 80px 1fr;
  gap: 12px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.lb-body { }
.lb-row {
  display: grid;
  grid-template-columns: 60px 1fr 80px 100px 80px 1fr;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  align-items: center;
  transition: background 0.2s;
}
.lb-row:hover { background: rgba(255,215,0,0.03); }
.lb-row.top-3 { background: rgba(255,215,0,0.05); }
.lb-rank {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}
.lb-rank.rank-1 { color: var(--primary); }
.lb-rank.rank-2 { color: #C0C0C0; }
.lb-rank.rank-3 { color: #CD7F32; }
.lb-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text);
}
.lb-avatar {
  font-size: 1.2rem;
  text-align: center;
}
.lb-score {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}
.lb-level {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.lb-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 3px 8px;
  border: 1px solid var(--border);
  display: inline-block;
}

.lb-you {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255,215,0,0.06);
  border-top: 1px solid rgba(255,215,0,0.2);
}
.you-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--primary);
}
.you-rank {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-muted);
}
.you-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  cursor: none;
}

/* ═══════════════════════════════════
   AVATARS SECTION
════════════════════════════════════ */
.avatars-section { background: var(--surface); }

.avatars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.avatar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  cursor: none;
  position: relative;
}
.avatar-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}
.av-icon { font-size: 2rem; margin-bottom: 8px; }
.av-name {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 4px;
}
.av-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.titles-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.title-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--tc, var(--primary));
  border-color: var(--tc, var(--primary));
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.title-badge:hover { background: rgba(255,255,255,0.05); }

/* ═══════════════════════════════════
   DOWNLOAD SECTION
════════════════════════════════════ */
.download {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.dl-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.dl-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.dl-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dl-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(255,215,0,0.5);
  display: block;
  margin-bottom: 16px;
}
.dl-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.accent-text { color: var(--primary); }
.dl-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.dl-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
  margin-bottom: 28px;
}
.dl-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  cursor: none;
}
.dl-android:hover {
  border-color: var(--success);
  background: rgba(0,255,136,0.05);
  transform: translateX(4px);
}
.dl-ios:hover {
  border-color: var(--primary);
  background: rgba(255,215,0,0.05);
  transform: translateX(4px);
}
.dl-icon {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 32px;
  text-align: center;
}
.dl-small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.dl-big {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
}
.dl-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stars { color: var(--primary); font-size: 1rem; letter-spacing: 2px; }
.dl-rating span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Download phone mockup */
.dl-mockup-wrap { position: relative; display: flex; justify-content: center; }
.dl-phone {
  width: 220px; height: 440px;
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 24px;
  background: linear-gradient(180deg, #13131A 0%, #0A0A0F 100%);
  box-shadow: 0 0 80px rgba(255,215,0,0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.dl-screen {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-game-preview {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.preview-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}
.preview-mode-selector {
  display: flex;
  gap: 4px;
  width: 100%;
}
.pms-item {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.45rem;
  letter-spacing: 1px;
  padding: 5px 2px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.pms-item.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,215,0,0.08);
}
.preview-track {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid var(--track-bg);
  position: relative;
  background: var(--surface);
}
.preview-indicator {
  position: absolute;
  width: 3px; height: 35%;
  background: var(--primary);
  bottom: 50%; left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
  border-radius: 2px;
}
.preview-target {
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 10px;
  background: rgba(0,255,136,0.15);
  border: 1px solid var(--success);
  border-radius: 2px;
}
.preview-score {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.preview-score span {
  color: var(--primary);
}
.dl-glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.1);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%,-50%) scale(1.2); opacity: 0.1; }
}

/* ═══════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}
.footer-version { color: var(--primary); }

/* ═══════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateY(-50%) translateX(60px); }
  to { opacity: 0.6; transform: translateY(-50%) translateX(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .data-badge { display: none; }
  .hero-mockup { display: none; }
  .rage-content { grid-template-columns: 1fr; gap: 40px; }
  .levels-visual { grid-template-columns: 1fr; }
  .dl-content { grid-template-columns: 1fr; gap: 40px; }
  .dl-right { display: none; }
  .avatars-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  section { padding: 70px 0; }
  .modes-grid { grid-template-columns: 1fr; }
  .sabotage-grid { grid-template-columns: 1fr 1fr; }
  .avatars-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .lb-header, .lb-row {
    grid-template-columns: 40px 1fr 60px 80px;
  }
  .lb-header span:nth-child(3),
  .lb-header span:nth-child(6),
  .lb-row .lb-avatar,
  .lb-row .lb-title { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 16px 60px; }
  .sabotage-grid { grid-template-columns: 1fr; }
  .avatars-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ==========================================
   CYBERPUNK PRIVACY POLICY MODAL
   ========================================== */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.privacy-modal.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.privacy-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.privacy-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  background: var(--bg-surface);
  border: 1.5px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.15), inset 0 0 20px rgba(0, 229, 255, 0.05);
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-image: 
    linear-gradient(rgba(0, 229, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.015) 1px, transparent 1px);
  background-size: 20px 20px;
}

.privacy-modal.active .privacy-modal-container {
  transform: translateY(0) scale(1);
}

/* Header */
.privacy-modal-header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  background: rgba(10, 10, 15, 0.8);
}

.pm-header-icon {
  font-size: 1.5rem;
  margin-right: 16px;
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

.pm-header-titles {
  flex-grow: 1;
}

.pm-header-titles h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--primary);
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.pm-header-titles span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.privacy-modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 0;
  line-height: 1;
}

.privacy-modal-close-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* Body */
.privacy-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Custom scrollbar for modal body */
.privacy-modal-body::-webkit-scrollbar {
  width: 6px;
}

.privacy-modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.privacy-modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.3);
  border-radius: 3px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.pm-intro {
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.pm-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.pm-section {
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  transition: border-color 0.3s, background 0.3s;
}

.pm-section:hover {
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.01);
}

.pm-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.pm-sec-icon {
  font-size: 1.1rem;
  margin-right: 10px;
}

.pm-section h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0;
  letter-spacing: 1px;
}

.pm-section p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.pm-contact {
  margin-top: 12px;
  font-size: 0.85rem;
}

.pm-mail {
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-mono);
  transition: text-shadow 0.2s;
}

.pm-mail:hover {
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

/* Footer */
.privacy-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  background: rgba(10, 10, 15, 0.8);
  display: flex;
  justify-content: flex-end;
}

.pm-footer-btn {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.pm-footer-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
}
