body {
  margin: 0;
  background: black;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
}

/* Fade başlangıç durumu */
.fade {
  opacity: 0;
  transform: translateY(20px);
}

h1 {
  font-size: clamp(40px, 6vw, 100px);
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #00ffff,
    0 0 40px #00ffff;
}

p {
  font-size: clamp(20px, 3vw, 50px);
  margin-top: 20px;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #00ffff;
}

/* Animasyon */
.show {
  animation: fadeIn 1.5s ease forwards;
}

.delay {
  animation-delay: 1.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#text {
  font-size: clamp(40px, 6vw, 100px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s ease;
}

#text.show {
  opacity: 1;
  transform: translateY(0);
}
.choices {
  margin-top: 40px;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.choices.show {
  opacity: 1;
  pointer-events: all;
}

button {
  padding: 15px 30px;
  margin: 20px;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

#yesBtn {
  background: green;
  color: white;
}

#noBtn {
  background: crimson;
  color: white;
  transition: left 0.25s ease, top 0.25s ease;
}