/* -------------------- BRACKET LAYOUT -------------------- */
.bracket {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem;
    gap: 2rem;
    overflow-x: auto;
}

.round {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.round h3 {
    text-align: center;
    color: var(--text-main);
    text-shadow: 0 0 4px var(--text-main);
    margin-bottom: 0.5rem;
}

/* -------------------- PLAYERS -------------------- */
.players {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.players a {
    color: var(--text-main);
    text-decoration: none;
}

.players a:hover {
    color: var(--highlight);
}

/* -------------------- META INFO -------------------- */
.meta {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.25rem;
    color: var(--text-light);
}