/* AFTER DWN - Cursor Trail Effect */

/* Hide native cursor so only the custom red trail is visible */
html, body, a, button, input, textarea {
    cursor: none !important;
}

.cursor-trail {
    position: fixed;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ff2a2a;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    box-shadow: 0 0 10px #ff2a2a;
    transition: opacity 0.2s ease;
}

.cursor-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-line {
    position: fixed;
    width: 1px;
    height: 15px;
    background-color: #ff2a2a;
    opacity: 0.3;
    pointer-events: none;
    z-index: 9998;
    transform-origin: center bottom;
}
