/* ============================================
   自定义光标模块 - 所有类名均以 cursor- 开头
   ============================================ */

.cursor-outer,
.cursor-inner {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: none;
    will-change: left, top, width, height, opacity;
    box-sizing: border-box;
}

/* 外圈：默认半径24px、1px黄色描边 */
.cursor-outer {
    z-index: 99998;
    width: 48px;
    height: 48px;
    border: 1px solid #ffdd00;
    background-color: transparent;
}

/* 内圈：默认半径1px黄色圆点 */
.cursor-inner {
    z-index: 99999;
    width: 2px;
    height: 2px;
    background-color: #ffdd00;
}

/* 隐藏系统默认光标 */
body.cursor-active,
body.cursor-active * {
    cursor: none !important;
}