.ctb-broadcast-wrapper {
    background: #1a1a1a;
    padding: 40px 20px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin: 20px 0;
}

.ctb-bracket-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.ctb-round-layer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ctb-round-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffca28;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.ctb-matches-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.ctb-match-box {
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 8px;
    width: 220px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.ctb-match-box:hover {
    transform: translateY(-5px);
    border-color: #ffca28;
}

.ctb-player {
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: background 0.3s;
}

.ctb-player.is-winner {
    background: rgba(255, 202, 40, 0.15);
    color: #ffca28;
}

.ctb-vs {
    background: #111;
    font-size: 10px;
    text-align: center;
    padding: 2px 0;
    color: #666;
    font-weight: bold;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.ctb-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ctb-crown {
    font-size: 14px;
}

/* Conectores visuales simples (Opcional) */
.ctb-round-layer:not(:last-child)::after {
    content: '';
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #ffca28, transparent);
    margin-top: 20px;
}