/* ===== Cursor Styles ===== */

html, body {
  height: 100%;
}

body {
  margin: 0;
  cursor: none; /* Hide default cursor */
}

/* Cursor "actor" container */
.cursor-actor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate3d(-9999px, -9999px, 0);
}

/* Cursor image (looping GIF) */
.cursor-actor img {
  display: block;
  width: 64px;
  height: 64px;
  /*image-rendering: pixelated; /* optional for crisp pixel art */
}

/* Restore native I-beam over text fields (optional) */
/* input,
textarea,
[contenteditable="true"] {
  cursor: text !important;
} */
