/* Custom LCD screen effect */
.lcd-screen {
    background: linear-gradient(180deg, #001100 0%, #002200 100%);
    box-shadow: inset 0 0 10px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px #00ff41;
}

/* Drum pad 3D effect */
.drum-pad {
    background: linear-gradient(145deg, currentColor, color-mix(in srgb, currentColor 70%, black));
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.1s ease;
}

.drum-pad:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.drum-pad:active, .drum-pad.brightness-150 {
    transform: translateY(1px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .drum-pad {
        min-height: 50px !important;
        min-width: 60px !important;
        font-size: 0.75rem;
    }
    
    #kick-container {
        height: 80px !important;
        width: 120px !important;
    }
}

/* Volume slider styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #374151;
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #dc2626;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #dc2626;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}