quiz.css
/* ============================
   QUIZ — STYLE GLOBAL
============================ */
.quiz-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.quiz-select {
  background: #0033a0;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}
.quiz-select:hover {
  background: #0050d4;
  transform: translateY(-4px);
}
/* ============================
   ZONE DE QUIZ
============================ */
#quizArea {
  margin-top: 25px;
}
.hidden {
  display: none;
}
.question-box {
  text-align: center;
  margin-bottom: 20px;
}
.question-box p {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.question-image {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 10px auto;
  display: block;
}
.soureth.big {
  font-size: 2.4rem;
  margin: 10px 0;
}
/* ============================
   OPTIONS
============================ */
.options-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.option-btn {
  background: var(--card-bg);
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #0033a0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.2s ease;
}
.option-btn:hover {
  background: #0033a0;
  color: white;
  transform: translateY(-3px);
}
/* ============================
   RÉSULTAT
============================ */
.result-box {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
/* ============================
   BOUTON SUIVANT
============================ */
.next-btn {
  margin-top: 20px;
  background: #007bff;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s ease;
}
.next-btn:hover {
  background: #005fcc;
}
/* ============================
   SCORE FINAL
============================ */
.score-box {
  text-align: center;
  padding: 20px;
}
.restart-btn {
  background: #0033a0;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 15px;
  transition: background 0.25s ease;
}
.restart-btn:hover {
  background: #0050d4;
}
/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
  .quiz-select {
    font-size: 1rem;
    padding: 12px;
  }
  .soureth.big {
    font-size: 2rem;
  }
  .question-image {
    max-width: 200px;
  }
}
