/* Background */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background: radial-gradient(circle at center, #ffeb3b, #f57c00); */
    background-image: url("generated-image\ -\ 2025-10-19T183654.479.png");
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4a2c0f;
  overflow: hidden;
}

/* Container */
.container {
  /* background: #fff8e1; */
  /* background-image: url("generated-image\ -\ 2025-10-19T184200.610.png"); */
  background-size:cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(245, 124, 0, 0.7);
  padding: 50px 70px;
  max-width: 520px;
  text-align: center;
  animation: fadeIn 1.5s ease forwards;
}

/* Glow text effect */
.glow-text {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fbc02d;
  text-shadow:
    0 0 5px #fff59d,
    0 0 10px #fbc02d,
    0 0 20px #f57c00,
    0 0 30px #ff2003,
    0 0 40px #f57c00;
  margin-bottom: 0.5em;
  font-family: 'Georgia', serif;
}

.glow-subtext {
  font-size: 1.6rem;
  font-style: bold;
  margin-bottom: 2em;
  color: #1105ef;
  text-shadow: 0 0 5px #f20905;
}

/* Diya Lamp */
.diya {
  position: relative;
  margin: 40px auto 0;
  width: 80px;
  height: 110px;
}

.diya-base {
  width: 80px;
  height: 45px;
  background: linear-gradient(135deg, #a0522d, #682a0f);
  border-radius: 40px 40px 10px 10px;
  position: absolute;
  bottom: 0;
  box-shadow: inset -6px 0 10px #4d1f00, inset 6px 0 10px #4d1f00;
}

.flame {
  position: absolute;
  top: 0;
  left: 50%;
  width: 35px;
  height: 65px;
  background: radial-gradient(circle at 50% 30%, #ffd600, #ff6f00 65%, transparent 75%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: translateX(-50%) rotate(-15deg);
  animation: slowFlicker 2s infinite;
  filter: drop-shadow(0 0 10px #ffb300);
}

/* Slow flicker animation */
@keyframes slowFlicker {
  0%, 100% { transform: translateX(-50%) rotate(-15deg) scale(1); opacity: 1;}
  50% { transform: translateX(-48%) rotate(-13deg) scale(1.1); opacity: 0.85;}
}

/* Buttons */
.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

button {
  background: #f57c00;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  border-radius: 35px;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(245, 124, 0, 0.5);
  transition: background 0.3s ease;
  font-weight: 700;
}

button:hover {
  background: #bf360c;
}

/* Surprise message */
#surpriseMessage {
  margin-top: 30px;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fa0303;
  text-shadow: 0 0 5px hsl(60, 96%, 48%);
  opacity: 0;
  animation: fadeInText 1s ease forwards;
 
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInText {
  to {opacity: 1;}
}
