/* ==========================================================================
   Treasure Map Trail – Custom cursor styles
   ========================================================================== */

/*
 * On interactive elements, swap the default pointer finger
 * for a rounded map-point marker. The hotspot (12, 28) sits
 * at the bottom tip of the pin so clicking feels natural.
 */

a,
button,
input[type="submit"],
input[type="button"],
[role="button"],
.wp-block-button__link,
.wp-element-button {
  cursor: url('../assets/map-marker.svg') 12 28, pointer !important;
}

/* The canvas overlay itself — sits above everything but ignores clicks */
#treasure-map-trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99999;
}
