/* ═══════════════════════════════════════════
   cursor.css — custom cursor (.cur file)

   Uses assets/cursor.cur as the primary cursor.
   Falls back to a CSS crosshair on systems that
   can't load .cur files (Linux/Mac browsers).
═══════════════════════════════════════════ */

/* Apply to every element so nothing reverts to default */
html,
body,
*,
*::before,
*::after {
  cursor: url('../assets/cursor.cur') 1 1, crosshair !important;
}

/* Clickable elements — same cursor (keeps the custom look) */
a,
button,
[role="button"],
label,
select,
input,
textarea,
.social-btn,
.tag {
  cursor: url('../assets/cursor.cur') 1 1, crosshair !important;
}
