.standings-page {
    padding: 2rem 0;
    min-height: 70vh;
    background: linear-gradient(to bottom, var(--bg-body) 0%, var(--bg-surface) 100%);
}
.standings-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.standings-page-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-bottom: 3px solid var(--accent);
    background: color-mix(in srgb, var(--bg-surface) 80%, transparent);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.standings-league-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.standings-league-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--text);
    padding: 4px;
}
.standings-page-description {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
}
.full-standing-section {
    background: color-mix(in srgb, var(--bg-surface) 80%, transparent);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.full-standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.full-standings-table thead {
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    border-bottom: 2px solid var(--accent);
}
.full-standings-table th,
.full-standings-table td {
    padding: 0.85rem 0.4rem;
    text-align: center;
    color: var(--text-muted);
    vertical-align: middle;
}
.full-standings-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.4px;
}
.team-col { text-align: left; min-width: 200px; }
.team-info {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.team-info .team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    background: #444;
    flex-shrink: 0;
}
.team-info a {
    color: var(--text);
    text-decoration: none;
}
.team-info a:hover { color: var(--accent); }
.points-col {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
}
.form-cell {
    display: flex;
    gap: 3px;
    justify-content: center;
}
.form-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
}
.form-indicator.win { background: #4CAF50; color: #fff; }
.form-indicator.draw { background: #FF9800; color: #fff; }
.form-indicator.loss { background: #F44336; color: #fff; }
tbody tr.zone-ucl { background: rgba(76, 175, 80, 0.07); border-left: 4px solid #4CAF50; }
tbody tr.zone-uel { background: rgba(33, 150, 243, 0.07); border-left: 4px solid #2196F3; }
tbody tr.zone-uecl { background: rgba(156, 39, 176, 0.07); border-left: 4px solid #9C27B0; }
tbody tr.zone-rel { background: rgba(244, 67, 54, 0.07); border-left: 4px solid #F44336; }
.standing-legend {
    margin-top: 1.25rem;
    padding: 1rem;
    background: color-mix(in srgb, var(--bg-surface) 80%, transparent);
    border-radius: 8px;
    border: 1px solid var(--border);
}
.standing-legend h4 {
    margin: 0 0 0.75rem;
    color: var(--text);
    font-size: 0.95rem;
}
.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.color-box {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}
.standings-empty {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .full-standings-table { font-size: 0.88rem; }
    .full-standings-table th,
    .full-standings-table td { padding: 0.55rem 0.25rem; }
    .won-col, .drawn-col, .lost-col, .gf-col, .ga-col, .form-col, .form-cell {
        display: none;
    }
    .team-col { min-width: 140px; }
    .full-standing-section { padding: 1rem; }
}
