.fightCard {
    margin-top: 50px;
    padding: 40px 0 40px;
    display: flex;
    width: 80%;
    height: auto;
    flex-direction: column;
    align-items: center;
    background-color: #a0a0a01c;
    border-radius: 30px;
}

.fightDuo {
    width: 95%;
    justify-content: space-between;
    display: flex;
    height: 150px;
}

.fighterRight {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 45%;
    border-radius: 10px;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 0.3s;
    margin-left: 40px;
}

.fighterLeft {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 45%;
    border-radius: 10px;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 0.3s;
    margin-right: 40px;
}

.fighterLeft:hover,
.fighterRight:hover {
    background-color: #6b6b6b2a;
    cursor: pointer;
}

.fighterLeft>.fighterInFightcardInfo {
    text-align: end;
}

.fighterRight>.fighterInFightcardInfo {
    text-align: start;
}

.fighterInFightcardInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
    height: 100%;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
}

.fighterPhoto {
    height: 70%;
    object-fit: contain
}

.fighterInFightcardInfo>.fighterName {
    color: white;
    font-size: 1.5rem;
    padding: 10px;
}

.fighterInFightcardInfo>.fighterNickname {
    padding: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    color: rgb(167, 167, 167);
    font-size: 1.2rem;
}

.vsSymbol {
    flex: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffcc00;
}

.fightStyle {
    font-size: 1.2rem;
    margin-top: 40px;
    color: rgb(173, 173, 173);
}

.fighterInMenuInfo>.fighterName {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 10px;
}

.fighterInMenuInfo>.fighterNickname {
    padding: 10px;
    padding-bottom: 20px;
    font-weight: 600;
    color: #a0a0a0;
}

.fightCategory {
    text-shadow:
        0 10px 3px rgba(160, 160, 160, 0.3),
        0 20px 10px rgba(255, 255, 255, 0.2),
        0 -10px 3px rgba(160, 160, 160, 0.3),
        0 -20px 10px rgba(255, 255, 255, 0.2);
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: 8rem;
    text-transform: uppercase;
    font-family: "Source Code Pro", monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.firstFightCategory {
    text-shadow:
        0 10px 3px rgba(160, 160, 160, 0.3),
        0 20px 10px rgba(255, 255, 255, 0.2),
        0 -10px 3px rgba(160, 160, 160, 0.3),
        0 -20px 10px rgba(255, 255, 255, 0.2);
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: 2rem;
    text-transform: uppercase;
    font-family: "Source Code Pro", monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1100px) {
    .fightDuo {
        flex-direction: row;
        justify-content: center;
        height: auto;
        gap: 10px;
        width: 100%;
    }

    .fighterLeft,
    .fighterRight {
        flex-direction: column;
        align-items: center;
        width: 45%;
        padding: 10px;
        margin: 0;
        text-align: center;
    }

    .fighterPhoto {
        order: 1;
        width: 100%;
        height: auto;
        max-width: 120px;
    }

    .fighterInFightcardInfo {
        order: 2;
        width: 100%;
        padding-top: 8px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .fighterLeft>.fighterInFightcardInfo,
    .fighterRight>.fighterInFightcardInfo {
        text-align: center;
    }

    .fighterInFightcardInfo>.fighterName {
        font-size: 1.2rem;
        padding: 5px;
    }

    .fighterInFightcardInfo>.fighterNickname {
        font-size: 1rem;
        padding: 5px;
    }

    .vsSymbol {
        width: 100%;
        text-align: center;
        font-size: 3rem;
    }
}


@media (max-width: 768px) {
    .vsSymbol {
        font-size: 2rem;
    }

    .fighterInFightcardInfo>.fighterName {
        font-size: 1.2rem;
        padding: 5px;
    }

    .fighterInFightcardInfo>.fighterNickname {
        font-size: 1rem;
        padding: 5px;
    }

    .fighterPhoto {
        max-width: 60px;
    }

    .fightCard {
        width: 90%;
    }
}