/* hide default cursor everywhere */

*, *::before, *::after {
    cursor: none !important;

}

/* custome plane cursor */

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.15s ease, opacity 0.3s;
    color: #FBBF24;
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Grow on hover over buttons/links */

#custom-cursor.hovering {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.5);
    color: #F59E0B;
}

/* Click effect */

#custom-cursor.clicking {
    transform: translate(-50%, -50%) rotate(45deg) scale(0.8);
}

/* Trailing dots */

.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 999998;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FBBF24;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
}
