        @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;
            background-color: #f8fafc;
        }
        
        /* 渐变文字 */
        .gradient-text {
            background: linear-gradient(135deg, #059669 0%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* 导航下划线动画 - 与头部一致 */
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(90deg, #059669, #d97706);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* 新闻卡片悬停效果 */
        .news-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
        }
        
        .news-card:hover .news-image {
            transform: scale(1.08);
        }
        
        .news-card:hover .read-more-arrow {
            transform: translateX(5px);
            color: #d97706;
        }
        
        .news-image {
            transition: transform 0.6s ease;
        }
        
        .read-more-arrow {
            transition: all 0.3s ease;
        }
        
        /* 标签样式 - 与头部轮播一致 */
        .tag-premier { background: #38003c; color: #00ff85; }
        .tag-champions { background: #000088; color: #fe414d; }
        .tag-worldcup { background: #9b1b30; color: #ffffff; }
        .tag-laliga { background: #ff4b44; color: #ffffff; }
        .tag-seriea { background: #008fd4; color: #ffffff; }
        .tag-bundesliga { background: #d3010c; color: #ffffff; }
        
        /* 热门标签 */
        .hot-tag {
            transition: all 0.3s ease;
        }
        
        .hot-tag:hover {
            background: linear-gradient(135deg, #059669 0%, #d97706 100%);
            color: white;
            transform: scale(1.05);
        }
        
        /* 筛选按钮 */
        .filter-btn {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .filter-btn:hover::before {
            left: 100%;
        }
        
        .filter-btn.active {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
        }
        
        /* 加载动画 */
        .loading-skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }
        
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* 时间线样式 */
        .timeline-item {
            border-left: 3px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .timeline-item:hover {
            border-left-color: #059669;
            background: linear-gradient(90deg, rgba(5,150,105,0.05) 0%, transparent 100%);
        }
        
        .timeline-dot {
            transition: all 0.3s ease;
        }
        
        .timeline-item:hover .timeline-dot {
            background: #d97706;
            transform: scale(1.3);
        }
        
        /* 比分卡片 */
        .score-card {
            background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
            transition: all 0.3s ease;
        }
        
        .score-card:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
        }
        
        .live-pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* 分页样式 */
        .page-btn {
            transition: all 0.3s ease;
        }
        
        .page-btn:hover:not(:disabled) {
            background: #059669;
            color: white;
            transform: translateY(-2px);
        }
        
        .page-btn.active {
            background: linear-gradient(135deg, #059669 0%, #d97706 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
        }
        
        /* 返回顶部 */
        .back-to-top {
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        /* 粘性侧边栏 */
        .sticky-sidebar {
            position: sticky;
            top: 100px;
        }
        
        /* 搜索框 */
        .search-input:focus {
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
        }
        
        /* 图片遮罩 */
        .image-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
        }
        
        /* 滚动条美化 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #059669;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #047857;
        }
