* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #ffdde1, #ee9ca7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: white;
  padding: 45px 55px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  max-width: 420px;
  width: 90%;
}

h1 {
  margin: 0;
  font-size: 32px;
  color: #2c2c2c;
}

.subtitle {
  margin-top: 12px;
  color: #666;
  font-size: 16px;
}

.buttons {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  justify-content: center;
}

button {
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 17px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.yes {
  background: #ff5c8a;
  color: white;
}

.no {
  background: #eeeeee;
  color: #333;
}