/* cursor.css */
* {
  cursor: none !important;
}

#custom-cursor {
  width: 20px;
  height: 20px;
  background: #4fd1ff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999999;
}