/* 全画面キャンバスの土台。UIはすべて canvas 内に描くので DOM は最小限。 */
:root {
  color-scheme: dark;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #05040a;
  /* 端末のタッチ操作（スクロール/ダブルタップズーム）を無効化して操作を安定させる */
  touch-action: none;
  overscroll-behavior: none;
  -webkit-user-select: none;
  user-select: none;
}

#scene {
  display: block;
  width: 100%;
  height: 100%;
  /* iOS のセーフエリア内でも黒背景で埋める */
  background: #05040a;
  cursor: pointer;
}
