@media (min-width: 1024px) {
  body { cursor: none !important; }

  .cursor-outer,
  .cursor-inner,
  .cursor-label {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
  }

  .cursor-outer {
    width: 40px;
    height: 40px;
    border: 2px solid #7b5cff;
    border-radius: 50%;
    opacity: 0.5;
    transition: width .25s ease, height .25s ease, background .25s ease, border-color .25s ease;
  }

  .cursor-inner {
    width: 10px;
    height: 10px;
    background: #7b5cff;
    border-radius: 50%;
    transition: background .2s ease;
  }

  .cursor-label {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #7b5cff;
    padding: 6px 14px;
    border-radius: 20px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity .2s ease, transform .2s ease;
  }

  a:hover ~ .cursor-outer {
    width: 70px !important;
    height: 70px !important;
    border-color: #ff8d00;
  }
}
