#detail-fighter-list,
#fighter-list {
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:flex-start;
    padding-top:15px;
    padding-left:15px;
}

.fighter-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:200px;
    text-decoration:none;
    color:inherit;
    background: rgba(255,255,255,0.08);
    transition:transform .2s, box-shadow .2s;
}

.fighter-card:hover{
    transform:translateY(-2px) scale(1.02);
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.fighter-card img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:12px;
}

.fighter-name{
    margin-top:10px;
    text-align:center;
    font-size:21px;
    font-weight:600;
    padding-bottom:12px;
}

.fighter-nickname{
    color:#d4af37; 
    margin-right:6px;
    font-weight:700;
}


.fighter-real-name{
    color:white;
}

#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
}

#pagination button {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
}

#pagination button.active {
    background: #222;
    color: #fff;
    border-color: #222;
}

@media (max-width: 1100px) {
    #detail-fighter-list,
    #fighter-list {
        padding-left: 10px;
        padding-right: 10px;
        justify-content:center;
    }
}

@media (max-width: 500px) {
    .fighter-card {
        width: 100%;
        max-width: 260px;
    }
}