/* Middle-earth inspired quiz styling */

body.quiz-body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #35281e 0, #1a120b 60%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Georgia", "Times New Roman", serif;
  color: #fef9e7;
}

.quiz-container {
  max-width: 700px;
}

.quiz-card {
  background: #2b2117;
  border-radius: 18px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(253, 216, 158, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.quiz-header {
  border-bottom: 1px solid rgba(253, 216, 158, 0.2);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}

.quiz-title {
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fdd89e;
  margin-bottom: 0.2rem;
}

.quiz-subtitle {
  font-size: 0.95rem;
  color: #d7ccc8;
  margin-bottom: 0.75rem;
}

.quiz-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #d7ccc8;
}

.quiz-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quiz-answer {
  border-radius: 999px;
  border-width: 1px;
  border-color: rgba(253, 216, 158, 0.5);
  background: rgba(42, 33, 23, 0.95);
  color: #fef9e7;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  transition: all 0.15s ease-out;
}

.quiz-answer:hover {
  background: rgba(253, 216, 158, 0.08);
  transform: translateY(-1px);
}

.quiz-answer.selected {
  background: rgba(253, 216, 158, 0.25);
  border-color: #fdd89e;
}

.quiz-answer.correct {
  background: #2e7d32;
  border-color: #a5d6a7;
}

.quiz-answer.incorrect {
  background: #b71c1c;
  border-color: #ef9a9a;
}

.quiz-feedback {
  min-height: 1.2rem;
}

/* Gold button */

.btn-gold {
  background: linear-gradient(135deg, #fdd89e, #f9a825);
  border: none;
  color: #3e2723;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffe0b2, #ffb300);
  color: #3e2723;
}

/* Small screens */

@media (max-width: 576px) {
  .quiz-card {
    padding: 1.5rem 1.2rem;
  }

  .quiz-title {
    font-size: 1.6rem;
  }
}
