body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #ffdde1, #ee9ca7);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 350px;
  width: 90%;
  position: relative;
  min-height: 170px;
}

h1, h2 {
  color: #ff4e50;
  font-size: 1.5em;
}

button {
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  margin: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.15s ease-out;
  user-select: none;
}

.yes {
  background-color: #ff4e50;
  color: white;
}

.yes:hover {
  background-color: #ff3844;
  transform: scale(1.05);
}

.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  position: relative;
}


.no {
  background-color: #555;
  color: white;
  pointer-events: auto;
  transition: all 0.15s ease-out;
}

.no:hover {
  cursor: pointer;
}

.hidden {
  display: none;
}

/* Heart Animation */
.heart {
  position: fixed;
  bottom: -10px;
  font-size: 30px;
  animation: floatUp 4s ease-in infinite;
  pointer-events: none;
}

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-600px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.2em;
  }
  button {
    font-size: 16px;
    padding: 10px 20px;
  }
}
