/* ============================================================
   style.css  —  页面外壳
   菜单本身画在 canvas 里（保持蜡笔风格统一），
   这里只负责铺满窗口、去掉滚动条、给出纸张底色。
   ============================================================ */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e8dcc4;
  font-family: "KaiTi", "STKaiti", "Kaiti SC", "Microsoft YaHei", sans-serif;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

#stage {
  position: fixed;
  inset: 0;
  display: block;
}

#game {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;      /* 触屏上自己处理拖拽，禁止默认手势 */
  cursor: grab;
}
#game:active { cursor: grabbing; }

#noscript {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #5a5044;
}

/* 极窄屏幕（手机竖屏）下稍微收紧 */
@media (max-width: 700px) {
  html, body { font-size: 14px; }
}
