html, body, a, button {
  cursor: none !important;
}

/* Custom cursor container */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 100001;
  transform-origin: center center;
  transition: transform 0.12s ease-out;
}

/* SVG fills the container */
#custom-cursor svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Optional visual feedback on interactive elements */
#custom-cursor.cursor-hover {
  transform: scale(1.3);
}
