/* Main container styles */
.cursor-follower-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none; /* Crucial so we can click elements underneath */
  z-index: 999999;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height;
  display: none; /* Shown dynamically via JS when mouse moves */
  box-sizing: border-box;
}

/* Ensure standard cursors can hide if needed, but we keep default so users don't lose track of click target */
html, body {
  /* optional: cursor: none; */
}
