body {
  font-family: Arial, sans-serif;
  background: #f4f4f9;
  text-align: center;
  margin: 0;
  padding: 0;
}

.game-container {
  margin-top: 50px;
  padding: 20px;
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

.choices button {
  font-size: 18px;
  margin: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #4CAF50;
  color: white;
  transition: 0.3s;
}

.choices button:hover {
  background: #45a049;
}

#result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

.score {
  margin-top: 20px;
  font-size: 18px;
}
