/* 浏览器端样式：画布铺满视口（小游戏端不加载本文件） */
html, body { margin: 0; height: 100%; background: #cdeafd; overflow: hidden; }
#game {
  display: block;
  width: 100vw; height: 100vh;
  touch-action: none;            /* 禁止浏览器默认手势/滚动 */
  image-rendering: pixelated;    /* 像素图不糊 */
}
