        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
        }
        
        /* 渐变文字效果 - 与头部保持一致 */
        .gradient-text {
            background: linear-gradient(135deg, #059669 0%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* 链接悬停动画 */
        .footer-link {
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background: #d97706;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .footer-link:hover {
            color: #d97706;
            transform: translateX(5px);
        }
        
        /* 社交图标悬停效果 */
        .social-icon {
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
        }
        
        /* 订阅输入框聚焦效果 - 与头部搜索框一致 */
        .newsletter-input:focus {
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
        }
        
        /* 合作伙伴Logo灰度效果 */
        .partner-logo {
            filter: grayscale(100%) opacity(0.6);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }
        
        /* 返回顶部按钮 */
        .back-to-top {
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
        }
        
        /* 底部装饰线动画 */
        .decorative-line {
            background: linear-gradient(90deg, transparent, #059669, #d97706, transparent);
            height: 2px;
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        
        /* 波纹背景效果 */
        .wave-bg {
            background: linear-gradient(180deg, #064e3b 0%, #065f46 100%);
            position: relative;
            overflow: hidden;
        }
        
        .wave-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* 应用下载按钮悬停 */
        .app-btn {
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .app-btn:hover {
            background: rgba(255,255,255,0.1);
            border-color: #d97706;
            transform: translateY(-2px);
        }
        
        /* 赛事时间轴样式 */
        .match-timeline-item {
            border-left: 2px solid #059669;
            padding-left: 1rem;
            position: relative;
            transition: all 0.3s ease;
            padding-block: 5px;
        }
        
        .match-timeline-item::before {
            content: '';
            position: absolute;
            left: -5px;
            top: 0;
            width: 8px;
            height: 8px;
            background: #d97706;
            border-radius: 50%;
            border: 2px solid #064e3b;
        }
        
        .match-timeline-item:hover {
            border-left-color: #d97706;
            padding-left: 1.5rem;
        }
    body,td,th {
	font-family: "Noto Sans SC", sans-serif;
}
