.bracketContainer {
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 1cqw;
    padding: 1cqw;
    margin-top: 1vw;
    display: grid;
    grid-area: battles;
    /*grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);*/
    container-type: inline-size;
}

.bracketGroup {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    /*width: 24cqw;*/
    position: relative;
    container-type: inline-size;
    border-radius: 4cqw;
    clip-path: view-box;
    overflow: hidden;
    background: #c0b6ff;
    aspect-ratio: 8/3;
}

.bracketEntry {
    background: linear-gradient(95deg, rgba(0, 0, 0, 0.1) 25%, rgba(255, 255, 255, 0) 100%);
    display: flex;
    align-items: center;
    background-color: #c0b6ff;

    position: relative;
    padding-left: 4cqw;
}

.bracketEntry a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 8cqw;
    text-shadow: 0 0 4cqw rgba(0, 0, 0, 0.5);
    font-weight: bold;

}

.bracketEntry span {
    position: absolute;
    right: 4cqw;
    top: 5cqw;
    font-size: 8cqw;
    color: #f0f0f0;
    text-shadow: 0 0 4cqw rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.winnersBracket {
    display: grid;
    container-type: inline-size;
    justify-self: stretch;

    gap: 0.5cqw;
}

.losersBracket {
    display: grid;
    container-type: inline-size;
    justify-self: stretch;

    gap: 0.5cqw;
}

.finalsBracket {
    display: grid;
    container-type: inline-size;
    justify-self: stretch;
    align-content: center;
}

.bracketColumnContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    container-type: inline-size;

    gap: 0.5cqw;
}