.brawlers-hero{
    max-width:900px;
    margin:0 auto;
}
.brawlers-panel{
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.015));
    box-shadow:0 18px 40px rgba(0,0,0,.22);
    backdrop-filter:blur(8px);
}
.brawlers-toolbar{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
}
.brawlers-input,
.brawlers-select{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    border-radius:12px;
    padding:10px 12px;
    outline:none;
}
.brawlers-input{
    flex:1 1 260px;
}
.brawlers-select{
    flex:0 0 190px;
}
.brawlers-count{
    font-size:.88rem;
    color:rgba(255,255,255,.66);
}
.brawler-card{
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:rgba(255,255,255,.025);
    height:100%;
    transition:transform .15s ease,border-color .15s ease,box-shadow .15s ease;
}
.brawler-card:hover{
    transform:translateY(-3px);
    border-color:rgba(255,193,7,.35);
    box-shadow:0 12px 24px rgba(0,0,0,.2);
}
.brawler-img{
    width:64px;
    height:64px;
    object-fit:contain;
    display:block;
    margin:0 auto 8px;
}
.brawler-role{
    display:inline-block;
    font-size:.62rem;
    font-weight:700;
    border:1px solid rgba(255,255,255,.12);
    border-radius:999px;
    padding:4px 8px;
    background:rgba(255,255,255,.04);
    color:rgba(255,255,255,.86);
}
.brawler-mini{
    font-size:.72rem;
    color:rgba(255,255,255,.72);
}
.brawler-power-list{
    list-style:none;
    padding-left:0;
    margin:0;
}
.brawler-power-list li{
    font-size:.72rem;
    color:rgba(255,255,255,.78);
    margin-bottom:3px;
    line-height:1.25;
}
.brawlers-empty{
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.02);
}
.brawler-name{
    font-size:.9rem;
}

body.light-mode .brawlers-panel,
body.light-mode .brawlers-empty{
    background:#fff;
    border-color:#e5e7eb;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}

body.light-mode .brawlers-input,
body.light-mode .brawlers-select{
    background:#fff;
    color:#111827;
    border-color:#d1d5db;
}

body.light-mode .brawlers-count,
body.light-mode .brawler-mini,
body.light-mode .brawler-power-list li{
    color:#4b5563;
}

body.light-mode .brawler-role{
    background:#f3f4f6;
    color:#111827;
    border-color:#d1d5db;
}

body.light-mode .brawler-card{
    background:#fff;
    border-color:#e5e7eb;
    box-shadow:0 .5rem 1.25rem rgba(0,0,0,.08);
}

body.light-mode .brawler-name{
    color:#111827;
}

@media (max-width:575.98px){
    .brawlers-select{
        flex:1 1 100%;
    }
}

body:not(.light-mode) .brawlers-input,
body:not(.light-mode) .brawlers-select,
body:not(.light-mode) .brawlers-select option{
    background:#0f1117 !important;
    color:#e5e7eb !important;
    border-color:rgba(255,255,255,.12) !important;
}

body.light-mode .brawlers-input,
body.light-mode .brawlers-select,
body.light-mode .brawlers-select option{
    background:#fff !important;
    color:#111827 !important;
    border-color:#d1d5db !important;
}
