* {
  cursor: none !important;
}

html,
body {
  cursor: none;
}

a,
button,
input,
textarea,
select,
.nav-button,
.elem,
.magnetic,
[role="button"],
[onclick] {
  cursor: none !important;
}

#cursor {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  /* No transition here - handled by JS */
}

@media (max-width: 768px) {
  html,
  body {
    cursor: auto;
  }
  #cursor {
    display: none;
  }
}
