        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            background: #f0f2f5;
            color: #1a1a1a;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: #1a1a1a;
        }
        /* ========== 头部样式（深蓝+金色，保持不变） ========== */
        .top-bar {
            background: linear-gradient(90deg, #0d1f3c 0%, #1a3a5c 100%);
            padding: 8px 0;
            border-bottom: 2px solid #c9a227;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #a8c4e0;
        }

        .top-bar-left { display: flex; gap: 20px; }
        .live-indicator { color: #ff4444; font-weight: bold; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
        .top-bar-right { display: flex; gap: 15px; }
        .top-bar-right a { color: #c9a227; text-decoration: none; transition: color 0.3s; }
        .top-bar-right a:hover { color: #ffd700; }

        .main-header {
            background: linear-gradient(135deg, #0d2137 0%, #1a4d8c 50%, #2a6db8 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .main-header::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.1) 50%, transparent 100%),
                repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
            pointer-events: none;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .logo-section { display: flex; align-items: center; gap: 15px; }
        .logo-icon {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, #1a4d8c 0%, #4da6ff 50%, #c9a227 100%);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 28px; font-weight: bold; color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3), 0 0 20px rgba(201, 162, 39, 0.3);
            border: 2px solid #c9a227;
        }

        .logo-text { display: flex; flex-direction: column; }
        .logo-main {
            font-size: 42px; font-weight: 900;
            background: linear-gradient(180deg, #4da6ff 0%, #1a4d8c 50%, #0d3a7a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            letter-spacing: 2px; line-height: 1;
        }
        .logo-sub { font-size: 14px; color: #c9a227; font-weight: 600; letter-spacing: 3px; margin-top: 5px; text-transform: uppercase; }

        .search-section { display: flex; align-items: center; gap: 20px; }
        .search-box { position: relative; }
        .search-box input {
            width: 300px; padding: 12px 45px 12px 20px;
            border: 2px solid #c9a227; border-radius: 30px;
            background: rgba(13, 31, 60, 0.8); color: white;
            font-size: 14px; outline: none; transition: all 0.3s;
        }
        .search-box input::placeholder { color: #7a9bc4; }
        .search-box input:focus { background: rgba(13, 31, 60, 1); box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
        .search-btn {
            position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
            width: 35px; height: 35px;
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            border: none; border-radius: 50%; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: transform 0.3s;
        }
        .search-btn:hover { transform: translateY(-50%) scale(1.1); }
        .search-btn svg { width: 18px; height: 18px; fill: white; }

        .user-actions { display: flex; gap: 15px; }
        .action-btn {
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.1) 100%);
            border: 1px solid #c9a227; border-radius: 25px;
            color: #c9a227; font-size: 14px; font-weight: 600;
            cursor: pointer; transition: all 0.3s;
        }
        .action-btn:hover {
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137; transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
        }

        /* 导航栏 */
        .nav-bar {
            background: linear-gradient(90deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
            border-top: 1px solid rgba(201, 162, 39, 0.3);
            border-bottom: 3px solid #c9a227;
            position: sticky; top: 0; z-index: 100;
        }
        .nav-content { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
        .nav-list { display: flex; list-style: none; gap: 0; }
        .nav-item a {
            display: block; padding: 18px 30px;
            color: #a8c4e0; text-decoration: none;
            font-size: 16px; font-weight: 600;
            transition: all 0.3s; position: relative;
            text-transform: uppercase; letter-spacing: 1px;
        }
        .nav-item a::after {
            content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 0; height: 3px;
            background: linear-gradient(90deg, transparent, #c9a227, transparent);
            transition: width 0.3s;
        }
        .nav-item a:hover, .nav-item.active a { color: #c9a227; background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.1) 100%); }
        .nav-item a:hover::after, .nav-item.active a::after { width: 80%; }

        .hot-tags { display: flex; align-items: center; gap: 10px; margin-left: auto; padding: 0 20px; }
        .hot-label { color: #ff4444; font-size: 12px; font-weight: bold; }
        .tag {
            padding: 5px 12px; background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3); border-radius: 15px;
            color: #c9a227; font-size: 12px; cursor: pointer; transition: all 0.3s;
        }
        .tag:hover { background: #c9a227; color: #0d2137; }

        /* ========== 页面主体 - 瀑布流卡片式布局 ========== */
        .page-wrapper {
            background: #f0f2f5;
            min-height: 100vh;
            padding: 25px 0 50px;
        }

        .page-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 顶部通栏 - 全宽大图 */
        .hero-section {
            width: 100%;
            height: 450px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 50px;
            background: linear-gradient(transparent 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.9) 100%);
        }

        .hero-tag {
            display: inline-block;
            padding: 8px 20px;
            background: #c9a227;
            color: #0d2137;
            font-size: 13px;
            font-weight: 800;
            border-radius: 20px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 36px;
            font-weight: 800;
            color: white;
            max-width: 700px;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .hero-meta {
            display: flex;
            gap: 25px;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        /* 分类筛选栏 - 横向滚动 */
        .category-nav {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 15px 5px;
            margin-bottom: 25px;
            scrollbar-width: none;
        }

        .category-nav::-webkit-scrollbar { display: none; }

        .category-pill {
            flex-shrink: 0;
            padding: 12px 24px;
            background: white;
            border: 2px solid transparent;
            border-radius: 30px;
            color: #495057;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .category-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .category-pill.active {
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            color: white;
            border-color: #1a4d8c;
        }

        /* 瀑布流布局 */
        .waterfall-container {
            column-count: 4;
            column-gap: 20px;
        }

        @media (max-width: 1200px) {
            .waterfall-container { column-count: 3; }
        }

        @media (max-width: 768px) {
            .waterfall-container { column-count: 2; }
            .hero-title { font-size: 24px; }
        }

        @media (max-width: 480px) {
            .waterfall-container { column-count: 1; }
        }

        /* 瀑布流卡片 */
        .waterfall-card {
            break-inside: avoid;
            margin-bottom: 20px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
        }

        .waterfall-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(26, 77, 140, 0.15);
        }

        /* 大卡片样式 */
        .card-large { grid-row: span 2; }
        
        .card-image-wrapper {
            position: relative;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            display: block;
            transition: transform 0.5s;
        }

        .waterfall-card:hover .card-image {
            transform: scale(1.05);
        }

        .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 6px 14px;
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            color: white;
            font-size: 11px;
            font-weight: 700;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .card-badge.hot {
            background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
        }

        .card-badge.exclusive {
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137;
        }

        .card-content {
            padding: 20px;
        }

        .card-title {
            font-size: 17px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.5;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .waterfall-card:hover .card-title {
            color: #1a4d8c;
        }

        .card-summary {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #e9ecef;
        }

        .card-time {
            font-size: 12px;
            color: #adb5bd;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .card-stats {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: #6c757d;
        }

        .card-stats span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* 视频卡片特殊样式 */
        .video-card .card-image-wrapper::after {
            content: '?';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(201, 162, 39, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            opacity: 0;
            transition: all 0.3s;
        }

        .video-card:hover .card-image-wrapper::after {
            opacity: 1;
        }

        /* 加载更多 */
        .load-more {
            text-align: center;
            padding: 40px 0;
        }

        .load-more-btn {
            padding: 15px 50px;
            background: white;
            border: 2px solid #1a4d8c;
            border-radius: 30px;
            color: #1a4d8c;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .load-more-btn:hover {
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 77, 140, 0.3);
        }

        /* 浮动侧边工具栏 */
        .floating-sidebar {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 99;
        }

        .float-btn {
            width: 50px;
            height: 50px;
            background: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .float-btn:hover {
            transform: scale(1.1);
            background: #1a4d8c;
            color: white;
        }

        /* ========== 脚部（深蓝+金色，保持不变） ========== */
        .partners-bar {
            background: linear-gradient(90deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
            border-top: 2px solid #c9a227;
            border-bottom: 1px solid rgba(201, 162, 39, 0.3);
            padding: 30px 0;
            overflow: hidden;
        }

        .partners-title {
            text-align: center;
            color: #c9a227;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .partners-track {
            display: flex;
            gap: 60px;
            animation: scrollPartners 30s linear infinite;
            width: max-content;
        }

        @keyframes scrollPartners {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .partner-logo {
            width: 120px; height: 50px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: #7a9bc4; font-size: 14px; font-weight: 600;
            transition: all 0.3s;
        }

        .partner-logo:hover {
            background: rgba(201, 162, 39, 0.2);
            border-color: #c9a227;
            color: #c9a227;
        }

        .main-footer {
            background: linear-gradient(180deg, #0a1628 0%, #0d2137 100%);
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .main-footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(26, 77, 140, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand { display: flex; flex-direction: column; gap: 20px; }
        .footer-logo { display: flex; align-items: center; gap: 12px; }
        .footer-logo-icon {
            width: 50px; height: 50px;
            background: linear-gradient(135deg, #1a4d8c 0%, #4da6ff 50%, #c9a227 100%);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; font-weight: bold; color: white;
            border: 2px solid #c9a227;
        }
        .footer-logo-text {
            font-size: 28px; font-weight: 900;
            background: linear-gradient(180deg, #4da6ff 0%, #1a4d8c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .footer-desc { color: #7a9bc4; font-size: 14px; line-height: 1.8; max-width: 300px; }

        .social-links { display: flex; gap: 12px; margin-top: 10px; }
        .social-icon {
            width: 42px; height: 42px;
            background: linear-gradient(135deg, rgba(26, 77, 140, 0.3) 0%, rgba(26, 77, 140, 0.1) 100%);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #c9a227; font-size: 18px;
            cursor: pointer; transition: all 0.3s;
        }
        .social-icon:hover {
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137; border-color: #c9a227;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
        }

        .footer-column h4 {
            color: #c9a227; font-size: 16px; font-weight: 700;
            margin-bottom: 20px; text-transform: uppercase;
            letter-spacing: 1px; position: relative; padding-bottom: 10px;
        }
        .footer-column h4::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 40px; height: 3px;
            background: linear-gradient(90deg, #c9a227 0%, transparent 100%);
            border-radius: 2px;
        }

        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-links li a {
            color: #7a9bc4; text-decoration: none; font-size: 14px;
            transition: all 0.3s; display: flex; align-items: center; gap: 8px;
        }
        .footer-links li a::before { content: '?'; color: #c9a227; font-size: 18px; transition: transform 0.3s; }
        .footer-links li a:hover { color: #c9a227; padding-left: 5px; }
        .footer-links li a:hover::before { transform: translateX(3px); }

        .footer-subscribe {
            background: linear-gradient(135deg, rgba(26, 77, 140, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 15px; padding: 25px;
        }
        .subscribe-title { color: white; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
        .subscribe-text { color: #7a9bc4; font-size: 13px; margin-bottom: 15px; line-height: 1.5; }
        .subscribe-form { display: flex; gap: 10px; }
        .subscribe-input {
            flex: 1; padding: 12px 15px;
            background: rgba(13, 31, 60, 0.8);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 8px; color: white; font-size: 14px; outline: none;
        }
        .subscribe-input::placeholder { color: #5a7a9c; }
        .subscribe-btn {
            padding: 12px 20px;
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            border: none; border-radius: 8px;
            color: #0d2137; font-size: 14px; font-weight: 700;
            cursor: pointer; transition: all 0.3s;
        }
        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(201, 162, 39, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(201, 162, 39, 0.2);
            padding-top: 30px; margin-top: 20px;
        }
        .footer-bottom-content {
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 20px;
        }
        .copyright { color: #5a7a9c; font-size: 13px; }
        .copyright strong { color: #c9a227; }
        .footer-bottom-links { display: flex; gap: 25px; list-style: none; }
        .footer-bottom-links a { color: #7a9bc4; text-decoration: none; font-size: 13px; transition: color 0.3s; }
        .footer-bottom-links a:hover { color: #c9a227; }
        .security-badges { display: flex; gap: 15px; }
        .badge {
            width: 40px; height: 40px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: #c9a227; font-size: 12px; font-weight: 700;
        }

        .back-to-top {
            position: fixed; bottom: 30px; right: 30px;
            width: 50px; height: 50px;
            background: linear-gradient(135deg, #1a4d8c 0%, #4da6ff 100%);
            border: 2px solid #c9a227; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 20px;
            cursor: pointer; transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 999;
        }
        .back-to-top:hover {
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137; transform: translateY(-5px);
        }

        /* 响应式 */
        @media (max-width: 1200px) {
            .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
            .footer-brand { grid-column: 1 / -1; }
            .floating-sidebar { display: none; }
        }

        @media (max-width: 768px) {
            .hero-section { height: 350px; }
            .hero-overlay { padding: 30px; }
            .hero-title { font-size: 24px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom-content { flex-direction: column; text-align: center; }
            .search-box input { width: 200px; }
        }

        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
            .subscribe-form { flex-direction: column; }
            .logo-main { font-size: 28px; }
        }
    body,td,th {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
<style>
.pagination-nav {
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

.pagination-nav .page-arrow,
.pagination-nav .page-num {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    min-width: 20px;
    text-align: center;
}

.pagination-nav .page-arrow:hover,
.pagination-nav .page-num:hover {
    background: #f5f5f5;
    border-color: #999;
}

.pagination-nav .page-num.current {
    background: #e60012;  /* 红色主题 */
    color: #fff;
    border-color: #e60012;
    font-weight: bold;
}

.pagination-nav .page-arrow.disabled {
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
    background: #f9f9f9;
}
        /* 实时比分条 */
        .live-scores-bar {
            background: linear-gradient(90deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
            border-top: 1px solid rgba(201, 162, 39, 0.3);
            border-bottom: 1px solid rgba(201, 162, 39, 0.3);
            padding: 15px 0;
            overflow: hidden;
        }

        .scores-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
            animation: scrollScores 20s linear infinite;
        }

        @keyframes scrollScores {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .score-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px 20px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 10px;
            white-space: nowrap;
        }

        .score-league {
            color: #c9a227;
            font-size: 12px;
            font-weight: 700;
        }

        .score-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 600;
        }

        .score-vs {
            color: #7a9bc4;
            font-size: 12px;
        }

        .score-result {
            color: #4da6ff;
            font-weight: 700;
            font-size: 18px;
        }

        .score-live {
            color: #ff4444;
            font-size: 11px;
            animation: pulse 1s infinite;
        }

        /* 响应式 */
        @media (max-width: 1200px) {
            .search-box input { width: 200px; }
            .logo-main { font-size: 32px; }
            .slide-title { font-size: 36px; }
            .hero-slider { height: 400px; }
        }

        @media (max-width: 768px) {
            .header-content { flex-direction: column; gap: 20px; }
            .nav-list { flex-wrap: wrap; justify-content: center; }
            .nav-item a { padding: 12px 20px; font-size: 14px; }
            .hot-tags { display: none; }
            .slide-title { font-size: 28px; }
            .slide-content { padding: 0 20px; }
            .slider-arrow { width: 45px; height: 45px; font-size: 18px; }
            .hero-slider { height: 350px; }
        }
