/* NEO-TOKYO GRID WARS – Complete Styles */
/* Base: Dark neon cyberpunk */

:root {
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --neon-pink: #ff2d95;
  --neon-cyan: #00f0ff;
  --neon-orange: #ff6b35;
  --psychic-purple: #9d4edd;
  --grid-blue: #1a1a2e;
  --text: #cfd8dc;
  --muted: #8a96a0;
  --shadow: rgba(0,0,0,0.6);
}

* { box-sizing: border-box }
html, body { height: 100% }
body {
  margin: 0;
  background: radial-gradient(1200px at 20% 10%, #12121a 0%, var(--bg) 60%, #06060a 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

/* CRT & scanlines effect */
.crt::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.02) 50%);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
  z-index: 9999;
}
.scanlines { filter: saturate(1.05) contrast(1.05) }

/* ========================================
   TOPBAR
======================================== */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 1000;
  padding: 12px 18px; background: rgba(10,10,15,0.7); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo {
  color: var(--neon-cyan); text-decoration: none;
  font-weight: 700; letter-spacing: 0.6px; text-shadow: 0 0 12px rgba(0,240,255,0.6);
  transition: text-shadow 0.3s ease;
}
.logo:hover {
  text-shadow: 0 0 20px rgba(0,240,255,0.9), 0 0 40px rgba(0,240,255,0.5);
}
.topnav a {
  margin-left: 16px; color: var(--text); text-decoration: none;
  transition: color 200ms ease, text-shadow 200ms ease;
}
.topnav a:hover { color: var(--neon-pink); text-shadow: 0 0 10px rgba(255,45,149,0.5); }
.login-link { color: var(--neon-pink) !important; font-weight: 600 }

/* ========================================
   PARALLAX LAYERS (Set 1)
======================================== */
.parallax { position: fixed; inset: 0; z-index: -1; overflow: hidden }
.layer {
  position: absolute; width: 140vw; height: auto; left: -20vw; top: -10vh;
  opacity: 0.55; transform: translate3d(0,0,0) scale(1.05);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
  will-change: transform;
}
.parallax-overlay { opacity: 0.8 }

/* Unteren Parallax extrem hochziehen (ca. 500 px Überlappung) */
.screens-continued {
  margin-bottom: -300px;          /* lässt Platz für Überlappung */
}

#parallax-2 {
  margin-top: -520px;             /* ← das ist der Haupt-Hebel (500–550 px hoch) */
  padding-top: 580px;             /* sorgt dafür, dass der Text trotzdem zentriert bleibt */
  padding-bottom: 90px;          /* optional etwas mehr Luft unten */
  margin-bottom: -90px;         /* falls nötig noch mehr zusammenziehen */
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px;
  padding: 8vh 6vw 4vh;
}
.hero-content { align-self: center }
.neon-title {
  font-size: clamp(28px, 4vw, 56px);
  color: #e7fbff;
  text-shadow:
    0 0 12px rgba(0,240,255,0.6),
    0 0 24px rgba(157,78,221,0.4);
}
.neon-title .subtitle {
  display: block; margin-top: 8px; font-size: clamp(14px, 1.6vw, 18px);
  color: var(--muted);
}
.hook {
  margin: 18px 0 22px; font-size: clamp(14px, 1.6vw, 18px);
  color: #e0e7eb;
}

/* Glitch Text Effect */
.glitch-text {
  position: relative;
}
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.glitch-text::before {
  animation: glitch-1 0.3s infinite linear alternate-reverse;
  color: var(--neon-cyan);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch-text::after {
  animation: glitch-2 0.3s infinite linear alternate-reverse;
  color: var(--neon-pink);
  z-index: -2;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0% { transform: translate(0) }
  20% { transform: translate(-2px, 1px) }
  40% { transform: translate(2px, -1px) }
  60% { transform: translate(-1px, 2px) }
  80% { transform: translate(1px, -2px) }
  100% { transform: translate(0) }
}
@keyframes glitch-2 {
  0% { transform: translate(0) }
  20% { transform: translate(2px, -1px) }
  40% { transform: translate(-2px, 1px) }
  60% { transform: translate(1px, -2px) }
  80% { transform: translate(-1px, 2px) }
  100% { transform: translate(0) }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-block; padding: 12px 18px; border-radius: 8px;
  text-decoration: none; color: #0b0b10; background: var(--neon-cyan);
  font-weight: 500; border: none; cursor: pointer;
  box-shadow: 0 0 16px rgba(0,240,255,0.35), inset 0 -2px 6px rgba(0,0,0,0.3);
  transition: transform 120ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(0,240,255,0.6) }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.2) }
