body {
  font-family: Arial, sans-serif;
  background-color: #f0f8ff;
  color: #333;
  padding: 20px;
  text-align: center;
}

#game-container {
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
}

#scenario-container {
  margin-bottom: 20px;
}

#scenario-text {
  font-size: 1em;
  color: #333;
  margin-bottom: 20px;
}

#choices-container {
  margin-bottom: 20px;
}

#choices-container button {
  width: 100%;
  padding: 15px;
  margin: 5px 0;
  background-color: #008CBA;
  border: none;
  color: white;
  font-size: 1em;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

#choices-container button:hover {
  background-color: #005f73;
}

#feedback, #citation, #score {
  font-size: 1.2em;
  margin-top: 10px;
}

.bold {
  font-weight: bold;
  color: #d35400;
}

#restart-button {
  padding: 10px 20px;
  background-color: #e74c3c;
  border: none;
  color: white;
  font-size: 1em;
  cursor: pointer;
  border-radius: 8px;
}

#restart-button:hover {
  background-color: #c0392b;
}
