body {
  cursor: none;
}

.custom-cursor {
  width: 18px;
  height: 18px;

  border-radius: 50%;

  position: fixed;

  top: 0;
  left: 0;

  pointer-events: none;

  z-index: 999999;

  background:
    linear-gradient(
      135deg,
      #ff4fa0,
      #ff9a30
    );

  box-shadow:
    0 0 20px rgba(255,80,180,0.8);

  transform:
    translate(-50%, -50%);

  transition:
    transform 0.08s linear;
}