/* Cursor Light Effect */
.cursor-light {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230,192,107,0.3) 0%, rgba(230,192,107,0.15) 40%, rgba(230,192,107,0) 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    margin-left: -100px;
    margin-top: -100px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                margin 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99999 !important;
    mix-blend-mode: screen;
    will-change: left, top, width, height;
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .cursor-light {
        display: none;
    }
}

/* Touch device optimizations */
.touch-device .cursor-light {
    display: none;
}

