body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffafbd, #ffc3a0);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Comic Sans MS', cursive;
}

#app {
  background: white;
  padding: 5vw;
  border-radius: 20px;
  width: min(90vw, 420px);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

p {
  font-size: clamp(18px, 4.5vw, 22px);
  line-height: 1.4;
}

button {
  margin: 10px;
  padding: 12px 22px;
  border: none;
  border-radius: 25px;
  background: #ff4d6d;
  color: white;
  font-size: clamp(16px, 4.5vw, 18px);
  cursor: pointer;
}

button:hover {
  background: #ff1e4d;
}

input {
  padding: 12px;
  width: 85%;
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid #ccc;
  font-size: clamp(16px, 4.5vw, 18px);
}

/* 🌹 ROSES */
.rose {
  position: fixed;
  top: -50px;
  font-size: clamp(28px, 8vw, 40px);
  animation: fall linear forwards;
  pointer-events: none;
  z-index: 9999;
}

@keyframes fall {
  to {
    transform: translateY(120vh) rotate(720deg);
    opacity: 0.9;
  }
}