html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #05060f; /* 다크 네온 배경 — 캔버스 여백까지 일관 */
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none; /* 모바일 스크롤·당겨서새로고침 방지 (스와이프 입력 보존) */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

#game {
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* 모바일 주소창 변동 대응 */
}

#game canvas {
  display: block;
}
