/* ============================================================
   Starfish Cursor
   ============================================================ */

/* Oculta el cursor nativo en toda la web */
* {
  cursor: none !important;
}

#starfish-cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
}

/* En dispositivos táctiles restauramos el cursor normal */
@media (hover: none) and (pointer: coarse) {
  * {
    cursor: auto !important;
  }
  #starfish-cursor-canvas {
    display: none;
  }
}
