        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
            min-height: 100vh;
            color: #1f2937;
        }
        
        .white-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .white-card:hover {
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
            border-color: #d1d5db;
        }
        
        .card-active {
            border: 2px solid #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .win-rate-ring {
            background: conic-gradient(from 0deg, #3b82f6 0deg, #60a5fa var(--percentage), #e5e7eb var(--percentage));
            border-radius: 50%;
            position: relative;
        }
        .win-rate-ring::before {
            content: '';
            position: absolute;
            inset: 8px;
            background: white;
            border-radius: 50%;
        }
        
        .tag {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid;
        }
        .tag-win { background: #dcfce7; color: #166534; border-color: #86efac; }
        .tag-lose { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
        .tag-pending { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
        .tag-hot { background: #dbeafe; color: #1e40af; border-color: #93c5fd; }
        
        .table-row {
            transition: all 0.2s;
        }
        .table-row:hover {
            background: #f8fafc;
            transform: scale(1.005);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            color: white;
            border: none;
            box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
        }
        .btn-primary:hover {
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
            transform: translateY(-1px);
        }
        
        .btn-secondary {
            background: white;
            color: #374151;
            border: 1px solid #d1d5db;
        }
        .btn-secondary:hover {
            background: #f9fafb;
            border-color: #9ca3af;
        }
        
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
        }
        
        .shimmer {
            position: relative;
            overflow: hidden;
        }
        .shimmer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }
        @keyframes shimmer {
            100% { left: 100%; }
        }
        
        .nav-shadow {
            box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
        }
        
        .rank-badge {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
        }
        .rank-1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: white; box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3); }
        .rank-2 { background: linear-gradient(135deg, #e5e7eb, #9ca3af); color: white; box-shadow: 0 2px 4px rgba(156, 163, 175, 0.3); }
        .rank-3 { background: linear-gradient(135deg, #b45309, #92400e); color: white; box-shadow: 0 2px 4px rgba(180, 83, 9, 0.3); }
        .rank-other { background: #f3f4f6; color: #6b7280; }
        
        .input-field {
            background: white;
            border: 1px solid #e5e7eb;
            transition: all 0.2s;
        }
        .input-field:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            outline: none;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-fade-in {
            animation: fadeIn 0.5s ease-out;
        }
        
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #9ca3af;
        }
    body,td,th {
	font-family: Inter, "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
}
        /* 倒计时样式 */
        .countdown-timer {
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.05em;
        }
        
        /* 脉冲动画增强 */
        @keyframes pulse-ring {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 153, 255, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 153, 255, 0); }
        }
        .animate-pulse-ring {
            animation: pulse-ring 2s infinite;
        }
