/* 🌌 ULTRA VOXZ EMPIRE SITE LOADER */
#site-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #060610 0%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 999999;
  transition: opacity 1.4s ease, visibility 1.4s ease;
}

#site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#stars {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: fadeIn 1.6s ease forwards;
}

.loader-logo {
  width: 180px;
  filter: drop-shadow(0 0 25px #00aaff);
  animation: logoPulse 2.8s ease-in-out infinite alternate;
}

.loader-text {
  margin-top: 20px;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #b0cfff;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
}

.loader-ring {
  margin: 25px auto 0;
  width: 55px;
  height: 55px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #00aaff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px rgba(0,170,255,0.5);
}

/* 🔹 Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes logoPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 20px #00aaff); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 40px #00e5ff); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.loader-text {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #00eaff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.2rem;
  animation: fadeInText 2.5s ease-in-out infinite alternate;
}

.txt-line {
  display: block;
  opacity: 0.8;
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.txt-glow {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00ffff;
  text-shadow: 0 0 10px #00eaff, 0 0 30px #00baff, 0 0 50px #00ffff;
  animation: pulseGlow 2s ease-in-out infinite;
}

.txt-sub {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 8px;
  letter-spacing: 3px;
}

@keyframes pulseGlow {
  0% { text-shadow: 0 0 5px #00baff, 0 0 10px #00eaff, 0 0 20px #00ffff; }
  50% { text-shadow: 0 0 25px #00ffff, 0 0 50px #00eaff, 0 0 80px #00ffff; }
  100% { text-shadow: 0 0 5px #00baff, 0 0 10px #00eaff, 0 0 20px #00ffff; }
}

@keyframes fadeInText {
  from { opacity: 0.4; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
