/* ============================
   Festival Busan - Custom Cursor
   ============================ */

/* 터치/모바일에서는 커스텀 커서 비활성화 */
@media (hover: hover) and (pointer: fine) {
    * { cursor: none !important; }
}

#fb-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, transform 0.15s ease;
    mix-blend-mode: difference;
    will-change: transform, left, top;
}

#fb-cursor.hover {
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%) scale(1.8);
}

#fb-cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease;
    mix-blend-mode: difference;
    will-change: left, top;
}

#fb-cursor-ring.hover {
    width: 54px;
    height: 54px;
}

#fb-cursor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999997;
}
