body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffe6f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  width: 90%;
  max-width: 380px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

h1 {
  color: #ff4d6d;
}

img {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  margin: 10px 0 20px;
}

.buttons {
  position: relative;
  height: 60px;
}

button {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

#yesBtn {
  background: #ff4d6d;
  color: white;
}

#noBtn {
  background: #ddd;
  position: absolute;
  left: 55%;
  top: 0;
}

#final {
  display: none;
}
