* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(800px 500px at 20% 0%, #ff4fd8, #39005f 60%);
  color: #ffffff;
}

.page-wrapper {
  width: 100%;
  min-height: 100vh;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  width: 100%;
  max-width: 340px;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(145deg, #111827, #374151);
  color: #ffffff;
  font-weight: 800;
  border-radius: 150px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.box h2 {
  margin: 0 0 22px;
  font-size: 26px;
  line-height: 1.3;
}

button {
  width: 82%;
  margin: 8px 0;
  padding: 13px 12px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

button:active {
  transform: translateY(0);
}

.yes {
  background: #c084fc;
  color: #000000;
}

.no {
  background: #7f1d1d;
  color: #ffffff;
}

@media (max-width: 480px) {
  .box {
    max-width: 320px;
    padding: 28px 20px;
  }

  button {
    width: 88%;
  }
}
