.h2h-hero { display: flex; align-items: center; justify-content: center; gap: 24px; padding: 30px 0; text-align: center; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
    .h2h-team { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
    .h2h-team-logo { width: 70px; height: 70px; border-radius: 50%; background: var(--bg-blue); display: flex; align-items: center; justify-content: center; font-size: 2em; }
    .h2h-team-name { font-weight: 700; font-size: 1.1em; }
    .h2h-team-name a { color: var(--text); text-decoration: none; }
    .h2h-team-name a:hover { color: var(--primary-blue); }
    .h2h-vs { font-size: 1.5em; font-weight: 700; color: var(--text-light); }

    .h2h-score-bar { display: flex; height: 36px; border-radius: 8px; overflow: hidden; margin: 16px 0; font-size: .85em; font-weight: 700; color: #fff; }
    .bar-w1 { background: #16a34a; display: flex; align-items: center; justify-content: center; }
    .bar-draw { background: #ca8a04; display: flex; align-items: center; justify-content: center; }
    .bar-w2 { background: #dc2626; display: flex; align-items: center; justify-content: center; }

    .h2h-big-numbers { display: flex; justify-content: center; align-items: center; gap: 40px; margin: 16px 0; font-size: 2em; font-weight: 700; }
    .big-w1 { color: #16a34a; }
    .big-draw { color: #ca8a04; font-size: .7em; }
    .big-w2 { color: #dc2626; }

    .h2h-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
    .h2h-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
    .h2h-card h3 { margin: 0 0 14px; font-size: 1em; color: var(--primary-blue); border-bottom: 2px solid var(--bg-blue); padding-bottom: 8px; }

    .h2h-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: .9em; }
    .h2h-stat-row:last-child { border-bottom: none; }
    .h2h-stat-label { color: var(--text-light); flex: 1; text-align: center; }
    .h2h-stat-v1 { font-weight: 700; width: 60px; text-align: center; }
    .h2h-stat-v2 { font-weight: 700; width: 60px; text-align: center; }

    .record-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: .9em; }
    .record-row:last-child { border-bottom: none; }
    .record-label { color: var(--text-light); }
    .record-value { font-weight: 700; }

    .match-row { display: flex; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .88em; gap: 8px; }
    .match-row:last-child { border-bottom: none; }
    .match-date { color: var(--text-light); font-size: .8em; width: 65px; flex-shrink: 0; }
    .match-season { color: var(--text-light); font-size: .75em; width: 60px; flex-shrink: 0; }
    .match-home { flex: 1; text-align: right; }
    .match-score { font-weight: 700; padding: 2px 8px; border-radius: 4px; min-width: 42px; text-align: center; }
    .match-score.res-w { background: rgba(22,163,74,.12); color: #16a34a; }
    .match-score.res-d { background: rgba(202,138,4,.12); color: #ca8a04; }
    .match-score.res-l { background: rgba(220,38,38,.12); color: #dc2626; }
    .match-away { flex: 1; text-align: left; }
    .match-team-bold { font-weight: 700; }

    .match-filter { margin-bottom: 16px; text-align: center; }
    .match-filter select { padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px; background: #fff; font-size: .95em; color: var(--text); cursor: pointer; }

    .decade-table, .league-table { width: 100%; }
    .decade-table th, .league-table th { padding: 8px 6px; font-size: .82em; background: var(--bg-blue); color: var(--primary-blue); text-align: center; }
    .decade-table td, .league-table td { padding: 7px 6px; text-align: center; border-bottom: 1px solid var(--border); font-size: .88em; }
    .decade-table td:first-child, .league-table td:first-child { text-align: left; font-weight: 600; }

    .score-chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 16px 0; }
    .score-chip { background: var(--bg-blue); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; font-size: .88em; }
    .score-chip .sc { font-weight: 700; }
    .score-chip .cnt { color: var(--text-light); font-size: .8em; }

    .toc { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); margin-bottom: 20px; }
    .toc-title { font-weight: 700; font-size: .95em; margin-bottom: 10px; color: var(--primary-blue); }
    .toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
    .toc-list li a { color: var(--text); text-decoration: none; font-size: .88em; padding: 4px 0; display: inline-block; border-bottom: 1px dashed var(--border); transition: all .2s; }
    .toc-list li a:hover { color: var(--primary-blue); border-bottom-color: var(--primary-blue); }

    @media (max-width: 768px) {
        .h2h-grid { grid-template-columns: 1fr; }
        .h2h-hero { flex-direction: column; gap: 12px; }
        .h2h-big-numbers { gap: 20px; font-size: 1.5em; }
        .toc-list { flex-direction: column; gap: 4px; }
    }