/* King James 2 — Scene layouts (choice / dialogue / puzzle shared) */

.kj-scene-art {
  font-size: 72px;
  text-align: center;
  min-height: 120px;
  padding: 20px 10px;
  line-height: 1.1;
  white-space: pre-line;
}
.kj-caption {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  text-align: center;
  padding: 10px 12px;
  line-height: 1.3;
  animation: kj-fadeIn 0.35s ease-out;
}
.kj-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 6px 20px;
}

/* Dialogue */
.kj-dialogue-stage {
  background: rgba(0,0,0,0.45);
  border: 2px solid gold;
  border-radius: 16px;
  padding: 16px;
  margin: 12px 6px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kj-dialogue-speaker {
  font-size: 18px;
  font-weight: bold;
  color: gold;
  margin-bottom: 6px;
}
.kj-dialogue-text {
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
}

/* Puzzle */
.kj-riddle-prompt {
  font-style: italic;
  background: rgba(0,0,0,0.35);
  padding: 12px;
  border-radius: 12px;
}
.kj-puzzle-progress {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  padding-top: 6px;
}
