body {
  font-family: Arial, sans-serif;
  background: #001f3f;
  color: white;
  text-align: center;
  padding: 2rem;
}

.game-container {
  max-width: 600px;
  margin: 0 auto;
  background: #003366;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

#question-master img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffd700;
  margin: 1rem 0;
}

#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;
}

#question-box {
  margin-top: 1rem;
}

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

#options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

#options button {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  background-color: #004080;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

#options button:hover {
  background-color: #0059b3;
}

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

#next-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

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

.play-again-container {
  margin-top: 1.5rem;
}

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

#play-again-btn:hover {
  background-color: #0056b3;
}
