@media (width >= 80rem /* 1280px */) {
    /* Cursor Arrow */
    .cursor-arrow {
        position: absolute;
        width: 24px;
        height: 24px;
        pointer-events: none;
        z-index: 10;
        display: none; /* Hidden by default */
    }

    /* Trailing Circle */
    .cursor-circle {
        position: absolute;
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        background: transparent;
        border: 2px solid #fff;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9;
        display: none; /* Hidden by default */
    }
}