/* =========================================
   CUSTOM CURSOR (손가락 커서까지 완벽 제거)
========================================= */

@media (min-width: 1025px) {
    /* [핵심 수정] body 대신 * (별표)를 써야 모든 요소에서 커서가 사라짐 */
    * {
        cursor: none !important;
    }
    
    /* 커스텀 커서 디자인 */
    .custom-cursor {
        position: fixed;
        top: 0; 
        left: 0;
        z-index: 9999;
        pointer-events: none; /* 클릭 방해 금지 */

        width: 30px;  
        height: 30px; 
        
        background-image: url('cursor.svg'); 
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        
        /* 중앙 정렬 */
        transform: translate(-50%, -50%);
        
        /* 움직임 부드럽게 */
        transition: transform 0.1s ease-out; 
    }

    /* 호버 상태 (45도 회전) */
    .custom-cursor.cursor-hover {
        transform: translate(-50%, -50%) rotate(45deg) scale(1.3);
    }
}

/* 모바일/태블릿: 커스텀 커서 숨기고 기본 터치 사용 */
@media (max-width: 1024px) {
    .custom-cursor { display: none !important; }
    * { cursor: auto !important; }
}