.special {
  /* padding: 20px; */
  line-height: 1;;
  cursor: none !important;
}

/* Cursor follower */
#follower {
  background: #fb8f15;
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); /* Smooth grow */
  z-index: 9999;
}

/* Big mode only on special text */
#follower.big {
  background: white;
  transform: translate(-50%, -50%) scale(10); /* 10× because 5px radius → 50px radius */
  mix-blend-mode: difference;
}