.btn-ghost:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }
.btn-primary.glow { background: linear-gradient(90deg, var(--neon-cyan), var(--psychic-purple)) }
.btn.large { padding: 14px 22px; font-weight: 600 }

/* Pulse Glow Animation */
.pulse-glow {
  animation: pulse-glow 2s infinite ease-in-out;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(0,240,255,0.35), 0 0 30px rgba(157,78,221,0.2); }
  50% { box-shadow: 0 0 24px rgba(0,240,255,0.6), 0 0 50px rgba(157,78,221,0.4); }
}

/* Hover Lift */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ========================================
   HERO SLIDER
======================================== */
.hero-slider {
  position: relative; overflow: hidden; border-radius: 14px;
  background: rgba(10,10,15,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}
.slides { position: relative; height: clamp(280px, 42vh, 520px) }
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 500ms ease;
}
.slide.active { opacity: 1 }
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(1.05) brightness(0.96);
}
.slide figcaption {
  position: absolute; left: 16px; bottom: 16px; padding: 8px 12px;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.12);
  color: #cfe6ff; border-radius: 8px; backdrop-filter: blur(4px);
  font-size: 13px;
}
.slider-controls {
  position: absolute; right: 12px; bottom: 12px; display: flex; gap: 8px; align-items: center;
}
.control {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(0,0,0,0.35);
  color: #fff; cursor: pointer; transition: transform 120ms ease, background 120ms ease;
  font-size: 18px;
}
.control:hover { transform: scale(1.1); background: rgba(0,240,255,0.2); }

/* Slider Dots */
.slider-dots {
  display: flex; gap: 6px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  transform: scale(1.2);
}

/* ========================================
   FEATURES
======================================== */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 6vh 6vw;
}
.feature {
  background: rgba(10,10,15,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
  transition: border-color 0.3s ease;
}
.feature:hover {
  border-color: var(--neon-orange);
}
.feature-title { color: var(--neon-orange); text-shadow: 0 0 8px rgba(255,107,53,0.35) }

/* ========================================
   SCREENS / GAME SCREENSHOTS
======================================== */
.screens { padding: 6vh 6vw }
.screens-continued { padding-top: 0; }
.section-title { font-size: clamp(20px, 2.4vw, 28px); color: #e7fbff; margin-bottom: 24px; }

.screen-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.screen-row:last-child { margin-bottom: 0; }

.phone-mock {
  position: relative; border-radius: 26px; padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.4));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.phone-mock .notch {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 16px; background: rgba(0,0,0,0.6); border-radius: 8px;
  z-index: 10;
}
.phone-mock img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Screen Hover Overlay */
.screen-hover { cursor: pointer; }
.screen-overlay {
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  background: rgba(10,10,20,0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(10px);
}
.screen-hover:hover .screen-overlay,
.screen-hover.active .screen-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.screen-hover:hover img {
  transform: scale(1.05);
  filter: blur(2px);
}
.screen-overlay-content {
  text-align: center;
  color: #fff;
}
.screen-overlay-content h4 {
  font-size: 20px;
  color: var(--neon-cyan);
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(0,240,255,0.5);
}
.screen-overlay-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

/* ========================================
   EPIC BANNER (zwischen Screen Rows)
======================================== */
.epic-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.epic-banner-bg {
  position: absolute;
  inset: 0;
}
.epic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2) saturate(1.1);
  animation: slow-zoom 20s infinite alternate ease-in-out;
}
@keyframes slow-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.epic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,15,0.8) 0%,
    rgba(10,10,15,0.3) 50%,
    rgba(10,10,15,0.8) 100%
  );
}
.epic-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}
.epic-title {
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 900;
  color: #fff;
  text-shadow:
    0 0 30px rgba(0,240,255,0.8),
    0 0 60px rgba(157,78,221,0.6);
  margin-bottom: 16px;
  letter-spacing: 4px;
}
.epic-subtitle {
  font-size: clamp(18px, 3vw, 28px);
  color: var(--neon-orange);
  text-shadow: 0 0 20px rgba(255,107,53,0.6);
  margin-bottom: 24px;
}
.epic-coming-soon {
  font-size: clamp(24px, 4vw, 40px);
  color: var(--neon-pink);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.flicker {
  animation: flicker 3s infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 1; }
  5% { opacity: 0.8; }
  10% { opacity: 1; }
  15% { opacity: 0.6; }
  20% { opacity: 1; }
  50% { opacity: 1; }
  55% { opacity: 0.9; }
  60% { opacity: 1; }
}
.dot-loader span {
  animation: dot-pulse 1.4s infinite ease-in-out;
}
.dot-loader span:nth-child(2) { animation-delay: 0.2s; }
.dot-loader span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-pulse {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}

