* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to top, #ffd6ec, #fff);
  overflow: hidden;
  text-align: center;
}

section {
  display: none;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

section.active {
  display: flex;
}

/* BUTTON */
#startBtn {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: #ff4da6;
  color: white;
  font-size: 16px;
  cursor: pointer;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { transform: scale(1.1); }
}

/* BALLOON */
.balloonWrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.balloon {
  width: 110px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, #ff99cc, #cc0066 70%);
  border-radius: 50% 50% 45% 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  transform: translateY(120vh);
  animation: balloonUp 0.8s forwards;
}

@keyframes balloonUp {
  to { transform: translateY(0); }
}

.pop {
  animation: popReal 0.3s forwards;
}

@keyframes popReal {
  100% { transform: scale(0); opacity: 0; }
}

/* ===== GALLERY SIMPLE ELEGANT ===== */


/* WISH */
#wishScene h1 {
  color: #ff4da6;
  font-size: 26px;
}

/* FINAL */
#finalScene {
  overflow-y: auto;
  justify-content: flex-start;
  padding-top: 40px;
}

.finalImg {
  width: 80%;
  max-width: 280px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.finalText {
  font-size: 14px;
  line-height: 1.7;
  max-width: 350px;
  padding-bottom: 100px;
}  padding-top: 40px;
}

.finalImg {
  position: absolute;
  top: 20px;
  width: 80%;
  max-width: 300px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.finalText {
  font-size: 14px;
  line-height: 1.7;
  max-width: 350px;
  padding-bottom: 100px;
}
