/* ============================
   🌌 Phototaxis Canvas Overlay
   ============================ */

canvas#overlay {
  position: fixed;         /* 화면 전체에 고정 */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;         /* 모든 콘텐츠 위에 */
  pointer-events: none;   /* 마우스 이벤트 통과 */
  background: transparent; /* 배경 투명 (이미지 쓰려면 변경 가능) */
}

/* Phototaxis 중에는 모든 커서를 강제로 숨김 */
.phototaxis-active,
.phototaxis-active * {
  cursor: none !important;
}
