/* style.css */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #d946ef, #f9a8d4);
  font-family: 'Kantumruy Pro', sans-serif;
  overflow: hidden;
}

.hearts-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hearts-bg i {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  animation: float 6s linear infinite;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(100vh);
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh);
    opacity: 0;
  }
}

.container {
  text-align: center;
  color: white;
  background: rgba(255, 192, 203, 0.2);
  padding: 40px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
  font-family: 'Odor Mean Chey', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.container p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.container p i {
  color: #ff4d6d;
  margin: 0 5px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}

.buttons {
  position: relative;
  width: 350px;
  height: 200px;
  margin: auto;
}

button {
  position: absolute;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: 'Kantumruy Pro', sans-serif;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

button:active {
  transform: translateY(0);
}

.yes {
  left: 30px;
  top: 70px;
  background: linear-gradient(135deg, #ff6b8b, #ff8e9e);
}

.yes:hover {
  background: linear-gradient(135deg, #ff8e9e, #ff6b8b);
}

.no {
  left: 180px;
  top: 70px;
  background: linear-gradient(135deg, #a8a8a8, #c0c0c0);
}

.no:hover {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

/* Responsive Design */
@media (max-width: 500px) {
  .container {
    padding: 20px;
    margin: 20px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .buttons {
    width: 280px;
  }
  
  .yes {
    left: 10px;
  }
  
  .no {
    left: 140px;
  }
  
  button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}