.standings-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    align-items: end;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.standings-filters .form-row {
    margin: 0;
}

.standings-filters .form-row label {
    min-height: 24px;
    margin-bottom: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.stat-card {
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transition: 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(91, 140, 255, 0.22);
    background: linear-gradient(180deg, rgba(91, 140, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.stat-card h2 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.stat-big {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1;
}

.standings-section {
    margin-top: 34px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.standings-section h2 {
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
}

.standings-table th,
.standings-table td {
    padding: 15px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.standings-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.standings-table tbody tr {
    transition: background 0.2s ease;
}

.standings-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.standings-table tbody tr:hover {
    background: rgba(91, 140, 255, 0.08);
}

.standings-table td {
    color: var(--muted);
    white-space: nowrap;
}

.standings-table td:first-child,
.standings-table th:first-child {
    width: 70px;
}

.standings-table td:nth-child(2) {
    font-weight: 600;
    color: var(--text);
}

.empty-state {
    margin-top: 18px;
}

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .standings-filters,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .standings-section {
        padding: 18px;
    }

    .stat-card {
        padding: 18px;
    }

    .stat-big {
        font-size: 1.65rem;
    }
}