body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Bebas Neue', Impact, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 30px;
    font-weight: bold;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    z-index: 100;
    border: solid black;
}

.title {
    margin-top: 60px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
}

.battle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.contestant {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name {
    font-size: 40px;
    margin-bottom: 20px;
}

.battle-img {
    width: 350px;
    max-width: 90vw;
    height: auto;
    border: 5px solid red;
    border-radius: 10px;
    cursor: zoom-in;
}

.vs {
    font-size: 60px;
    color: red;
    font-weight: bold;
}

#image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

#image-popup img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid red;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .battle-container {
        flex-direction: column;
        gap: 40px;
    }

    .vs {
        font-size: 50px;
        margin: 20px 0;
    }
}
