body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #ffe6ec;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  width: 400px;
  position: relative;
}

.card-inner h2 {
  color: #e91e63;
  font-size: 22px;
  margin-bottom: 10px;
}

.card-inner h1 {
  font-size: 32px;
  margin: 10px 0 20px;
}


#button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
}

#evetBtn,
#hayirBtn {
  position: static; 
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  color: white;
}

#evetBtn {
  background-color: #4caf50;
}

#hayirBtn {
  background-color: #f44336;
  z-index: 1000;
}

#yazi {
  margin-top: 20px;
  font-size: 18px;
  color: #880e4f;
  min-height: 22px;
}

.shake {
  animation: shake 0.3s;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}


@media (max-width: 500px) {
  #evetBtn,
  #hayirBtn {
    font-size: 16px;
    padding: 8px 16px;
  }

  #button-container {
    margin-top: 15px;
  }

  .card-inner h2 {
    font-size: 20px;
  }

  .card-inner h1 {
    font-size: 28px;
  }
}
