*,
*::before,
*::after,
a,
button,
input,
select,
textarea,
body {
    cursor: none !important;
}

.cursor-dot,
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #000;
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    transition: width 0.3s, height 0.3s;
}

a:hover ~ .cursor-circle,
button:hover ~ .cursor-circle {
    width: 60px;
    height: 60px;
    border-color: rgba(249, 245, 245, 0.8);
}
