/* ========== QUIZ CARDS ========== */
.quiz-card {
  background: #0e0a1a;
  height:425px;
  border: 1px solid rgba(131, 92, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.quiz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}


.quiz-badge {
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}

.quiz-category-badge {
  display: inline-block;
  background: #252b47;
  color: #b6b6d6;
  font-size: 0.85em;
  font-weight: 500;
  padding: 0.28em 0.85em 0.28em 0.7em;
  border-radius: 1em;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #39416b;
  letter-spacing: 0.01em;
  opacity: 0.88;
  transition: background 0.18s, color 0.18s, opacity 0.18s;
  text-align: center;
  width: 100%;
}

.quiz-category-badge:hover {
  background: #39416b;
  color: #e0e0ff;
  opacity: 1;
}

/* ========== QUIZ PLAY PAGE ========== */
.answer-btn {
  display: block !important;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: transparent;
  color: #e2e8f0;
  transition: all 0.2s ease;
  min-height: 4rem;
}

.answer-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: #86d2f4;
  transform: translateY(-1px);
}

.answer-btn.btn-success {
  background: #38a169 !important;
  border-color: #38a169 !important;
  color: white !important;
}

.answer-btn.btn-success:hover {
  background: #2f855a !important;
  border-color: #2f855a !important;
}