* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%;
  background: #04060f;
  overflow: hidden;
  font-family: system-ui, -apple-system, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#stage {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
#game {
  width: 100%; height: 100%;
  display: block;
  touch-action: none;
}
/* 直向提示（手機） */
#rotate {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  text-align: center; line-height: 1.6;
  color: #cfe0ff; font-size: 24px; font-weight: 700;
  background: #04060f; z-index: 10;
}
@media (max-width: 900px) and (orientation: portrait) {
  #rotate { display: flex; }
}
