* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.container {
  width: 350px;
  background: rgba(255,255,255,0.15);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}

.hidden {
  display: none;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.countdown div {
  width: 70px;
  padding: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}

.countdown span {
  font-size: 22px;
  font-weight: bold;
}

/* CAKE */
.cake {
  position: relative;
  width: 160px;
  margin: 30px auto;
}

.cake-body {
  width: 160px;
  height: 100px;
  background: #ffb3c6;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.candle {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 40px;
  background: white;
  border-radius: 6px;
}

.flame {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 24px;
  background: orange;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255,200,100,0.9);
  animation: flicker 0.2s infinite;
}

@keyframes flicker {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(0.9); }
  100% { transform: translateX(-50%) scale(1); }
}

.hint {
  font-size: 14px;
  margin-top: 10px;
}

/* SHAYARI */
.shayari p {
  margin-top: 15px;
  font-size: 15px;
}

.final {
  margin-top: 25px;
  font-size: 16px;
  font-weight: bold;
}
