/* General Styles */
body {
  background-color: #1a1a1a;
  color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  max-width: 600px;
  width: 90%;
  padding: 20px;
}

h1 {
  font-family: cursive;
  font-size: 2.5rem;
  color: #ff69b4;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
  margin-bottom: 20px;
}

.heart-gif {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  font-size: 1.2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yes-btn {
  background-color: #00ff9d;
  color: #1a1a1a;
}

.no-btn {
  background-color: #ff4444;
  color: #ffffff;
}

.message {
  font-size: 1.2rem;
  color: #ffd700;
  margin-top: 10px;
}

.footer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 0.9rem;
  color: #ff69b4;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .message {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }
}