/* ===========================================
   START PROMPT - Title screen with og_image
   =========================================== */

.start-prompt {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  background: url('../og_image_v2.jpg') center center / contain no-repeat;
  background-color: var(--bg);
  cursor: pointer;
  transition: opacity 1s ease;
}

.start-prompt.hidden {
  opacity: 0;
  pointer-events: none;
}

.start-prompt .start-content {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.start-prompt .start-glyph {
  display: none;
}

.start-hint {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-warm);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.1em;
}

.start-prompt:hover .start-hint {
  color: var(--accent-warm-bright);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 20px rgba(230, 184, 74, 0.4);
}
