* {
  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%, #ff7b00, #620000 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, #450a0a, #b91c1c);
  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: 18px;
  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: #22c55e;
  color: #000000;
}

.no {
  background: #1f2937;
  color: #ffffff;
}

@media (max-width: 480px) {
  .box {
    max-width: 320px;
    padding: 28px 20px;
  }

  button {
    width: 88%;
  }
}