/* NOXVRP additions (kept minimal; template CSS remains primary) */

/* ── Hero Video (NUR Homepage /) ─────────────────────────────────────────── */
.nox-hero-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .nox-hero-wrap { height: 60vh; }
}
.nox-hero-wrap .hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.nox-hero-wrap .hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.55) 0%,
    rgba(10,10,15,0.45) 50%,
    rgba(10,10,15,0.95) 90%,
    rgba(10,10,15,1.00) 100%
  );
}
.nox-hero-wrap .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

/* ── Content-Bereich unterhalb des Heroes ────────────────────────────────── */
.nox-page-content {
  background: linear-gradient(180deg, #0a0a0f 0%, #0e0e1a 50%, #0a0a12 100%);
  min-height: 100vh;
}

/* ── Option B: Glow Mesh Background (alle Seiten außer Homepage) ─────────── */
.nox-glow-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #08080f;
}
.nox-glow-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 8% 18%,  rgba(99,102,241,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 88% 72%,  rgba(139,92,246,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 50% 105%, rgba(99,102,241,0.07) 0%, transparent 60%);
  animation: glowShift 18s ease-in-out infinite alternate;
}
.nox-glow-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 35% 30% at 70% 15%, rgba(74,222,128,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 20% 80%, rgba(99,102,241,0.05) 0%, transparent 55%);
  animation: glowShift 24s ease-in-out infinite alternate-reverse;
}
@keyframes glowShift {
  0%   { opacity: 1;   transform: scale(1)    translate(0,   0); }
  50%  { opacity: 0.8; transform: scale(1.04) translate(-8px, 10px); }
  100% { opacity: 1;   transform: scale(0.97) translate(6px, -8px); }
}
/* Dropdown is always present; only visibility toggled by JS */
.server-dropdown{ display:block; }
/* Player counter overlay */
.player-counter{
  background:rgba(0,0,0,0.65);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

/* 2FA QR (local render) */
.nox-qr-box{
  width:220px;
  max-width:100%;
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.nox-qr-img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:16px;
}