/* Katakana Rain */
.katakana-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.15;
}
.katakana-char {
  position: absolute;
  color: var(--neon-cyan);
  font-size: 20px;
  animation: rain-fall linear infinite;
  text-shadow: 0 0 10px var(--neon-cyan);
}
@keyframes rain-fall {
  0% { transform: translateY(-100%); opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* ========================================
   SECOND PARALLAX SECTION
======================================== */
.parallax-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-inner {
  position: absolute;
  inset: -50px;
  z-index: 1;
}
.layer-2 {
  position: absolute;
  width: 120%;
  height: auto;
  left: -10%;
  top: -10%;
  opacity: 0.6;
  will-change: transform;
}
.parallax-overlay-2 { opacity: 0.75; }
.parallax-section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 600px;
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.parallax-section-content .neon-title {
  margin-bottom: 16px;
}
.parallax-section-content p {
  margin-bottom: 24px;
  color: var(--text);
}

/* ========================================
   WIDE CTA
======================================== */
.cta-wide {
  padding: 7vh 6vw; text-align: center;
  background: linear-gradient(180deg, rgba(0,240,255,0.06), rgba(157,78,221,0.06));
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-line { font-size: clamp(16px, 2vw, 22px); color: #eaf9ff; margin-bottom: 16px }

/* ========================================
   FOOTER
======================================== */
.footer {
  padding: 24px 6vw; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,15,0.6); backdrop-filter: blur(6px);
}
.footer-links a { margin-right: 16px; color: var(--muted); text-decoration: none }
.footer-links a:hover { color: var(--neon-cyan) }
.footnote { color: var(--muted) }
.footer-minimal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  padding: 12px;
  z-index: 100;
}
.footer-minimal .footer-links a { margin: 0 12px; }

/* ========================================
   LOGIN PAGE
======================================== */
.login-page {
  overflow-x: hidden;
}
.login-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
.login-hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.login-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.1) saturate(1.2);
  animation: slow-zoom 30s infinite alternate ease-in-out;
}
.login-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,15,0.8) 100%);
}

/* Particles */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  opacity: 0.6;
  animation: float-particle linear infinite;
  box-shadow: 0 0 10px var(--neon-cyan);
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Login Container */
.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  z-index: 10;
}

/* Glass Card Effect */
.glass-card {
  background: rgba(10,10,20,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}

/* Login Box */
.login-box {
  padding: 40px;
}
.login-header {
  text-align: center;
  margin-bottom: 32px;
}
.login-title {
  font-size: 48px;
  color: var(--neon-cyan);
  margin: 0 0 8px 0;
  text-shadow: 0 0 30px rgba(0,240,255,0.6);
}
.login-subtitle {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Form Styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.input-group {
  position: relative;
}
.input-group label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.input-icon {
  color: var(--neon-cyan);
  margin-right: 6px;
}
.input-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.input-group input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,240,255,0.2);
}
.input-group input::placeholder {
  color: rgba(255,255,255,0.3);
}
.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--psychic-purple));
  transition: width 0.3s ease;
}
.input-group input:focus ~ .input-line {
  width: 100%;
}

