/* FIXED SELECTOR: #quizBody.hidden */
#quizBody.hidden, .quiz-result.hidden {
  display: none !important;
}

.page-game {
  background-color: #f9f5ed;
  color: #2c2825;
  padding: 4rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-container {
  max-width: 650px;
  width: 100%;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.progress-bar {
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent-gold);
  width: 0%;
  transition: width 0.4s ease;
}

.question-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.question-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.option-btn {
  background: #f7f4ee;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.2rem;
  border-radius: 12px;
  text-align: left;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}

.option-btn:hover {
  background: #2c4a3e;
  color: #ffffff;
}

.quiz-result {
  text-align: center;
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
}