/* Paintball Animation Styles */

.paintball {
    position: fixed;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    box-shadow: inset -2px -2px 6px rgba(0,0,0,0.3);
}

.splat {
    position: absolute;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.9;
    transform: scale(0);
    animation: splat-appear 0.2s forwards;
}

@keyframes splat-appear {
    to {
        transform: scale(1) rotate(var(--rotation));
    }
}

/* Toggle Button Style */
#paintball-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001;
    background: #ff0000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

#paintball-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

#paintball-toggle.active {
    background: #00ff00;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4);
}
