/* Custom cursor — desktop only (hidden on touch/small screens via JS) */

* { cursor: none !important; }

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.2s ease;
}

#cursor-message { display: none; }

#custom-cursor.is-visible { opacity: 1; }
#custom-cursor.is-hover   { transform: translate(-50%, -50%) scale(2); }
