@media screen and (max-width: 768px) {
    #cursor-wrapper {
        display: none;
    }
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px #fff, 0 0 40px #fff;
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 1000;
    transition: width 0.2s, height 0.2s;

}

.cursor.expand {
    width: 40px;
    height: 40px;
}

.trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
    mix-blend-mode: difference;
}