/* ============================================================
   GTG galaxy background — slow-spinning star field, site-wide.
   z-index: -1 keeps it behind all page content.
   ============================================================ */

/* Move the dark base colour from body to html so the canvas
   (which is inside body at z-index:-1) isn't obscured by body's
   own background. Both selectors have equal specificity so the
   load-order advantage (this file loads after main.css) wins. */
html { background-color: #111210; }
body { background-color: transparent; }

#gtg-galaxy-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  display: block;
}
