body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background-color: #f5f5f5;
  width: 100vw;
  height: auto;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333;
}

.game-info, .choices, .controls, .final-result {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.game-info {
  display: flex;
  justify-content: space-between;
  background-color: #e6f7ff;
}

.game-info p {
  margin: 0;
  padding: 5px;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

#finalResult {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #e91e63;
}

#result {
  font-weight: bold;
  color: #2196F3;
}