.season-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 10px; }
    .season-nav a { color: var(--primary-blue); text-decoration: none; font-size: .9em; font-weight: 600; padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--radius); transition: all .2s; }
    .season-nav a:hover { background: var(--primary-blue); color: #fff; }
    .season-nav .current-season { font-weight: 700; font-size: 1.1em; color: var(--text); }

    .summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 24px; }
    .summary-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; box-shadow: var(--shadow); }
    .summary-value { font-size: 1.6em; font-weight: 800; color: var(--primary-blue); }
    .summary-label { font-size: .78em; color: var(--text-light); margin-top: 4px; }

    .form-dots { display: flex; gap: 4px; justify-content: center; margin-top: 6px; }
    .form-dot { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .7em; font-weight: 700; color: #fff; }
    .form-dot.W { background: #16a34a; }
    .form-dot.D { background: #eab308; }
    .form-dot.L { background: #dc2626; }

    .split-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
    .split-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
    .split-card h3 { margin: 0 0 12px; font-size: 1em; color: var(--primary-blue); border-bottom: 2px solid var(--bg-blue); padding-bottom: 8px; }
    .split-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .9em; border-bottom: 1px solid var(--border); }
    .split-row:last-child { border-bottom: none; }
    .split-label { color: var(--text-light); }
    .split-value { font-weight: 700; }

    .streaks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
    .streak-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; text-align: center; box-shadow: var(--shadow); }
    .streak-value { font-size: 1.4em; font-weight: 800; }
    .streak-label { font-size: .78em; color: var(--text-light); margin-top: 4px; }
    .streak-card.green .streak-value { color: #16a34a; }
    .streak-card.blue .streak-value { color: var(--primary-blue); }
    .streak-card.red .streak-value { color: #dc2626; }

    .matches-table { width: 100%; }
    .matches-table th { text-align: center; padding: 8px 5px; font-size: .78em; background: var(--bg-blue); color: var(--primary-blue); position: sticky; top: 0; z-index: 2; }
    .matches-table td { text-align: center; padding: 7px 5px; font-size: .85em; border-bottom: 1px solid var(--border); }
    .matches-table tr:hover { background: var(--bg-blue); }
    .matches-table .opp-cell { text-align: left; font-weight: 600; }

    .result-badge { display: inline-block; width: 22px; height: 22px; border-radius: 50%; line-height: 22px; text-align: center; font-size: .7em; font-weight: 700; color: #fff; }
    .result-badge.W { background: #16a34a; }
    .result-badge.D { background: #eab308; }
    .result-badge.L { background: #dc2626; }

    .venue-badge { display: inline-block; font-size: .7em; padding: 2px 5px; border-radius: 3px; font-weight: 600; }
    .venue-badge.home { background: #dbeafe; color: #1e40af; }
    .venue-badge.away { background: #fef3c7; color: #92400e; }

    .chart-container { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; box-shadow: var(--shadow); }
    .chart-container h3 { margin: 0 0 16px; font-size: 1em; color: var(--primary-blue); }
    .chart-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: .82em; }
    .chart-bar-label { width: 30px; text-align: right; color: var(--text-light); font-weight: 600; }
    .chart-bar-track { flex: 1; height: 20px; background: var(--bg-blue); border-radius: 4px; overflow: hidden; position: relative; }
    .chart-bar-fill { height: 100%; border-radius: 4px; transition: width .5s; }
    .chart-bar-fill.W { background: #16a34a; }
    .chart-bar-fill.D { background: #eab308; }
    .chart-bar-fill.L { background: #dc2626; }
    .chart-bar-pts { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: .75em; font-weight: 700; color: var(--text); }

    .all-seasons-link { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
    .all-seasons-link a { padding: 4px 10px; font-size: .8em; background: var(--bg-blue); border: 1px solid var(--border); border-radius: 4px; color: var(--primary-blue); text-decoration: none; font-weight: 600; transition: all .2s; }
    .all-seasons-link a:hover { background: var(--primary-blue); color: #fff; }
    .all-seasons-link a.active { background: var(--primary-blue); color: #fff; }

    .section-title { font-size: 1.1em; margin: 24px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--bg-blue); }

    .btn-h2h { display: inline-block; margin-left: 6px; font-size: .72em; color: var(--primary-blue); border: 1px solid var(--primary-blue); padding: 1px 5px; border-radius: 4px; text-decoration: none; font-weight: 600; vertical-align: middle; opacity: .4; transition: all .2s; }
    .btn-h2h:hover { opacity: 1; background: var(--primary-blue); color: #fff; }

    .squad-summary { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
    .squad-summary-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 16px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
    .squad-summary-label { font-size: .8em; color: var(--text-light); }
    .squad-summary-value { font-size: 1.05em; font-weight: 700; color: var(--primary-blue); }

    .pos-filter { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .pos-btn { padding: 6px 16px; font-size: .9em; font-weight: 600; border: 1px solid var(--border); border-radius: 20px; background: #fff; color: var(--text); cursor: pointer; transition: all .2s; }
    .pos-btn:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
    .pos-btn.active { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }

    .squad-group { margin-bottom: 20px; }
    .squad-group.hidden { display: none; }
    .squad-group-title { font-size: 1em; color: var(--primary-blue); margin: 0 0 8px; padding: 8px 14px; background: var(--bg-blue); border-radius: var(--radius); }

    .squad-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
    .squad-table th { padding: 8px 6px; font-size: .8em; background: var(--bg-blue); color: var(--primary-blue); text-transform: uppercase; letter-spacing: .3px; }
    .squad-table td { padding: 9px 6px; font-size: .95em; border-bottom: 1px solid var(--border); }
    .squad-table th, .squad-table td { text-align: center; }
    .squad-table tr:hover { background: #f0f7ff; }
    .squad-table tr.has-goals { background: #f0fdf4; }
    .squad-table tr.has-goals:hover { background: #dcfce7; }
    .squad-table .col-num { width: 46px; }
    .squad-table .col-name { text-align: left; width: auto; }
    .squad-table .col-nat { text-align: left; width: auto; }
    .squad-table .col-stat { width: 50px; }
    .squad-table .col-min { width: 65px; }

    .player-name { font-weight: 600; }
    .stat-goals { font-weight: 700; color: #16a34a; }
    .stat-assists { font-weight: 600; color: #2563eb; }

    @media (max-width: 768px) {
        .split-stats { grid-template-columns: 1fr; }
        .streaks-grid { grid-template-columns: 1fr; }
        .summary-grid { grid-template-columns: repeat(3, 1fr); }
        .squad-table { table-layout: auto; }
        .squad-table .col-nat { display: none; }
        .squad-table td, .squad-table th { padding: 6px 3px; font-size: .82em; }
        .squad-table .col-stat { width: 32px; }
        .squad-table .col-min { width: 48px; }
        .squad-table .col-num { width: 32px; }
    }