/* Custom Cursor Styles */
#cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #00f2fe;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

#cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #00f2fe;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* Hide cursor on mobile */
@media (max-width: 768px) {

    #cursor,
    #cursor-trail {
        display: none;
    }
}