/* Historical Dilemma modal — half-screen bottom sheet.
   All reading text >= 1rem per CLAUDE.md. Colors via CSS variables. */

.dilemma-modal {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dilemma-question {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--font-color-1);
  margin: 0;
}

/* ---- Choices ---- */
.dilemma-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dilemma-choice {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #c8b890;
  border-radius: 8px;
  background: var(--background-color-3);
  color: var(--font-color-1);
  font: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
  touch-action: manipulation;
  box-sizing: border-box;
}

button.dilemma-choice:hover:not(:disabled) {
  background: var(--background-color-2);
  border-color: #2a241e;
}

button.dilemma-choice:disabled { cursor: default; }

.dilemma-choice-static {
  cursor: default;
}

.dilemma-choice-selected,
button.dilemma-choice-selected:hover:not(:disabled) {
  background: var(--background-color-2);
  border-color: #2a241e;
  box-shadow: inset 0 0 0 2px #2a241e;
  font-weight: 700;
}

.dilemma-choice-correct {
  background: var(--font-color-positive);
  border-color: var(--font-color-positive);
  color: #fff;
  font-weight: 700;
}

.dilemma-choice-wrong {
  background: var(--background-color-danger);
  border-color: var(--background-color-danger);
  color: #fff;
  font-weight: 700;
}

/* ---- Submit row ---- */
.dilemma-submit-row {
  margin-top: 0.25rem;
}

.dilemma-submit {
  width: 100%;
}

.dilemma-submit:disabled {
  opacity: 0.5;
  cursor: default;
}

/* ---- Result verdict ---- */
.dilemma-result-verdict {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.dilemma-correct { color: var(--font-color-positive); }
.dilemma-wrong   { color: var(--font-color-danger); }

/* ---- Reveal block ---- */
.dilemma-reveal {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--font-color-1);
}

.dilemma-reveal-label {
  font-weight: 700;
  margin-right: 0.3em;
}

.dilemma-reveal-text {
  font-style: italic;
}

/* ---- Gift icons row ---- */
.dilemma-gifts-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}
.dilemma-gifts-icons img {
  width: 2.5rem;
  height: 2.5rem;
}

/* ---- Revisit status line ---- */
.dilemma-revisit-status {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

/* ---- Action row (Begin + Back) ---- */
.dilemma-action-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.dilemma-begin {
  width: 100%;
}

.dilemma-back {
  width: 100%;
}
