.standings-groups {
            display: grid;
            gap: 12px;
        }
        .standings-head-actions {
            flex: 0 0 auto;
            width: auto;
        }
        .standing-group {
            border: 1px solid var(--line);
            border-radius: 16px;
            background: rgba(255,255,255,.96);
            overflow: hidden;
        }
        .standing-group-head {
            padding: 13px 16px;
            font-size: .95rem;
            font-weight: 800;
            border-bottom: 1px solid var(--line);
            background: linear-gradient(135deg, rgba(32, 107, 196, 0.06), rgba(32, 107, 196, 0.02));
        }
        .compact-table {
            font-size: .9rem;
        }
        .compact-table th,
        .compact-table td {
            padding: 10px 12px;
            white-space: nowrap;
        }
        .compact-table th:nth-child(2),
        .compact-table td:nth-child(2) {
            min-width: 150px;
            white-space: normal;
        }
        .standings-mobile-list {
            display: none;
        }
        .standing-mobile-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: rgba(255,255,255,.96);
            padding: 12px 14px;
            display: grid;
            gap: 10px;
        }
        .standing-mobile-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .standing-mobile-top strong {
            font-size: .98rem;
        }
        .standing-mobile-top span {
            font-weight: 800;
            color: var(--brand-blue-dark);
            white-space: nowrap;
        }
        .standing-mobile-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            color: var(--muted);
            font-size: .82rem;
        }
        .report-richtext {
            color: var(--muted);
            line-height: 1.72;
        }
        .report-richtext > :first-child {
            margin-top: 0;
        }
        .report-richtext > :last-child {
            margin-bottom: 0;
        }
        .report-richtext p,
        .report-richtext ul,
        .report-richtext ol {
            margin: 0 0 12px;
        }
        .report-richtext ul,
        .report-richtext ol {
            padding-left: 22px;
        }
        .report-richtext a {
            color: var(--brand-blue-dark);
            font-weight: 800;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .recent-page-strip {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
            gap: 10px;
        }
        .recent-page-chip {
            display: flex;
            flex-direction: column;
            gap: 6px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            padding: 12px;
            color: var(--ink);
            min-width: 0;
            overflow: hidden;
        }
        .recent-page-chip-title {
            font-weight: 800;
            line-height: 1.4;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .recent-page-chip-meta {
            display: block;
            color: var(--muted);
            font-size: .82rem;
            overflow-wrap: anywhere;
            word-break: break-word;
            white-space: normal;
            hyphens: auto;
        }
        .standings-saved-pages .recent-page-chip {
            width: 100%;
            max-width: 100%;
        }
        .standings-saved-pages .recent-page-chip-title,
        .standings-saved-pages .recent-page-chip-meta {
            min-width: 0;
            max-width: 100%;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: anywhere;
        }
        .standings-saved-pages .recent-page-chip-meta {
            line-height: 1.45;
        }
        .faq-section {
            margin-top: 24px;
            padding: 18px;
            border: 1px solid rgba(32, 107, 196, 0.14);
            border-radius: 16px;
            background: rgba(255,255,255,0.96);
        }
        .faq-section-head {
            margin-bottom: 12px;
        }
        .faq-section-head h2 {
            margin: 4px 0 0;
            font-size: 1rem;
        }
        .faq-list {
            display: grid;
            gap: 10px;
        }
        .faq-item {
            border: 1px solid rgba(98, 110, 145, 0.14);
            border-radius: 14px;
            background: #f8faff;
            padding: 12px 14px;
        }
        .faq-item summary {
            cursor: pointer;
            color: var(--ink);
            font-weight: 800;
        }
        .faq-item p {
            margin: 10px 0 0;
            color: var(--muted);
            line-height: 1.65;
        }
        @media (max-width: 960px) {
            .filters {
                grid-template-columns: 1fr !important;
            }
            .filter-submit-row {
                justify-content: stretch !important;
            }
            .filter-submit-row .btn {
                width: 100%;
            }
            .compact-table {
                font-size: .82rem;
            }
            .compact-table th,
            .compact-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 640px) {
            .report-copy h1 {
                font-size: 1.45rem;
            }
            .table-wrap {
                display: none;
            }
            .standings-mobile-list {
                display: grid;
                gap: 10px;
            }
            .standing-group-head {
                padding: 12px 14px;
            }
            .standings-head-actions,
            .standings-head-actions form {
                width: 100%;
            }
            .standings-head-actions .report-save-button {
                width: 100%;
            }
        }
        .scroll-top {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 20;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 999px;
            background: var(--brand-blue);
            color: #fff;
            box-shadow: var(--shadow);
        }
