/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #ff2d9b;
  --cyan: #00ffff;
  --purple: #9b00ff;
  --dark: #05000f;
  --dark2: #0d001a;
  --dark3: #1a0033;
  --text: #e8d5f5;
  --text-dim: #8866aa;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== FONDO GRID CYBERPUNK ===== */
.cyber-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ===== PARTÍCULAS ===== */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}

@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(5,0,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,45,155,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--pink);
  filter: drop-shadow(0 0 8px var(--pink));
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 0.05em;
}

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

.logo-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-left: 0.3rem;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

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

.btn-nav {
  border: 1px solid var(--pink) !important;
  padding: 0.4rem 1.2rem !important;
  border-radius: 4px !important;
  color: var(--pink) !important;
  transition: all 0.2s !important;
}

.btn-nav:hover {
  background: var(--pink) !important;
  color: white !important;
  box-shadow: 0 0 20px rgba(255,45,155,0.5) !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 4rem 4rem;
  gap: 2rem;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,45,155,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,255,255,0.08);
  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-family: 'Orbitron', monospace;
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,255,0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(0,255,255,0); }
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

/* ===== GLITCH ===== */
.glitch {
  position: relative;
  color: white;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
}

.glitch::before {
  color: var(--cyan);
  animation: glitch-before 3s infinite;
  clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
}

.glitch::after {
  color: var(--pink);
  animation: glitch-after 3s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
}

@keyframes glitch-before {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(-4px, 2px); opacity: 1; }
  94% { transform: translate(4px, -2px); opacity: 1; }
  96% { transform: translate(0); opacity: 0; }
}

@keyframes glitch-after {
  0%, 88%, 100% { transform: translate(0); opacity: 0; }
  90% { transform: translate(4px, 2px); opacity: 1; }
  92% { transform: translate(-3px, -1px); opacity: 1; }
  94% { transform: translate(0); opacity: 0; }
}

.hero-sub {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--pink);
  text-shadow: 0 0 20px rgba(255,45,155,0.7);
  letter-spacing: 0.2em;
  margin-top: 0.3rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.neon-pink {
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255,45,155,0.7);
}

.neon-cyan {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,255,255,0.7);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(255,45,155,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255,45,155,0.7);
}

.btn-icon { transition: transform 0.2s; }
.btn-primary:hover .btn-icon { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,255,255,0.5);
  color: var(--cyan);
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stat-divider {
  color: rgba(255,45,155,0.4);
  font-size: 1.5rem;
}

/* ===== PERSONAJE HERO ===== */
.hero-character {
  position: relative;
  flex: 0 0 auto;
  width: min(520px, 48vw);
}

.char-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(255,45,155,0.2) 0%, rgba(155,0,255,0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.anime-char-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  filter:
    drop-shadow(0 0 18px rgba(255,45,155,0.55))
    drop-shadow(0 0 40px rgba(155,0,255,0.3));
}

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

/* ===== DESTELLOS DECORATIVOS ===== */
.deco-star {
  position: absolute;
  z-index: 3;
  font-size: 1.2rem;
  pointer-events: none;
  animation: twinkle 2.5s ease-in-out infinite;
}

