* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #080b12;
  color: #edf3ff;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.game-container {
  width: min(700px, 100%);
  background: #141c2b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  color: #62f6d5;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.intro {
  color: #9ba8bd;
  margin-bottom: 2rem;
}

.choices {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
  background: #62f6d5;
  color: #061015;
}

button:hover {
  transform: translateY(-2px);
}

.results {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1.25rem;
}

#winner {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}