.fighter-pane {
    background: rgba(13, 13, 16, 0.65);
    border: 1px solid rgba(45, 219, 222, 0.2);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(45, 219, 222, 0.3) rgba(0, 0, 0, 0.2);
}
.fighter-pane::-webkit-scrollbar {
    width: 6px;
    display: block !important;
}
.fighter-pane::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.fighter-pane::-webkit-scrollbar-thumb {
    background: rgba(45, 219, 222, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(45, 219, 222, 0.1);
}
.fighter-pane::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 219, 222, 0.6);
}
.fighter-grid-item {
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 32, 0.6);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.fighter-grid-item:hover {
    border-color: #2ddbde;
    background: rgba(45, 219, 222, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(45, 219, 222, 0.3);
}
.fighter-grid-item.selected {
    border-color: #b8860b;
    background: rgba(184, 134, 11, 0.15);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
}
.fighter-grid-item.disabled {
    opacity: 0.3;
    pointer-events: none;
    filter: grayscale(1);
}
.toggle-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s;
}
.toggle-btn.active {
    border-color: #2ddbde;
    color: #2ddbde;
    background: rgba(45, 219, 222, 0.1);
    text-shadow: 0 0 8px rgba(45, 219, 222, 0.5);
}
.fighter-scroll-grid {
    max-height: none;
    overflow-y: visible !important;
}
#ui-fighter-suite.menu-hidden {
    background: transparent !important;
    backdrop-filter: none !important;
    pointer-events: none !important;
}
#ui-fighter-suite.menu-hidden > *:not(#btn-show-menu) {
    display: none !important;
}
#ui-fighter-suite.menu-hidden #btn-show-menu {
    display: block !important;
    pointer-events: auto !important;
}
#ui-fighter-suite.match-fighting {
    background: transparent !important;
    backdrop-filter: none !important;
    pointer-events: none !important;
}
#ui-fighter-suite.match-fighting #fighter-setup-pane,
#ui-fighter-suite.match-fighting #fighter-footer {
    display: none !important;
}
