/* Custom Boss ME-50 Styling */

.slider-vertical {
    writing-mode: bt-lr; /* IE */
    -webkit-appearance: slider-vertical; /* WebKit */
    width: 16px;
    height: 96px;
    background: linear-gradient(to top, #374151, #6b7280);
    outline: none;
    border-radius: 8px;
}

.slider-vertical::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 12px;
    border-radius: 6px;
    background: #f97316;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-vertical::-moz-range-thumb {
    width: 20px;
    height: 12px;
    border-radius: 6px;
    background: #f97316;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Knob hover effects */
.knob-container:hover {
    transform: scale(1.05);
}

/* LED glow effects */
.led-red {
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
}

.led-orange {
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.7);
}

/* Boss pedal metallic texture */
.boss-metal {
    background: linear-gradient(145deg, #4b5563, #374151);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Footswitch styling */
.footswitch {
    background: linear-gradient(145deg, #6b7280, #4b5563);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 2px solid #374151;
}

.footswitch:active {
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-vertical {
        height: 64px;
        width: 12px;
    }
    
    .footswitch {
        width: 60px;
        height: 48px;
        font-size: 10px;
    }
}

/* Animation for tap tempo */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.tap-pulse {
    animation: pulse 0.5s ease-in-out;
}

/* Boss orange accent color theme */
.text-boss-orange {
    color: #ff6b35;
}

.bg-boss-orange {
    background-color: #ff6b35;
}

.border-boss-orange {
    border-color: #ff6b35;
}

/* Subtle texture overlay */
.boss-texture {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}