/* Login Options */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--muted);
}
.checkbox-container input { display: none; }
.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}
.checkbox-container input:checked ~ .checkmark {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
}
.checkbox-container input:checked ~ .checkmark::after {
  content: '✓';
  position: absolute;
  color: #000;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.forgot-link {
  color: var(--neon-pink);
  text-decoration: none;
  transition: text-shadow 0.2s ease;
}
.forgot-link:hover {
  text-shadow: 0 0 10px rgba(255,45,149,0.5);
}

/* Login Button */
.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
}
.btn-icon {
  transition: transform 0.2s ease;
}
.login-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Divider */
.login-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}
.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.login-divider span {
  background: rgba(10,10,20,0.9);
  padding: 0 16px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
}

/* Social Login */
.social-login {
  display: flex;
  gap: 12px;
}
.social-btn {
  flex: 1;
  padding: 12px;
  font-size: 14px;
}

/* Login Footer */
.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.register-link {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 500;
}
.register-link:hover {
  text-shadow: 0 0 10px rgba(0,240,255,0.5);
}

/* Login Showcase */
.login-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.showcase-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
.showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: 20px;
}
.showcase-img.active {
  opacity: 1;
}
.showcase-caption {
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.typing-text {
  color: var(--neon-cyan);
  font-size: 16px;
  border-right: 2px solid var(--neon-cyan);
  animation: blink-cursor 0.8s infinite;
}
@keyframes blink-cursor {
  0%, 100% { border-color: var(--neon-cyan); }
  50% { border-color: transparent; }
}

/* ========================================
   POPUP
======================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup {
  max-width: 450px;
  width: 90%;
  padding: 40px;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s ease;
}
.popup-overlay.active .popup {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.popup-close:hover {
  color: var(--neon-pink);
}
.popup-icon {
  margin-bottom: 20px;
}
.kanji-big {
  font-size: 48px;
  color: var(--neon-cyan);
  text-shadow: 0 0 30px rgba(0,240,255,0.6);
}
.popup-title {
  font-size: 32px;
  color: var(--neon-pink);
  margin-bottom: 16px;
}
.popup-text {
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Countdown */
.popup-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.countdown-item {
  text-align: center;
}
.countdown-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0,240,255,0.5);
}
.countdown-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-slider { margin-top: 18px }
  .features { grid-template-columns: 1fr 1fr }
  .login-container { grid-template-columns: 1fr; max-width: 500px; }
  .login-showcase { display: none; }
}

@media (max-width: 720px) {
  .topnav a { margin-left: 10px; font-size: 13px; }
  .features { grid-template-columns: 1fr }
  .screen-row { grid-template-columns: 1fr }
  .parallax .layer { width: 200vw; left: -50vw; opacity: 0.45 }
  .neon-title { font-size: clamp(26px, 8vw, 40px) }
  .epic-banner { height: 50vh; min-height: 300px; }
  .login-box { padding: 30px 20px; }
  .login-title { font-size: 36px; }
  .footer-minimal { position: relative; }
}

@media (max-width: 480px) {
  .topbar { padding: 10px 12px; }
  .logo { font-size: 14px; }
  .popup { padding: 30px 20px; }
  .countdown-num { font-size: 28px; }
}

/* 4-Layer-System oben */
.depth-1 { opacity: 0.4; }
.depth-2 { opacity: 0.55; }
.depth-3 { opacity: 0.7; }
.depth-4 { opacity: 0.9; }   /* am schnellsten + am stärksten sichtbar */

/* 3-Layer-System unten */
.depth-a { opacity: 0.55; }
.depth-b { opacity: 0.75; }
.depth-c { opacity: 0.95; }   /* vorderste Ebene */
