* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: radial-gradient(circle at center, #000015, #000);
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: fadeIn 3s ease-in-out;
}

.title {
  font-size: 3rem;
  color: #ffcc00;
  text-shadow: 
    0 0 10px #ffcc00,
    0 0 20px #ffcc00,
    0 0 40px #ff6600,
    0 0 80px #ff3300;
  transform: perspective(500px) rotateX(15deg);
  animation: glow 2s infinite alternate ease-in-out;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #ffd;
  opacity: 0.8;
  animation: slideUp 3s ease forwards;
}

.diyas {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.diya {
  width: 100px;
  animation: float 4s ease-in-out infinite;
}

.diya1 { animation-delay: 0s; }
.diya2 { animation-delay: 1s; }
.diya3 { animation-delay: 2s; }

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #ffcc00, 0 0 30px #ff6600;
  }
  to {
    text-shadow: 0 0 30px #ffcc00, 0 0 60px #ff3300, 0 0 100px #ff0000;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
