
body {
    cursor: none;
}

#cyber-cursor,
#cyber-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999999;
}

#cyber-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid #00cfff;
    border-radius: 50%;
    box-shadow:
        0 0 10px #00cfff,
        0 0 20px #0088ff,
        0 0 35px #00cfff;
    transition: transform 0.08s ease-out;
    backdrop-filter: blur(2px);
}

#cyber-cursor-dot {
    width: 8px;
    height: 8px;
    background: #00e1ff;
    border-radius: 50%;
    box-shadow:
        0 0 10px #00e1ff,
        0 0 20px #00e1ff;
}

a:hover ~ #cyber-cursor,
button:hover ~ #cyber-cursor {
    transform: translate(-50%, -50%) scale(1.5);
}
