/* ==================== صفحه کوییز ==================== */

.quiz-page {
  animation: fadeIn 0.4s ease;
}

.quiz-header {
  text-align: center;
  margin-bottom: 30px;
}

.quiz-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 5px;
}

/* آمار */
.quiz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.quiz-stats .stat-card {
  background: white;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quiz-stats .stat-icon {
  font-size: 28px;
  margin-bottom: 5px;
}

.quiz-stats .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #4361ee;
}

.quiz-stats .stat-label {
  font-size: 11px;
  color: #666;
}

/* دکمه‌های انتخاب کوییز */
.quiz-options {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.quiz-option-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Vazirmatn", sans-serif;
}

.quiz-option-btn.primary {
  background: linear-gradient(135deg, #4361ee, #7209b7);
  color: white;
}

.quiz-option-btn.secondary {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.quiz-option-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* پیشرفت لیگ */
.league-progress {
  background: white;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.league-progress h3 {
  margin-bottom: 15px;
  color: #333;
}

.league-progress .progress-bar {
  background: #e0e0e0;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto 10px;
}

.league-progress .progress-fill {
  background: linear-gradient(90deg, #4361ee, #7209b7);
  height: 100%;
  width: 0%;
}

.league-progress p {
  font-size: 13px;
  color: #666;
}

/* کارت کوییز */
.quiz-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quiz-progress {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.quiz-timer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 50px;
}

.timer-bar {
  flex: 1;
  height: 6px;
  background: #4361ee;
  border-radius: 10px;
}

.quiz-question {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 60px;
  cursor: pointer;
  transition: 0.3s;
  text-align: right;
  font-family: "Vazirmatn", sans-serif;
  font-size: 16px;
}

.quiz-option:hover {
  background: #e8e8e8;
  transform: translateX(5px);
}

.option-letter {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #4361ee, #7209b7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.option-text {
  flex: 1;
}

/* بازخورد */
.quiz-feedback {
  background: white;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quiz-feedback.correct {
  border-top: 5px solid #27ae60;
}

.quiz-feedback.wrong {
  border-top: 5px solid #e74c3c;
}

.feedback-icon {
  font-size: 64px;
  margin-bottom: 15px;
}

.feedback-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feedback-explanation {
  color: #666;
  margin-bottom: 15px;
}

.feedback-score {
  font-size: 18px;
  font-weight: 700;
  color: #4361ee;
  margin-bottom: 20px;
}

.next-btn,
.back-btn {
  background: linear-gradient(135deg, #4361ee, #7209b7);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* نتیجه نهایی */
.quiz-result {
  background: white;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.result-icon {
  font-size: 64px;
  margin-bottom: 15px;
}

.result-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #333;
}

.result-score {
  font-size: 20px;
  margin-bottom: 10px;
}

.result-percentage {
  font-size: 18px;
  color: #4361ee;
  font-weight: 700;
  margin-bottom: 10px;
}

.result-xp {
  font-size: 18px;
  color: #27ae60;
  font-weight: 700;
  margin-bottom: 25px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .quiz-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .quiz-question {
    font-size: 18px;
  }

  .quiz-option {
    font-size: 14px;
    padding: 12px 15px;
  }

  .option-letter {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
