/* cursor.css */
body {
    cursor: none;
    /* Hide default cursor */
}

/* Base cursor dot */
.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    /* We strictly avoid transitioning transform so mouse move is instantaneous */
    transition: width 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Hover state on interactive elements */
.custom-cursor-dot.cursor-hover {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    mix-blend-mode: difference;
    /* Crucial: keep it centered during size change */
}

/* Interactive elements should not have default pointer but we let custom cursor handle it */
a,
button,
input[type="submit"],
input[type="button"],
.copy-uid,
.pill-nav-item {
    cursor: none !important;
}