body.custom-cursor-enabled {
    cursor: none;
}

body.custom-cursor-enabled * {
    cursor: none !important;
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border 0.2s ease;
    margin: -10px 0 0 -10px;
}

#custom-cursor.clicking {
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border 0.2s ease;
}

#custom-cursor.unclicking {
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease,
        border 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid white;
}

#click-spark-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}