html, body { margin: 0; }

body{
  position: relative;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  background: #0b1530;
  z-index: -10;          /* 最背面 */
  pointer-events: none;
}


/* 暗背景（白星が見えるように） */
body { margin: 0; background:#070b1a; }

/* 通常はCSSで固定全面化。JS側にもフォールバックを持たせる */
.global-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
