.fighters-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.fighter-card {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    background: #111111;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.fighter-card:hover {
    transform: translateY(-5px);
}

.fighter-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.fighter-image {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.fighter-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(17,17,17,0) 0%, rgba(17,17,17,1) 100%);
}

.fighter-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.fighter-info {
    position: relative;
    padding: 20px;
    color: #ffffff;
    z-index: 2;
}

.fighter-name {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fighter-name a {
    color: #ffffff;
    text-decoration: none;
}

.fighter-name a:hover {
    color: #e41e1e;
}

.fighter-nickname {
    color: #e41e1e;
    font-size: 16px;
    margin: 5px 0;
    font-style: italic;
}

.fighter-stats {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #888888;
}

.weight-class {
    background: #222222;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.record {
    color: #e41e1e;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .fighters-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fighters-container {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}
