/* ═══════════════════════════════════════════
   EXPERIMENTAL — narrator as ghostly centered title card
   Loaded AFTER style.css, overrides narrator positioning only.
   ═══════════════════════════════════════════ */

#narrator {
  /* centered mid-viewport instead of bottom bar */
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  padding: 0;
  width: 88vw;
  max-width: 720px;
  text-align: center;
  pointer-events: none;
}

#narrator-label {
  /* hide the "NARRATOR" chrome label — interface-y, doesn't belong in title-card mode */
  display: none;
}

#narrator-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 22px;
  line-height: 1.7;
  max-width: none;
  color: #f0f0f0;
  /* halo so text survives over busy backgrounds — the only "effect" */
  text-shadow:
    0 0 2px rgba(0,0,0,0.9),
    0 0 14px rgba(0,0,0,0.75),
    0 0 28px rgba(0,0,0,0.5);
}

#narrator-hint {
  font-size: 14px;
  margin-top: 18px;
  letter-spacing: 0.3em;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
}
