/* ① 全站黑色底，文字默认浅色（可按主题情况调整） */
html, body { height: 100%; margin: 0; }
body       { background: #000; color: #f5f5f5; }

/* ② 静态星空 Canvas（最底层，只画一次） */
#bgStarCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;          /* 永远垫底，不挡内容 */
  pointer-events: none; /* 不拦截鼠标 */
}

/* ③ 流星 Canvas（最顶层，随点生成流星） */
#starCanvas {
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 9999;        /* 高于一切但 pointer-events:none */
  pointer-events: none;
}
