.custom-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 2147483647; 
    mix-blend-mode: normal;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 2s ease;
    
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    overflow: visible;
}


.custom-cursor.visible {
    opacity: 1;
}

.custom-cursor * {
    mix-blend-mode: normal !important;
    background-color: transparent !important;
}

.custom-cursor .cursor-core,
.custom-cursor .cursor-ring,
.custom-cursor .cursor-aura {
    mix-blend-mode: normal !important;
}

.cursor-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #ffe4bb88;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 15px rgba(255, 228, 187, 0.664),
        0 0 30px rgba(255, 228, 187, 0.6),
        0 0 45px rgba(255, 228, 187, 0.4);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    mix-blend-mode: normal;
}

.cursor-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(232, 182, 120, 0.295);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    mix-blend-mode: normal;
    background: transparent;
}

.cursor-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 164px;
    height: 164px;
    background: radial-gradient(circle, rgba(255, 228, 187, 0.15) 0%, rgba(255, 228, 187, 0.08) 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: normal;
    overflow: hidden;
}


        .cursor-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 228, 187, 0.4);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

        }

        
        .cursor.hover .cursor-core {
            width: 38px;
            height: 38px;
            background: rgba(20, 20, 20, 0.233);
            box-shadow: 
                0 0 25px rgba(255, 228, 187, 0.6),
                0 0 40px rgba(255, 228, 187, 0.4),
                0 0 60px rgba(255, 228, 187, 0.2);
            border: 1px solid rgba(255, 228, 187, 0.185);


        }

        .cursor.hover .cursor-ring {
            width: 64px;
            height: 64px;
            border-color: rgba(255, 228, 187, 0.6);





        }

        .cursor.hover .cursor-aura {
            width: 256px;
            height: 256px;
            background: radial-gradient(circle, rgba(255, 228, 187, 0.2) 0%, rgba(255, 228, 187, 0.1) 30%, transparent 70%);




        }

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}


.custom-cursor.hover .cursor-core {
            width: 38px;
            height: 38px;
            background: rgba(20, 20, 20, 0.13);
            box-shadow: 
                0 0 25px rgba(255, 228, 187, 0.486),
                0 0 40px rgba(255, 228, 187, 0.295),
                0 0 60px rgba(255, 228, 187, 0.2);
            border: 1px solid rgba(255, 228, 187, 0.3);


}

.custom-cursor.hover .cursor-ring {
            width: 64px;
            height: 64px;
            border-color: rgba(255, 228, 187, 0.6);
}


.custom-cursor.scrollbar-native-drag {
    opacity: 0 !important;
    transition: opacity 0.25s ease-out !important;
}
.custom-cursor.scrollbar-native-return {
    opacity: 1 !important;
    transition: opacity 0.35s ease-in !important;
}


.custom-cursor.scrollbar-pressed .cursor-core {
    width: 12px !important;
    height: 12px !important;
    transform: translate(-50%, -50%) scale(0.85);
}
.custom-cursor.scrollbar-pressed .cursor-ring {
    width: 32px !important;
    height: 32px !important;
    transform: translate(-50%, -50%) scale(0.9);
}
.custom-cursor.scrollbar-pressed .cursor-aura {
    transform: translate(-50%, -50%) scale(0.85);
}


.custom-cursor.hover.modal-hover .cursor-core {
    width: 16px !important;
    height: 16px !important;
}

.custom-cursor.hover.modal-hover .cursor-ring {
    width: 40px !important;
    height: 40px !important;
}

.custom-cursor.hover.modal-hover .cursor-aura {
    width: 164px !important;
    height: 164px !important;
    
    animation-play-state: paused !important;
}

        .cursor.hover .cursor-aura {
            width: 256px;
            height: 256px;
            background: radial-gradient(circle, rgba(255, 228, 187, 0.2) 0%, rgba(255, 228, 187, 0.1) 30%, transparent 70%);




        }


        #custom-cursor-container.hover #circle {
    
    border-width: 1px;
    border-color: rgba(255, 228, 187, 0.404);
    transform: scale(1.5) translate(-50%, -50%);
}



.custom-cursor {
    display: block;
    
}


* {
    cursor: none;
}

html, body {
    cursor: none;
}


@media (hover: none), (pointer: coarse), (max-width: 768px) {
    .custom-cursor {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    * {
        cursor: auto !important;
    }
    
    html, body {
        cursor: auto !important;
    }
}