/* 《烛行》——全部画面由 Canvas 逐帧绘制，DOM 只负责画布本身。
   不使用 display:none 切屏；没有任何 CSS 动画承担主要动效。 */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #e9d3a6;
  overflow: hidden;
  /* 暖奶油底色：首帧绘制前也不是白屏 */
  overscroll-behavior: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
#cv {
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  touch-action: none;
}
