 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #141e30, #243b55);
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-container {
  background: #0f172a;
  padding: 30px;
  border-radius: 16px;
  width: 360px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

h1 {
  color: #e5e7eb;
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.choices {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.choice {
  width: 90px;
  height: 90px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.choice span {
  font-size: 2.2rem;
}

.choice p {
  margin-top: 5px;
  color: #cbd5f5;
  font-size: 0.8rem;
}

.choice:hover {
  background: #38bdf8;
  transform: translateY(-6px) scale(1.05);
}

.scoreboard {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.score {
  background: #020617;
  padding: 12px;
  width: 48%;
  border-radius: 10px;
  color: #e5e7eb;
}

.score span {
  display: block;
  font-size: 1.5rem;
  margin-top: 5px;
  color: #38bdf8;
}

.result {
  background: #020617;
  padding: 14px;
  border-radius: 10px;
  color: #e5e7eb;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
