/* Idioms Quiz — MCQ-specific styles */

/* Two-button mode selector in footer */
.selector-mode-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* MCQ Screen */
.mcq-container {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.mcq-theme-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 999px;
  margin-bottom: 0;
}

.mcq-situation {
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.mcq-prompt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.mcq-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.mcq-option {
  width: 100%;
  padding: 15px 20px;
  background: var(--surface);
  border: 2px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.18s ease;
  font-family: inherit;
  line-height: 1.4;
}

.mcq-option:hover:not([disabled]) {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.04);
}

.mcq-option.is-correct {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
}

.mcq-option.is-wrong {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.07);
  color: #b91c1c;
}

.mcq-option[disabled] {
  cursor: default;
}

.mcq-feedback {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  width: 100%;
}

.mcq-feedback.is-correct {
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.mcq-feedback.is-wrong {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.mcq-feedback-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .selector-mode-btns {
    flex-direction: column;
    width: 100%;
  }

  .selector-mode-btns .btn {
    width: 100%;
  }

  .mcq-situation {
    font-size: 1.05rem;
  }

  .mcq-option {
    font-size: 0.95rem;
    padding: 13px 16px;
  }
}
