body {
  margin: 0;
  padding: 0;
  background: #ffcc00; /* Haldi Yellow */
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.container {
  background: #fff8e1; /* Soft cream for contrast */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 90%;
  max-width: 450px;
  z-index: 1;
  position: relative;
}

h1 {
  font-size: 2rem;
  color: #4e3300; /* Dark brown */
  margin-bottom: 20px;
}

#joke {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #5e4400;
  min-height: 80px;
}

button {
  background-color: #ffaa00; /* Deeper Haldi Yellow */
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #ff9800;
  transform: scale(1.05);
}

/* Emoji fall animation */
@keyframes emojiFall {
  0% {
    transform: translateY(-2em);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
