        .container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 100vh;
            background: linear-gradient(45deg, #87CEEB, #E0F6FF);
            padding: 8px;
            box-sizing: border-box;
            transform: translateZ(0);
            will-change: scroll-position;
            contain: layout paint;
            -webkit-tap-highlight-color: transparent;
        }
        
        .transparent-box {
            background-color: rgba(255, 255, 255, 0.3);
            padding: 12px;
            border-radius: 10px;
            backdrop-filter: blur(0);
            -webkit-backdrop-filter: blur(0);
            box-shadow: 0 0 15px rgba(0, 0, 255, 0.2);
            width: 100%;
            max-width: 1200px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            transform: translateZ(0);
            contain: layout paint;
        }
        
        .stats-container {
            background-color: rgba(255, 255, 255, 0.85);
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 16px;
            border: 2px solid #007bff;
            box-shadow: 0 4px 10px rgba(0, 0, 255, 0.15);
        }
        
        .stats-header {
            font-size: 18px;
            font-weight: bold;
            color: #002366;
            text-align: center;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid #007bff;
        }
        
        /* 胜率最高选手 - 三个数据一行 */
        .top-player-stats {
            display: flex;
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #4682B4;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-player-section {
            flex: 1;
            text-align: center;
            padding: 0 5px;
            min-width: 0;
        }
        
        .top-player-label {
            font-size: 13px;
            color: #4682B4;
            margin-bottom: 5px;
            font-weight: normal;
        }
        
        .top-player-value {
            font-size: 18px;
            font-weight: bold;
            word-break: break-word;
            line-height: 1.3;
        }
        
        .top-player-divider {
            width: 1px;
            height: 40px;
            background-color: rgba(70, 130, 180, 0.3);
            margin: 0 5px;
        }
        
        .player-rankings {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            padding: 12px;
            border: 1px solid #4682B4;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .rankings-header {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 10px;
        }
        
        .rankings-title {
            font-size: 16px;
            font-weight: bold;
            color: #002366;
        }
        
        .rankings-count {
            font-size: 13px;
            color: #4682B4;
        }
        
        .rankings-table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .rankings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 500px;
        }
        
        .rankings-table th {
            background-color: rgba(70, 130, 180, 0.9);
            color: white;
            padding: 10px 8px;
            text-align: left;
            border: 1px solid #4682B4;
            white-space: nowrap;
            font-size: 13px;
        }
        
        .rankings-table td {
            padding: 10px 8px;
            border: 1px solid #ddd;
            font-size: 13px;
        }
        
        .rankings-table tr:active {
            background-color: rgba(173, 216, 230, 0.5);
        }
        
        .rank-cell {
            text-align: center;
            width: 50px;
        }
        
        .rank-badge {
            display: inline-block;
            width: 26px;
            height: 26px;
            line-height: 26px;
            border-radius: 50%;
            text-align: center;
            font-weight: bold;
            font-size: 13px;
        }
        
        .filter-container {
            background-color: rgba(255, 255, 255, 0.85);
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 16px;
            border: 2px solid #007bff;
            box-shadow: 0 4px 10px rgba(0, 0, 255, 0.15);
        }
        
        .filter-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .filter-row {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .filter-label {
            font-weight: bold;
            color: #002366;
            font-size: 15px;
        }
        
        .filter-select-container {
            position: relative;
            width: 100%;
        }
        
        .filter-select {
            padding: 10px 12px;
            border: 2px solid #007bff;
            border-radius: 6px;
            background-color: rgba(255, 255, 255, 0.95);
            color: #002366;
            font-size: 15px;
            width: 100%;
            box-sizing: border-box;
            -webkit-appearance: none;
            appearance: none;
        }
        
        .filter-select:after {
            content: '▼';
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .filter-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .filter-button {
            flex: 1;
            min-width: 120px;
            padding: 10px 15px;
            background-color: #4682B4;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 15px;
            font-weight: bold;
            text-align: center;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        }
        
        .filter-button:active {
            background-color: #3a6f9c;
            transform: scale(0.98);
        }
        
        .filter-status {
            font-size: 14px;
            color: #002366;
            padding: 8px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 5px;
            margin-top: 8px;
            min-height: 20px;
        }
        
        .table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.7);
        }
        
        table {
            border-collapse: collapse;
            background-color: rgba(255, 255, 255, 0.6);
            margin: auto;
            width: 100%;
            min-width: 700px;
            table-layout: auto;
            transform: translateZ(0);
        }
        
        th, td {
            padding: 10px 6px;
            text-align: center;
            border: 2px solid #007bff;
            font-weight: bold;
            color: #002366;
            font-size: 13px;
            word-wrap: break-word;
            word-break: break-word;
            min-width: 70px;
        }
        
        th {
            background-color: #4682B4;
            color: white;
            text-transform: uppercase;
            font-size: 12px;
            padding: 10px 4px;
        }
        
        tr:nth-child(even) {
            background-color: rgba(173, 216, 230, 0.3);
        }
        
        tr:active {
            background-color: rgba(173, 216, 230, 0.6);
        }
        
        .qqq {
            background-color: black;
            font-size: 14px;
            padding: 12px 4px;
        }
        
        .b {
            color: #FF0000;
        }
        
        table a {
            color: #002366;
            text-decoration: none;
            transition: color 0.2s ease;
            padding: 4px 0;
            display: inline-block;
        }
        
        table a:active {
            color: red;
            transform: scale(0.95);
        }
        
        .stats-note {
            font-size: 12px;
            color: #666;
            margin-top: 8px;
            font-style: italic;
            line-height: 1.4;
        }
        
        .mobile-hint {
            display: none;
            text-align: center;
            font-size: 12px;
            color: #666;
            margin-top: 8px;
            padding: 6px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 5px;
        }
        
        .mobile-only {
            display: none;
        }
        
        .desktop-only {
            display: block;
        }
        
        /* 平板设备 */
        @media (min-width: 481px) and (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .transparent-box {
                padding: 15px;
            }
            
            .stats-container, .filter-container {
                padding: 15px;
            }
            
            .top-player-stats {
                padding: 12px;
            }
            
            .top-player-label {
                font-size: 14px;
            }
            
            .top-player-value {
                font-size: 20px;
            }
            
            .filter-row {
                flex-direction: row;
                align-items: center;
                gap: 12px;
            }
            
            .filter-label {
                min-width: 80px;
            }
            
            .filter-select-container {
                flex: 1;
            }
            
            .filter-select {
                font-size: 14px;
            }
            
            .filter-button {
                font-size: 14px;
                padding: 10px 20px;
            }
            
            th, td {
                font-size: 12px;
                padding: 8px 4px;
            }
            
            .qqq {
                font-size: 16px;
            }
            
            .mobile-hint {
                display: block;
            }
        }
        
        /* 手机设备 */
        @media (max-width: 480px) {
            .container {
                padding: 5px;
                align-items: stretch;
            }
            
            .transparent-box {
                padding: 8px;
                border-radius: 8px;
            }
            
            .stats-container, .filter-container {
                padding: 10px;
                margin-bottom: 12px;
            }
            
            .stats-header {
                font-size: 16px;
                margin-bottom: 10px;
            }
            
            /* 手机端保持一行显示，但调整间距 */
            .top-player-stats {
                padding: 10px;
            }
            
            .top-player-section {
                padding: 0 3px;
            }
            
            .top-player-label {
                font-size: 12px;
                margin-bottom: 3px;
            }
            
            .top-player-value {
                font-size: 14px;
            }
            
            .top-player-divider {
                height: 30px;
            }
            
            .player-rankings {
                padding: 10px;
            }
            
            .rankings-title {
                font-size: 15px;
            }
            
            .rankings-count {
                font-size: 12px;
            }
            
            .rankings-table {
                min-width: 450px;
                font-size: 12px;
            }
            
            .rankings-table th,
            .rankings-table td {
                padding: 8px 4px;
                font-size: 12px;
            }
            
            .rank-badge {
                width: 24px;
                height: 24px;
                line-height: 24px;
                font-size: 12px;
            }
            
            .filter-label {
                font-size: 14px;
            }
            
            .filter-select {
                padding: 12px 14px;
                font-size: 14px;
            }
            
            .filter-button {
                padding: 12px 10px;
                font-size: 14px;
                min-width: 100px;
            }
            
            .filter-status {
                font-size: 13px;
                padding: 6px;
            }
            
            .table-container {
                margin-top: 10px;
            }
            
            table {
                min-width: 650px;
            }
            
            th, td {
                padding: 8px 3px;
                font-size: 11px;
                min-width: 60px;
            }
            
            .qqq {
                font-size: 13px;
                padding: 10px 3px;
            }
            
            .mobile-only {
                display: block;
            }
            
            .desktop-only {
                display: none;
            }
            
            .mobile-hint {
                display: block;
            }
            
            /* 备注区域适配 */
            .note-row td {
                font-size: 10px;
                line-height: 1.3;
                padding: 6px 3px;
            }
            
            .note-row p {
                margin: 3px 0;
            }
        }
        
        /* 超小屏幕手机 */
        @media (max-width: 360px) {
            .container {
                padding: 3px;
            }
            
            .transparent-box {
                padding: 6px;
            }
            
            .stats-container, .filter-container {
                padding: 8px;
            }
            
            .stats-header {
                font-size: 15px;
            }
            
            .top-player-value {
                font-size: 13px;
            }
            
            .top-player-label {
                font-size: 11px;
            }
            
            .rankings-table {
                min-width: 400px;
            }
            
            .rankings-table th,
            .rankings-table td {
                padding: 6px 3px;
                font-size: 11px;
            }
            
            .filter-button {
                padding: 10px 8px;
                font-size: 13px;
                min-width: 90px;
            }
            
            .filter-select {
                padding: 10px 12px;
                font-size: 13px;
            }
            
            table {
                min-width: 600px;
            }
            
            th, td {
                padding: 6px 2px;
                font-size: 10px;
            }
            
            .qqq {
                font-size: 12px;
                padding: 8px 2px;
            }
        }
        
        /* 横屏模式 */
        @media (orientation: landscape) and (max-width: 768px) {
            .container {
                padding: 6px;
            }
            
            .transparent-box {
                padding: 10px;
            }
            
            .filter-row {
                flex-direction: row;
                align-items: center;
            }
            
            .filter-label {
                min-width: 70px;
            }
            
            .filter-select-container {
                flex: 1;
            }
            
            .mobile-hint {
                font-size: 11px;
                padding: 4px;
            }
        }
        
        /* 防止iOS Safari上的缩放 */
        @supports (-webkit-touch-callout: none) {
            .container {
                min-height: -webkit-fill-available;
            }
            
            .filter-select,
            .filter-button {
                font-size: 16px; /* iOS上防止字体缩放 */
            }
        }
        
        /* 优化触摸反馈 */
        .touch-feedback {
            transition: all 0.1s ease;
        }
        
        .touch-feedback:active {
            opacity: 0.8;
            transform: scale(0.98);
        }
        
        /* 滚动条优化 */
        .transparent-box::-webkit-scrollbar,
        .table-container::-webkit-scrollbar,
        .player-rankings::-webkit-scrollbar {
            height: 6px;
            width: 6px;
        }
        
        .transparent-box::-webkit-scrollbar-track,
        .table-container::-webkit-scrollbar-track,
        .player-rankings::-webkit-scrollbar-track {
            background: rgba(0, 123, 255, 0.1);
            border-radius: 3px;
        }
        
        .transparent-box::-webkit-scrollbar-thumb,
        .table-container::-webkit-scrollbar-thumb,
        .player-rankings::-webkit-scrollbar-thumb {
            background: rgba(70, 130, 180, 0.6);
            border-radius: 3px;
        }
        
        .transparent-box::-webkit-scrollbar-thumb:hover,
        .table-container::-webkit-scrollbar-thumb:hover,
        .player-rankings::-webkit-scrollbar-thumb:hover {
            background: rgba(70, 130, 180, 0.8);
        }