.s1 { top: 8%;  left: 5%;  color: #ff2d9b; font-size: 1.4rem; animation-delay: 0s; }
.s2 { top: 15%; right: 2%; color: #00ffff; font-size: 1rem;   animation-delay: 0.6s; }
.s3 { top: 30%; left: 0%;  color: #ff2d9b; font-size: 0.9rem; animation-delay: 1.1s; }
.s4 { bottom: 25%; right: 0%; color: #9b00ff; font-size: 1.1rem; animation-delay: 0.3s; }
.s5 { bottom: 15%; left: 8%; color: #ff99cc; font-size: 0.8rem; animation-delay: 1.5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* ===== HUD ===== */
.hud-element {
  position: absolute;
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  color: var(--cyan);
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(0,255,255,0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 4;
}

.hud-label {
  color: var(--text-dim);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
}

.hud-value { color: var(--cyan); }
.hud-value.online { color: #00ff88; }

.hud-top-left { top: 15%; left: -10px; }
.hud-top-right { top: 12%; right: -10px; flex-direction: row; align-items: center; gap: 0.5rem; }
.hud-bottom { bottom: 5%; left: 50%; transform: translateX(-50%); flex-direction: row; white-space: nowrap; }

/* ===== FEATURES ===== */
.features {
  position: relative;
  z-index: 1;
  padding: 6rem 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  color: var(--pink);
  letter-spacing: 0.3em;
  opacity: 0.8;
}

.section-header h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin: 0.5rem 0;
  color: white;
}

.section-desc {
  color: var(--text-dim);
  font-size: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,45,155,0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(255,45,155,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(255,45,155,0.15);
}

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

.feature-card.featured {
  border-color: rgba(0,255,255,0.4);
  background: rgba(0,255,255,0.04);
  box-shadow: 0 0 30px rgba(0,255,255,0.08);
}

.feature-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.1em;
}

.card-icon {
  width: 60px; height: 60px;
  margin-bottom: 1rem;
}

.card-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: white;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-tag {
  font-size: 0.7rem;
  color: var(--pink);
  font-family: 'Noto Sans JP', sans-serif;
  opacity: 0.8;
}

/* ===== PRICING ===== */
.pricing {
  position: relative;
  z-index: 1;
  padding: 6rem 4rem;
  background: rgba(0,0,0,0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(155,0,255,0.3);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  transition: all 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(155,0,255,0.2);
}

.price-card.popular {
  border-color: rgba(255,45,155,0.6);
  background: rgba(255,45,155,0.05);
  box-shadow: 0 0 40px rgba(255,45,155,0.12);
  transform: scale(1.02);
}

.price-card.popular:hover {
  transform: scale(1.02) translateY(-4px);
}

.popular-badge {
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  color: var(--pink);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.price-tier {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.currency {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--text-dim);
}

.amount {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.period {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.price-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.8rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.price-features li {
  font-size: 0.85rem;
  color: var(--text);
}

.price-features li.disabled {
  color: var(--text-dim);
  opacity: 0.5;
  text-decoration: line-through;
}

.btn-price {
  display: block;
  text-align: center;
  border: 1px solid rgba(155,0,255,0.5);
  color: var(--purple);
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.btn-price:hover {
  background: rgba(155,0,255,0.15);
  box-shadow: 0 0 20px rgba(155,0,255,0.3);
}

.btn-price.primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-color: transparent;
  color: white;
  box-shadow: 0 0 20px rgba(255,45,155,0.4);
}

.btn-price.primary:hover {
  box-shadow: 0 0 40px rgba(255,45,155,0.7);
}

/* ===== SIGNUP ===== */
.signup {
  position: relative;
  z-index: 1;
  padding: 6rem 4rem;
}

.signup-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.signup-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.signup-anime {
  width: 200px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 15px rgba(0,255,204,0.4));
  animation: float 4s ease-in-out infinite;
}

.signup-form {
  flex: 1;
}

.signup-form h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin: 0.5rem 0 0.5rem;
  color: white;
}

.signup-form > p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-family: 'Orbitron', monospace;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cyber-input {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,45,155,0.3);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: white;
  font-family: 'Rajdhani', monospace;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.cyber-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,255,255,0.1);
}

.cyber-input::placeholder { color: rgba(255,255,255,0.2); }

.email-input-wrap {
  display: flex;
  align-items: center;
}

.email-input-wrap .cyber-input {
  border-radius: 6px 0 0 6px;
  border-right: none;
}

.email-domain {
  background: rgba(255,45,155,0.15);
  border: 1px solid rgba(255,45,155,0.3);
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 0.75rem 1rem;
  color: var(--pink);
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  white-space: nowrap;
}

.btn-submit {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border: none;
  border-radius: 6px;
  padding: 1rem;
  color: white;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(255,45,155,0.4);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  box-shadow: 0 0 40px rgba(255,45,155,0.7);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  text-align: center;
}

.hidden { display: none !important; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 4rem 4rem 2rem;
  border-top: 1px solid rgba(255,45,155,0.15);
  background: rgba(0,0,0,0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,45,155,0.3);
  border-radius: 6px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 10px rgba(255,45,155,0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links h4 {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: white;
  margin-bottom: 0.3rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.05em;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ff88;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00ff88;
  animation: pulse 2s ease-in-out infinite;
}

/* ===== SUCCESS MODAL ===== */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.success-modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--dark2);
  border: 1px solid var(--cyan);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 60px rgba(0,255,255,0.3);
}

.modal-box h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.modal-box p { color: var(--text-dim); margin-bottom: 1.5rem; }

.modal-close {
  background: none;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 0.6rem 2rem;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--cyan);
  color: black;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar { padding: 1rem 2rem; }

  .hero {
    flex-direction: column;
    padding: 7rem 2rem 3rem;
    text-align: center;
  }

  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-character {
    width: min(380px, 88vw);
    order: -1;
  }

  .hud-top-left, .hud-top-right, .hud-bottom { display: none; }

  .features, .pricing, .signup { padding: 4rem 1.5rem; }

  .signup-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .signup-anime { width: 140px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child) { display: none; }
}
