/* ===========================================
   maze.css
   Full-screen modal for the Act 5 "find the dagger"
   maze minigame. Sits above the page (z-index 5000)
   but below the jumpscare overlay (z-index 9999),
   so the jumpscare can cleanly take over afterward.
   =========================================== */

.maze-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.maze-modal.active {
  display: flex;
}

.maze-instructions {
  color: #e0a868;
  font-family: Georgia, serif;
  text-align: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  opacity: 1;
  transition: opacity 1.2s ease;
}

.maze-instructions.fade-out {
  opacity: 0;
}

#maze-canvas {
  display: block;
  background: #000;
  image-rendering: pixelated;
  box-shadow: 0 0 40px rgba(255, 150, 60, 0.08);
}
