/* ============================================================
   3D PIXEL CURSOR  (from custom-cursor.com — client provided)
   ------------------------------------------------------------
   The cursor images are ~3.5 KB of base64 each. I can't retype
   them reliably, so paste YOUR two values from the snippet you
   sent into the TWO spots below, then save:

   1) ARROW  -> the long string after  cursor: url(  in
                ._3d-pixel-cursor__arrow   (ends in ...QmCC)
   2) POINTER -> the long string after cursor: url(  in
                ._3d-pixel-cursor__pointer  (ends in ...YII=)

   Replace the word PASTE_ARROW_BASE64 / PASTE_POINTER_BASE64
   (keep everything else exactly as-is).
   ============================================================ */

/* default arrow — everywhere */
html,
body,
* {
  cursor: url(data:image/png;base64,PASTE_ARROW_BASE64), default !important;
}

/* pointer hand — interactive elements */
a,
button,
.btn,
.qball,
.tdash,
.carbtn,
.ft-container,
summary,
label,
[role='button'] {
  cursor: url(data:image/png;base64,PASTE_POINTER_BASE64), pointer !important;
}
