/* ================================
   CUSTOM CURSOR EFFECTS
   Interactive cursor with glow trail
   ================================ */

.splash {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease-out;
    mix-blend-mode: screen;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 53, 1);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.9);
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 53, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: trailFade 0.5s ease-out forwards;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.9);
}

@keyframes trailFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.custom-cursor.clicking {
    transform: scale(0.8);
}

.custom-cursor.hovering {
    width: 40px;
    height: 40px;
    border-color: rgba(247, 147, 30, 1);
    background: rgba(247, 147, 30, 0.1);
}
