body {
  background: radial-gradient(circle at top, #1a1a1a, #050505);
  color: #ffffff;
  font-family: system-ui, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  background: #0f0f0f;
  border-radius: 14px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,0,0,.6);
}

.hero {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

button {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button[value="waffle"] {
  background: linear-gradient(135deg, #ffcc33, #ffb703);
}

button[value="pancake"] {
  background: linear-gradient(135deg, #ff9f1c, #fb8500);
}

.results {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.error {
  color: #ff4d4d;
  margin: 15px 0;
}

.meta {
  font-size: 0.85rem;
  opacity: 0.7;
}
