/* 数独是纯 canvas 游戏，CSS 只负责主题变量与背景（引擎的 engine.css 管其余）。 */
:root {
  --bg: #1B2430;
  --panel: #232F3E;
  --accent: #6FB3D2;
  --text: #EAF2F8;
}
body { background: var(--bg); }
