/* === LOADING SCREEN FIX (tanpa ubah HTML) === */

#loading-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #000000 0%, #111111 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 1s ease, visibility 1s ease;
}

/* Saat loading disembunyikan */
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo G glowing — pakai id biar sesuai dengan HTML export Nicepage */
#loading-logo {
  width: 130px;
  height: auto;
  animation: pulseGlow 1.2s ease-in-out infinite alternate;
}

/* Efek glow hijau neon */
@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 3px #00ff66) drop-shadow(0 0 6px #00ff66); }
  100% { filter: drop-shadow(0 0 15px #00ff66) drop-shadow(0 0 35px #00ff66); }
}
