/* reversi —— 只放 canvas 兜底；一切 UI 都画在 canvas 上（本仓 canvas 游戏的惯例）。 */
html, body { margin: 0; padding: 0; background: #0b3b23; overflow: hidden; }
#game-canvas { display: block; touch-action: none; }
/* 减弱动态：body.rm 关掉所有 CSS 动画（引擎会按系统偏好加这个类） */
body.rm *, body.rm *::before, body.rm *::after {
  animation-duration: 0.001s !important; transition-duration: 0.001s !important;
}
