body {
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle, #000428, #004e92);
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

.game-container {
  max-width: 700px;
  margin: auto;
  padding: 2rem;
  background-color: #111;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

h1 {
  margin-bottom: 2rem;
}

#question-text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem; /* Add more space below the options */
}

button {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: #007bff;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}

button.correct {
  background-color: green;
}

button.wrong {
  background-color: red;
}


#money-tier {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.next-btn-container {
  margin-top: 2rem;
}

#next-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  background-color: #28a745;
  transition: background 0.3s;
}

#next-btn:hover {
  background-color: #218838;
}