/* style.css — 레이아웃, 캔버스 센터링, 반응형 (기획서 5.3 / 10.4) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1c1736;
  /* 모바일: 스크롤/줌/롱프레스 선택 방지 (기획서 9.3) */
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

#stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game {
  display: block;
  touch-action: none;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  /* 크기는 main.js 가 뷰포트에 맞춰 동적 설정 */
}
