.tournament-header {
    border-top: 4px solid var(--primary);
}

.match-card {
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.match-card.ongoing {
    border-color: var(--accent);
}

.live-badge-wrapper {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-main);
    padding: 0 10px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.match-score {
    padding: 0 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

.team-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
