/**
 * MONOBUILD 커스텀 커서 — 가시성 향상 버전
 * 수정일: 2026-06-02 11:34 (KST)
 */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 20px; height: 20px;
    background: #c5a059; /* 눈에 띄는 브랜드 골드 색상 */
    border: 2px solid #fff; /* 흰색 테두리로 가시성 확보 */
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    /* mix-blend-mode 삭제 (가시성 저하 원인) */
    box-shadow: 0 0 10px rgba(0,0,0,0.5); /* 그림자 추가 */
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor.expand {
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.4);
    border-color: #c5a059;
}

/* 데스크탑에서만 기본 커서 숨김 */
@media (min-width: 769px) {
    * {
        cursor: none !important;
    }
}
