/* ═══════════════════════════════════════════════════════════
   clickspark.css — Unwind
   Styles for the fullscreen spark canvas only.
   The canvas is created and managed by clickspark.js.
════════════════════════════════════════════════════════════ */

#click-spark-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  /* Canvas must never occlude content or intercept input */
  user-select: none;
  -webkit-user-select: none;
}
