/* ═══════════════════════════════════════════════════════════════════════════
   CURSOR — Custom crosshair cursor
   ═══════════════════════════════════════════════════════════════════════════ */

#cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
#cursor svg {
  width: 100%;
  height: 100%;
}
#cursor.shooting {
  transform: translate(-50%, -50%) scale(1.3);
}
