/* Simple red dot trailing the native pointer (desktop / fine-pointer only). */
@media (hover: hover) and (pointer: fine) {
  #custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e30613;
    pointer-events: none;
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  #custom-cursor.is-visible {
    opacity: 1;
  }

  #custom-cursor.is-hidden {
    opacity: 0;
  }
}
