.playoff-bracket-container {
    padding: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bracket-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bracket-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.projection-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
}

.format-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.bracket-section {
    margin-bottom: 2rem;
}

.bracket-section.consolation-section {
    border-top: 2px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 2rem;
}

.section-header {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.bracket-mobile {
    display: block;
}

.bracket-desktop {
    display: none;
}

.round-container {
    margin-bottom: 2rem;
}

.round-header {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    text-align: center;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.matchup-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.matchup-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.matchup-card.completed {
    border-color: var(--success-color);
}

.team-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
    position: relative;
    min-height: 3rem;
}

.team-row:last-child {
    border-bottom: none;
}

.team-row.winner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
}

.team-row.winner::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: var(--success-color);
    font-weight: bold;
    font-size: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
}

.seed-badge {
    background: linear-gradient(135deg, var(--primary-color), rgba(59, 130, 246, 0.8));
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.75rem;
    min-width: 2.25rem;
    text-align: center;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team-row:not(.winner) .seed-badge {
    margin-left: 0;
}

.team-row.winner .seed-badge {
    margin-left: 2rem;
    background: linear-gradient(135deg, var(--success-color), rgba(34, 197, 94, 0.8));
}

.team-name {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    word-break: break-word;
    padding-right: 0.5rem;
}

.team-score {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 0.25rem;
    min-width: 3.5rem;
    text-align: center;
    color: var(--text-primary);
    flex-shrink: 0;
}

.team-row.winner .team-score {
    background: rgba(34, 197, 94, 0.2);
    color: #fff;
}

.bye-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 2px dashed var(--success-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
}

.bye-card .team-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.bye-card .seed-badge {
    margin: 0;
}

.bye-card .team-name {
    padding: 0;
    font-size: 0.95rem;
    text-align: left;
}

.bye-label {
    color: var(--success-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finals-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.finals-label:first-of-type {
    margin-top: 0;
}

.consolation-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
}

.champion-card {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    animation: championPulse 2s ease-in-out infinite;
}

.champion-card h3 {
    color: #1a1a1a;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.champion-name {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.scroll-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.consolation-ladder {
    padding: 1rem;
}

.ladder-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ladder-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.ladder-week {
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
}

.week-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.ladder-matchup {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ladder-matchup:last-child {
    margin-bottom: 0;
}

.ladder-matchup:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ladder-matchup.completed {
    border-color: var(--success-color);
}

.ladder-team {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.75rem;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
    position: relative;
    min-height: 2.5rem;
}

.ladder-team:last-child {
    border-bottom: none;
}

.ladder-team.winner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
}

.ladder-team.winner::before {
    content: '↑';
    position: absolute;
    left: 0.5rem;
    color: var(--success-color);
    font-weight: bold;
    font-size: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
}

.ladder-team.loser {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
}

.ladder-team.loser::before {
    content: '↓';
    position: absolute;
    left: 0.5rem;
    color: #ef4444;
    font-weight: bold;
    font-size: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
}

.ladder-team .seed-badge {
    margin-left: 1.25rem;
    margin-right: 0.5rem;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    min-width: 1.75rem;
}

.ladder-team.winner .seed-badge {
    background: linear-gradient(135deg, var(--success-color), rgba(34, 197, 94, 0.8));
}

.ladder-team.loser .seed-badge {
    background: linear-gradient(135deg, #ef4444, rgba(239, 68, 68, 0.8));
}

.ladder-team .team-name {
    font-size: 0.8rem;
    flex: 1;
}

.ladder-team .team-score {
    font-size: 0.875rem;
    min-width: 3rem;
    padding: 0.2rem 0.4rem;
}

.ladder-team.winner .team-score {
    background: rgba(34, 197, 94, 0.2);
    color: #fff;
}

.ladder-team.loser .team-score {
    background: rgba(239, 68, 68, 0.15);
    color: var(--text-primary);
}

.ladder-bye {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
    border: 2px dashed #fbbf24;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.ladder-bye:last-child {
    margin-bottom: 0;
}

.ladder-bye .seed-badge {
    margin: 0;
    background: linear-gradient(135deg, #fbbf24, rgba(251, 191, 36, 0.8));
}

.ladder-bye .team-name {
    padding: 0;
    font-size: 0.85rem;
    flex: unset;
}

.ladder-bye .bye-label {
    color: #fbbf24;
    font-size: 0.7rem;
    margin-left: auto;
}

.final-standings {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
}

.standings-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.standing-row {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.standing-row:last-child {
    border-bottom: none;
}

.standing-row:hover {
    background: var(--bg-secondary);
}

.standing-row .place {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    min-width: 3rem;
}

.standing-row .team-name {
    flex: 1;
    font-size: 0.875rem;
    padding: 0;
}

.standing-row.last-place {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(139, 69, 19, 0.05));
    border: 2px solid #8b4513;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.standing-row.last-place .place {
    color: #8b4513;
}

.last-badge {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: auto;
}

.no-consolation {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-style: italic;
}

.playoff-odds-container {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.odds-header {
    text-align: center;
    margin-bottom: 2rem;
}

.odds-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.odds-subheader {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.odds-subheader.calculating {
    color: var(--accent-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.odds-warning {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    color: #92400e;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.odds-warning small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

.calculating-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.reset-button {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.reset-button:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
}

.calculate-button {
    background: #3b82f6;
    border: 1px solid #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    margin-top: 1rem;
}

.calculate-button:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
}

.loading-animation {
    text-align: center;
    padding: 3rem 1rem;
}

.loading-spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

.loading-text-centered {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.loading-warning {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
    text-align: center;
}

.odds-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.projected-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.odds-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.odds-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.odds-row:last-child {
    border-bottom: none;
}

.odds-row:hover {
    background: var(--bg-secondary);
}

.odds-team-name {
    font-weight: 600;
    color: var(--text-primary);
}

.odds-record {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.odds-percentage {
    font-weight: 700;
    font-size: 0.875rem;
}

.odds-percentage.high {
    color: #22c55e;
}

.odds-percentage.low {
    color: #ef4444;
}

.odds-change {
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
}

.odds-change.positive {
    color: #22c55e;
}

.odds-change.negative {
    color: #ef4444;
}

.odds-change.neutral {
    color: var(--text-muted);
}

.odds-max-wins {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.schedule-grid {
    margin-top: 2rem;
}

.schedule-grid h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.week-games {
    margin-bottom: 1.5rem;
}

.week-games.collapsible {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.week-header {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    text-align: center;
    transition: background 0.2s;
}

.week-games.collapsible .week-header {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.week-games.collapsible .week-header:hover {
    background: var(--bg-card);
}

.week-games.collapsible .collapsible-content {
    padding: 1rem;
}

.week-games.collapsible:not(.open) .collapsible-content {
    display: none;
}

.week-games .collapsible-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
    color: var(--text-muted);
}

.week-games.open .collapsible-arrow {
    transform: rotate(0deg);
}

.week-games:not(.open) .collapsible-arrow {
    transform: rotate(-90deg);
}

.matchup-selector {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.week-games.collapsible .matchup-selector {
    background: var(--bg-card);
}

.week-games.collapsible .matchup-selector:last-child {
    margin-bottom: 0;
}

.matchup-team {
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-weight: 500;
    color: var(--text-primary);
}

.matchup-team:hover {
    border-color: var(--accent-primary);
    background: var(--bg-card);
}

.matchup-team.selected {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    font-weight: 600;
}

.matchup-vs {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes championPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6); }
}

@media (max-width: 768px) {
    .odds-header-row,
    .odds-row {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 0.25rem;
        padding: 0.75rem 0.25rem;
    }
    
    .odds-team-name {
        font-size: 0.75rem;
    }
    
    .odds-percentage {
        font-size: 0.75rem;
    }
    
    .odds-change {
        font-size: 0.7rem;
    }
    
    .odds-max-wins {
        font-size: 0.7rem;
    }
    
    .week-games.collapsible .collapsible-content {
        padding: 0.75rem;
    }
    
    .matchup-selector {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .matchup-vs {
        display: none;
    }
    
    .matchup-team {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .consolation-ladder {
        padding: 0.5rem;
    }
    
    .ladder-week {
        padding: 0.75rem;
    }
    
    .ladder-team .seed-badge {
        font-size: 0.65rem;
        min-width: 1.5rem;
        padding: 0.15rem 0.3rem;
    }
    
    .ladder-team .team-name {
        font-size: 0.75rem;
    }
    
    .ladder-team .team-score {
        font-size: 0.8rem;
        min-width: 2.5rem;
    }
    
    .standing-row .place {
        font-size: 0.8rem;
        min-width: 2.5rem;
    }
    
    .standing-row .team-name {
        font-size: 0.8rem;
    }
    
    .last-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (min-width: 768px) {
    .playoff-bracket-container {
        padding: 1rem;
    }
    
    .bracket-header h3 {
        font-size: 1.5rem;
    }
    
    .round-header {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .matchup-card {
        margin-bottom: 1.25rem;
    }
    
    .team-row {
        padding: 1rem 1.25rem;
        min-height: 3.5rem;
    }
    
    .seed-badge {
        font-size: 0.8rem;
        padding: 0.375rem 0.625rem;
    }
    
    .team-name {
        font-size: 0.95rem;
    }
    
    .team-score {
        font-size: 1.1rem;
        padding: 0.375rem 0.625rem;
        min-width: 4rem;
    }
    
    .champion-card h3 {
        font-size: 1.25rem;
    }
    
    .champion-name {
        font-size: 1.5rem;
    }
    
    .consolation-ladder {
        padding: 1.5rem;
    }
    
    .ladder-matchup {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ladder-bye {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .final-standings {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .bracket-mobile {
        display: none;
    }

    .bracket-desktop {
        display: flex;
        gap: 2rem;
        justify-content: center;
        padding: 2rem 0;
        position: relative;
        min-width: 900px;
        margin: 0 auto;
    }

    .bracket-column {
        display: flex;
        flex-direction: column;
        min-width: 280px;
        position: relative;
    }
    
    .bracket-column.round1 {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .bracket-column.semifinals {
        justify-content: space-around;
        padding: 3rem 0;
    }
    
    .bracket-column.championship {
        justify-content: center;
    }

    .round-header {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        padding: 1rem;
    }

    .desktop-matchup {
        background: var(--bg-card);
        border: 2px solid var(--border-color);
        border-radius: 0.75rem;
        padding: 0.5rem;
        position: relative;
        transition: all 0.3s;
        margin-bottom: 1.5rem;
    }

    .desktop-matchup:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        z-index: 10;
    }

    .desktop-matchup.completed {
        border-color: var(--success-color);
    }
    
    .desktop-matchup.pending {
        border-style: dashed;
        opacity: 0.7;
    }

    .desktop-team {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        background: linear-gradient(90deg, var(--bg-secondary), var(--bg-card));
        border-radius: 0.375rem;
        margin: 0.25rem 0;
        transition: all 0.2s;
        min-height: 2.75rem;
        position: relative;
    }

    .desktop-team.winner {
        background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
    }
    
    .desktop-team.winner::before {
        content: '✓';
        position: absolute;
        left: 0.75rem;
        color: var(--success-color);
        font-weight: bold;
        font-size: 0.875rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .desktop-team .seed-badge {
        margin-right: 0.75rem;
        background: linear-gradient(135deg, var(--primary-color), rgba(59, 130, 246, 0.8));
        color: white;
        flex-shrink: 0;
        min-width: 2.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .desktop-team:not(.winner) .seed-badge {
        margin-left: 0;
    }
    
    .desktop-team.winner .seed-badge {
        margin-left: 2rem;
        background: linear-gradient(135deg, var(--success-color), rgba(34, 197, 94, 0.8));
    }

    .desktop-team .team-name {
        font-size: 0.9rem;
        color: var(--text-primary);
        flex: 1;
        padding-right: 0.5rem;
        line-height: 1.4;
        word-break: break-word;
    }

    .desktop-team .team-score {
        font-size: 1.1rem;
        margin-left: auto;
        color: var(--text-primary);
        padding: 0.25rem 0.5rem;
        background: rgba(255,255,255,0.05);
        border-radius: 0.25rem;
        min-width: 3.5rem;
        text-align: center;
        flex-shrink: 0;
    }
    
    .desktop-team.winner .team-score {
        background: rgba(34, 197, 94, 0.2);
        color: #fff;
    }

    .desktop-bye {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
        border: 2px dashed var(--success-color);
        border-radius: 0.75rem;
        padding: 1.25rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .desktop-bye .team-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .desktop-bye .seed-badge {
        margin: 0;
    }
    
    .desktop-bye .team-name {
        padding: 0;
        font-size: 0.95rem;
        text-align: left;
    }
    
    .scroll-hint {
        display: none;
    }
    
    .consolation-ladder {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        align-items: flex-start;
    }
    
    .ladder-header {
        width: 100%;
    }
    
    .ladder-week {
        flex: 0 0 280px;
        margin-bottom: 0;
    }
    
    .final-standings {
        flex: 0 0 320px;
        margin-top: 0;
    }
}

@media (min-width: 1280px) {
    .bracket-desktop {
        gap: 3rem;
        min-width: 1100px;
    }

    .bracket-column {
        min-width: 320px;
    }

    .desktop-team {
        padding: 1rem 1.25rem;
        min-height: 3rem;
    }

    .desktop-team .team-name {
        font-size: 1rem;
    }
    
    .desktop-team .team-score {
        min-width: 4rem;
    }
    
    .ladder-week {
        flex: 0 0 320px;
    }
    
    .final-standings {
        flex: 0 0 380px;
    }
}