.po2-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: .75rem 0 1.5rem;
    scrollbar-color: rgba(0,230,135,.35) rgba(255,255,255,.04);
}
.po2-bracket {
    --po2-card-w: 154px;
    --po2-gap: 14px;
    display: grid;
    grid-template-columns: minmax(calc(var(--po2-side-cols) * (var(--po2-card-w) + var(--po2-gap))), 1fr) 174px minmax(calc(var(--po2-side-cols) * (var(--po2-card-w) + var(--po2-gap))), 1fr);
    align-items: stretch;
    gap: 18px;
    min-width: calc((var(--po2-side-cols) * 2) * (var(--po2-card-w) + var(--po2-gap)) + 210px);
    min-height: 760px;
}
.po2-side {
    display: grid;
    grid-template-columns: repeat(var(--po2-side-cols), minmax(var(--po2-card-w), 1fr));
    gap: var(--po2-gap);
}
.po2-round { min-width: 0; display: flex; flex-direction: column; }
.po2-round-title {
    height: 28px;
    text-align: center;
    color: rgba(0,230,135,.75);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .62rem;
    font-weight: 800;
    white-space: nowrap;
}
.po2-round-matches {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 8px;
    position: relative;
}
.po2-match-link { display: block; color: inherit; text-decoration: none; }
.po2-match {
    position: relative;
    width: 100%;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    background: linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.018));
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.po2-match::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(var(--po2-gap) + 1px);
    height: 1px;
    background: rgba(0,230,135,.25);
}
.po2-round--left .po2-match::after { left: 100%; }
.po2-round--right .po2-match::after { right: 100%; }
.po2-side--left .po2-round:last-child .po2-match::after,
.po2-side--right .po2-round:first-child .po2-match::after { width: calc(var(--po2-gap) + 20px); }
.po2-match--waiting { opacity: .68; border-style: dashed; }
.po2-match--completed { border-color: rgba(0,230,135,.28); }
.po2-match--live { border-color: rgba(239,68,68,.55); box-shadow: 0 0 18px rgba(239,68,68,.12); }
.po2-match--awaiting_winner { border-color: rgba(245,158,11,.5); }
.po2-match-meta {
    min-height: 18px;
    padding: 2px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    background: rgba(0,0,0,.22);
    color: rgba(255,255,255,.38);
    font-size: .48rem;
    letter-spacing: .03em;
}
.po2-live { color: #fca5a5; font-weight: 800; }
.po2-team {
    min-height: 34px;
    padding: 5px 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.po2-team--winner { background: rgba(0,230,135,.11); }
.po2-team--loser { opacity: .5; }
.po2-team-logo-wrap {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255,255,255,.78);
}
.po2-team-logo { width: 18px; height: 18px; object-fit: contain; }
.po2-team-logo-placeholder { font-size: .65rem; }
.po2-team-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .7rem;
    font-weight: 600;
}
.po2-team-score { font-family: 'Rajdhani',sans-serif; font-size: .95rem; font-weight: 800; color: white; }
.po2-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    position: relative;
    padding-top: 28px;
}
.po2-center .po2-round-title { margin-bottom: 6px; }
.po2-center .po2-match::before,
.po2-center .po2-match::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 1px;
    background: rgba(245,158,11,.55);
}
.po2-center .po2-match::before { right: 100%; }
.po2-center .po2-match::after { left: 100%; }
.po2-trophy { text-align: center; font-size: 2.6rem; margin-bottom: .35rem; filter: drop-shadow(0 0 14px rgba(245,158,11,.32)); }
@media (max-width: 768px) {
    .po2-bracket { --po2-card-w: 142px; --po2-gap: 11px; min-height: 650px; }
    .po2-scroll { margin-left: -1rem; width: calc(100% + 2rem); padding-left: 1rem; padding-right: 1rem; }
}

