.team-header { display: flex; align-items: center; gap: 20px; padding: 24px 0; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
    .team-logo-placeholder { width: 80px; height: 80px; border-radius: 50%; background: var(--bg-blue); display: flex; align-items: center; justify-content: center; font-size: 2.5em; flex-shrink: 0; }
    .team-info h1 { margin: 0 0 4px; font-size: 1.6em; }
    .team-info .team-sub { color: var(--text-light); font-size: .95em; }
    .team-form { display: flex; gap: 3px; margin-top: 8px; }

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

    .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: 55px; flex-shrink: 0; }
    .match-round { color: var(--text-light); font-size: .75em; width: 30px; 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; }

    .season-history-table { width: 100%; }
    .season-history-table th { text-align: center; padding: 8px 6px; font-size: .82em; background: var(--bg-blue); color: var(--primary-blue); }
    .season-history-table td { text-align: center; padding: 7px 6px; font-size: .88em; border-bottom: 1px solid var(--border); }
    .season-history-table td:first-child { text-align: left; font-weight: 600; }
    .pos-1 { color: #ffd700; font-weight: 700; }
    .pos-top3 { color: #16a34a; font-weight: 600; }
    .pos-bottom { color: #dc2626; }

    .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); }

    .btn-h2h { display: inline-block; margin-left: 8px; font-size: .75em; 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: .5; transition: all .2s; }
    .btn-h2h:hover { opacity: 1; background: var(--primary-blue); color: #fff; }

    @media (max-width: 768px) {
        .profile-grid { grid-template-columns: 1fr; }
        .team-header { flex-direction: column; text-align: center; }
    }
    @media (max-width: 640px) {
        .toc-list { flex-direction: column; gap: 4px; }
    }