/* ── SQUARE CURSOR + LAGGING RING ── */
#cur {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--acid);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .18s, height .18s, background .18s;
    opacity: 0;
}

#cur.big {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 255, 0, 0.25);
    border: 1px solid rgba(200, 255, 0, 0.6);
}

#cur-r {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(200, 255, 0, 0.2);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: left .1s, top .1s;
    opacity: 0;
}

/* ── TOUCH DEVICES — hide custom cursor entirely ── */
@media (pointer: coarse) {

    #cur,
    #cur-r {
        display: none !important;
    }
}