.quiz-trigger-container {
  padding: 50px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 50px;
}

.mission-complete-card {
  background: #1a1833;
  border: 2px solid #8b7fff;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(139, 127, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.mission-complete-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(139, 127, 255, 0.4);
  border-color: #00ff88;
}

.mission-complete-card:active {
  transform: translateY(0) scale(0.98);
}

.mission-complete-card h3 {
  color: #00ff88;
  margin-bottom: 10px;
  pointer-events: none;
}

.mission-complete-card p {
  color: #fff;
  margin-bottom: 20px;
  pointer-events: none;
}

.mission-complete-card .btn {
  pointer-events: none;
  /* Make button visual only since card is clickable */
}

/* Quiz Overlay */
.quiz-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.quiz-modal {
  background: #1a1833;
  border: 1px solid #8b7fff;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(139, 127, 255, 0.3);
}

.quiz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.progress-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dot.active {
  background: #8b7fff;
  box-shadow: 0 0 10px #8b7fff;
}

.dot.done {
  background: #00ff88;
}

.question-text {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.option-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.option-btn:hover {
  background: rgba(139, 127, 255, 0.2);
  border-color: #8b7fff;
  transform: translateX(5px);
}

/* Results */
.results-container {
  text-align: center;
}

.results-container i {
  font-size: 60px;
  margin-bottom: 20px;
}

.success-icon {
  color: #00ff88;
}

.error-icon {
  color: #ff4d4d;
}

.results-container h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.results-container p {
  color: #ccc;
  margin-bottom: 25px;
}