* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;

  background-image: url("images/soru1.jpg");
  background-size: cover;
  background-position: center 50%;  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background-image 0.5s ease-in-out;
  overflow: hidden;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.card {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 430px;
  padding: 28px;

  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);

  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

h1 {
  font-size: 28px;
  margin-bottom: 28px;
  color: #222;
}

.buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  border: none;
  padding: 14px 28px;

  font-size: 18px;
  border-radius: 999px;

  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

button:hover {
  transform: scale(1.08);
}

#yesBtn {
  background: #ff4f8b;
  color: white;
}

#noBtn {
  background: #333;
  color: white;
}

#smallText {
  margin-top: 22px;
  font-size: 14px;
  color: #555;
}

.final-message {
  font-size: 30px;
  color: #ff2f7d;
}