body {
    background-color: #000;
    margin: 0;
    overflow: hidden;
    cursor: none;
}

.trail {
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    pointer-events: none;
    animation: trail-animation 0.8s ease-out forwards;
}

.splatter {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

#reset-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    z-index: 100;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
}

@keyframes trail-animation {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}
