/* ======================================================
   🌕 Loelr Monumen — Aurora Core Style
   Designed by AI — For Esap Chavalhera
   ====================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow-x: hidden; }

body {
  background: radial-gradient(circle at 30% 20%, #0f1524 0%, #090b16 100%);
  font-family: 'Cinzel', serif;
  color: #f4f4f4;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

/* Aurora Effect */
.aurora-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(270deg, #0fffc1, #7e3ff2, #00bcd4, #ff8ff1);
  background-size: 600% 600%;
  mix-blend-mode: overlay;
  opacity: 0.07;
  animation: aurora 25s ease infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Stars Layer */
#stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: transparent;
  pointer-events: none;
}

/* Main Container */
main {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 30px 100px;
  text-align: center;
}

/* Typography */
p {
  margin-bottom: 25px;
  font-size: 1rem;
  opacity: 0.92;
  text-shadow: 0 0 8px rgba(255,255,255,0.05);
}
h1 {
  font-size: 2.4rem;
  text-shadow: 0 0 18px rgba(255,255,255,0.2);
  margin-bottom: 10px;
}
h2 {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 40px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #f8f8f8;
  text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

/* Genesis Glow */
.glow-active {
  box-shadow: 0 0 25px rgba(255,255,255,0.15) inset, 0 0 20px rgba(255,255,255,0.25);
  transition: all 1.5s ease;
}
.glow-in {
  animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 20px rgba(255,255,255,0.08); opacity: 1; }
  100% { box-shadow: 0 0 35px rgba(255,255,255,0.25); opacity: 1; }
}

/* Mute Button Hover */
#muteButton:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 600px) {
  main { padding: 50px 20px; }
  h1 { font-size: 1.9rem; }
  p { font-size: 0.95rem; }
}
