body {
  background-color: #000;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 20px;
}

.container {
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 100%;
}

.profile-img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 3px solid white;
}

.apology-text {
  font-size: 18px;
  margin-bottom: 30px;
  padding: 0 10px;
}

.buttons {
  position: relative;
  height: 100px; /* butonların rahat kaçabilmesi için alan */
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

#yesBtn {
  background-color: #28a745;
  color: white;
}

#noBtn {
  background-color: #dc3545;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 20px;
}

.video-popup video {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 0 20px white;
}

/* Mobil uyumlu */
@media (max-width: 600px) {
  .apology-text {
    font-size: 16px;
  }

  button {
    font-size: 14px;
    padding: 8px 16px;
  }
}
