 /* Main custom cursor circle */
 .faecircle {
    position: fixed;
    pointer-events: none;
    width: 30px;
    height: 30px;
    border: 2px solid rgb(95, 89, 89);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.1s ease-out;
  }

  /* Duplicate trailing circle */
  .faeduplicate {
    position: fixed;
    pointer-events: none;
    width: 30px;
    height: 30px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9998;
  }