/* QUIC Whitepaper - Protocol Datagram Cursor */

.mp-custom-cursor-active {
    cursor: none;
}

#mp-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    background: radial-gradient(circle, #80eeff 0%, #00d4ff 50%, #0090bb 100%);
    box-shadow: 0 0 12px #00d4ff, 0 0 24px rgba(0,212,255,0.5);
    transition: width 0.15s, height 0.15s;
}

#mp-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 99998;
    border-radius: 50%;
    border: 1.5px solid rgba(0,212,255,0.55);
    box-shadow: 0 0 8px rgba(0,212,255,0.2);
}

.mp-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99997;
    overflow: hidden;
}

.mp-trail-particle {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    font-size: 8px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    white-space: nowrap;
    user-select: none;
    text-shadow: 0 0 4px currentColor;
    transition: opacity 0.1s linear;
}
