
        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: #f3f4f6;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* 专家标签 */
        .expert-tab {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
        }
        
        .expert-tab.active {
            background: linear-gradient(135deg, #059669, #10b981);
            color: white;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
            transform: translateY(-2px);
        }
        
        .expert-tab:hover:not(.active) {
            background: #ecfdf5;
            color: #059669;
            transform: translateY(-1px);
        }
        
        /* 专家卡片 */
        .expert-profile-card {
            background: white;
            border: 1px solid #e5e7eb;
            transition: all 0.4s ease;
        }
        
        .expert-profile-card:hover {
            box-shadow: 0 25px 50px -12px rgba(5, 150, 105, 0.15);
            border-color: #10b981;
        }
        
        /* 战绩标签 */
        .result-tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: bold;
            font-family: 'Verdana', sans-serif;
            margin: 0 2px;
        }
        
        .tag-w { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; } /* 红-赢 */
        .tag-l { background: linear-gradient(135deg, #6b7280, #4b5563); color: white; } /* 灰-输 */
        .tag-d { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; } /* 蓝-待/走 */
        
        /* 胜率圆环 */
        .win-circle {
            position: relative;
            width: 70px;
            height: 70px;
        }
        
        .win-circle svg {
            transform: rotate(-90deg);
        }
        
        .win-circle circle {
            fill: none;
            stroke-width: 6;
        }
        
        .win-circle .bg { stroke: #e5e7eb; }
        .win-circle .progress {
            stroke: url(#emeraldGradient);
            stroke-linecap: round;
            transition: stroke-dashoffset 1.5s ease;
        }
        
        /* 推介列表项 */
        .tip-item {
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .tip-item:hover {
            background: linear-gradient(90deg, #ecfdf5, transparent);
            border-left-color: #10b981;
            transform: translateX(4px);
        }
        
        /* 联赛颜色映射（保持原站配色） */
        .league-ss { background: #5288f4; } /* 阿根廷杯蓝 */
        .league-gj { background: #993333; } /* 哥伦甲红棕 */
        .league-wy { background: #4666bb; } /* 国际友谊蓝 */
        .league-bo { background: #5F9200; } /* 波兰乙绿 */
        .league-xi { background: #438E0B; } /* 西乙绿 */
        .league-wu { background: #CC6666; } /* 乌拉甲粉 */
        .league-ying { background: #FFBA75; } /* 英乙橙 */
        
        /* 锁定/解锁状态 */
        .locked-overlay {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(2px);
        }
        
        .points-badge {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        }
        
        /* 订阅按钮 */
        .subscribe-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            transition: all 0.3s ease;
        }
        
        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        }
        
        /* 结果状态标签 */
        .status-pending { background: #3b82f6; }
        .status-win { background: #f97316; } /* 橙红-胜 */
        .status-loss { background: #9ca3af; } /* 灰-负 */
        
        /* 动画 */
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate-slide-up {
            animation: slideUp 0.5s ease-out forwards;
        }
        
        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        
        /* 横向滚动隐藏 */
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }
        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
    body,td,th {
	font-family: "Noto Sans SC", sans-serif;
}
