body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #111111, #2c2c2c);
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

h1 {
  font-size: 3.5rem;
  margin-top: 60px;
  color: #ffffff;
  text-shadow: 2px 2px 10px #ff00c8;
  animation: pop 1s ease-in-out;
}

.main-message {
  font-size: 1.4rem;
  padding: 0 20px;
  margin-top: 20px;
  color: #eeeeee;
}

button {
  margin-top: 40px;
  padding: 15px 40px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #ff4d6d, #6c5ce7);
  border: none;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

button:hover {
  background: linear-gradient(135deg, #6c5ce7, #ff4d6d);
  transform: scale(1.05);
}

.balloons {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.balloon {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 60px;
  background-color: hsl(0, 100%, 70%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: inset -5px -10px 10px rgba(255,255,255,0.4), 0 8px 15px rgba(0, 0, 0, 0.2);
  animation: float 8s infinite ease-in-out;
  opacity: 0.95;
  z-index: 10;
}

.balloon::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 2px;
  height: 25px;
  background: #ddd;
  transform: translateX(-50%);
  z-index: -1;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateY(-400px) rotate(5deg);
  }
  100% {
    transform: translateY(-800px) rotate(-5deg);
    opacity: 0;
  }
}

.poem {
  max-width: 800px;
  margin: 80px auto 40px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
  backdrop-filter: blur(6px);
}

.poem h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffe066;
  margin-bottom: 25px;
  text-shadow: 1px 1px 5px #00000088;
}

.poem p {
  margin-bottom: 20px;
  color: #eeeeee;
}

@keyframes pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
