@media (hover: hover) and (pointer: fine) {

  * {
    cursor: none;
  }

  .cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
  }

  .cursor-ring,
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }

  .cursor-ring {
    width: 36px;
    height: 36px;
    border: 2px solid #FF6647;
    background: transparent;
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    background: #FF6647;
    transition: width 0.2s ease, height 0.2s ease, transform 0.1s ease;
  }

  body.cursor-hover .cursor-ring {
    width: 0;
    height: 0;
    opacity: 0;
  }

  body.cursor-hover .cursor-dot {
    width: 26px;
    height: 26px;
  }

  body:not(.cursor-visible) .cursor-ring,
  body:not(.cursor-visible) .cursor-dot {
    opacity: 0;
  }

}
