        * {
            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.8;
        }
        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; }

        /* ========== 新闻内容页主体 ========== */
        .article-wrapper {
            background: #ffffff;
            min-height: 100vh;
            padding: 0 0 50px;
        }

        .article-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 面包屑导航 */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 20px 0;
            font-size: 14px;
        }

        .breadcrumb a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover { color: #1a4d8c; }
        .breadcrumb-separator { color: #c9a227; }
        .breadcrumb-current { color: #1a4d8c; font-weight: 600; }

        /* 文章头部 */
        .article-header {
            padding: 20px 0 30px;
            border-bottom: 3px solid #e9ecef;
            margin-bottom: 30px;
        }

        .article-category {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: white;
            font-size: 13px;
            font-weight: 700;
            border-radius: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .article-title {
            font-size: 42px;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .article-meta-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .article-meta-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #1a4d8c 0%, #4da6ff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 700;
            color: #1a1a1a;
            font-size: 15px;
        }

        .publish-time {
            color: #6c757d;
            font-size: 13px;
        }

        .article-stats {
            display: flex;
            gap: 20px;
            color: #6c757d;
            font-size: 14px;
        }

        .article-stats span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-actions {
            display: flex;
            gap: 10px;
        }

        .action-icon-btn {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 18px;
        }

        .action-icon-btn:hover {
            background: #1a4d8c;
            border-color: #1a4d8c;
            color: white;
            transform: translateY(-2px);
        }

        /* 文章主图 */
        .article-hero-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .image-caption {
            text-align: center;
            color: #6c757d;
            font-size: 14px;
            margin-top: -20px;
            margin-bottom: 30px;
        }

        /* 文章内容区 */
        .article-body {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }

        .article-content {
            font-size: 18px;
            color: #333;
        }

        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }

        .article-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 40px 0 20px;
            padding-left: 20px;
            border-left: 4px solid #c9a227;
        }

        .article-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1a4d8c;
            margin: 30px 0 15px;
        }

        .article-content strong {
            color: #1a4d8c;
        }

        /* 引用块 */
        .quote-block {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 4px solid #c9a227;
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #495057;
        }

        .quote-author {
            margin-top: 15px;
            font-style: normal;
            font-weight: 600;
            color: #1a4d8c;
        }

        /* 图片组 */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 30px 0;
        }

        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-image:hover {
            transform: scale(1.02);
        }

        /* 数据卡片 */
        .stats-box {
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            color: white;
            padding: 25px;
            border-radius: 16px;
            margin: 30px 0;
            display: flex;
            justify-content: space-around;
            text-align: center;
        }

        .stats-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stats-number {
            font-size: 32px;
            font-weight: 800;
            color: #c9a227;
        }

        .stats-label {
            font-size: 14px;
            opacity: 0.9;
        }

        /* 标签 */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
            padding-top: 30px;
            border-top: 2px solid #e9ecef;
        }

        .article-tag {
            padding: 8px 16px;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 20px;
            color: #495057;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .article-tag:hover {
            background: #1a4d8c;
            color: white;
            border-color: #1a4d8c;
        }

        /* 分享栏 */
        .share-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            margin: 30px 0;
            border-top: 2px solid #e9ecef;
            border-bottom: 2px solid #e9ecef;
        }

        .share-title {
            font-weight: 700;
            color: #1a1a1a;
            font-size: 16px;
        }

        .share-buttons {
            display: flex;
            gap: 12px;
        }

        .share-btn {
            padding: 10px 20px;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 25px;
            color: #495057;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .share-btn:hover {
            background: #1a4d8c;
            color: white;
            border-color: #1a4d8c;
        }

        /* 侧边栏 */
        .article-sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar-card {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        }

        .sidebar-title {
            font-size: 18px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #c9a227;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* 相关比赛 */
        .match-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .match-league {
            font-size: 12px;
            color: #6c757d;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .match-teams {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .team-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .team-logo {
            width: 50px !important;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .team-name {
            font-weight: 700;
            font-size: 14px;
        }

        .vs-divider {
            font-size: 18px;
            font-weight: 800;
            color: #c9a227;
        }

        .match-time {
            font-size: 16px;
            font-weight: 700;
            color: #1a4d8c;
            margin-bottom: 15px;
        }

        .match-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .match-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 77, 140, 0.3);
        }

        /* 相关新闻 */
        .related-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #e9ecef;
            cursor: pointer;
            transition: all 0.3s;
        }

        .related-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .related-item:first-child {
            padding-top: 0;
        }

        .related-thumb {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .related-content {
            flex: 1;
        }

        .related-title {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.5;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-item:hover .related-title {
            color: #1a4d8c;
        }

        .related-meta {
            font-size: 12px;
            color: #6c757d;
        }

        /* 评论区域 */
        .comments-section {
            max-width: 1000px;
            margin: 50px auto 0;
            padding: 0 20px;
        }

        .comments-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .comments-title {
            font-size: 24px;
            font-weight: 800;
            color: #1a1a1a;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comments-count {
            background: #c9a227;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 14px;
        }

        .comment-input-box {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 30px;
        }

        .comment-textarea {
            width: 100%;
            min-height: 100px;
            border: none;
            resize: none;
            font-size: 16px;
            font-family: inherit;
            outline: none;
            margin-bottom: 15px;
        }

        .comment-textarea::placeholder {
            color: #adb5bd;
        }

        .comment-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .comment-submit {
            padding: 12px 30px;
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .comment-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 77, 140, 0.3);
        }

        /* 评论列表 */
        .comment-item {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .comment-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #1a4d8c 0%, #4da6ff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .user-info {
            display: flex;
            flex-direction: column;
        }

        .user-name {
            font-weight: 700;
            color: #1a1a1a;
        }

        .user-badge {
            font-size: 12px;
            color: #c9a227;
            font-weight: 600;
        }

        .comment-time {
            font-size: 13px;
            color: #adb5bd;
        }

        .comment-content {
            font-size: 16px;
            color: #333;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .comment-footer {
            display: flex;
            gap: 20px;
        }

        .comment-action {
            font-size: 14px;
            color: #6c757d;
            cursor: pointer;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .comment-action:hover {
            color: #1a4d8c;
        }

        /* ========== 脚部 ========== */
        .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) {
            .article-body { grid-template-columns: 1fr; }
            .article-sidebar { display: none; }
            .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
            .footer-brand { grid-column: 1 / -1; }
        }

        @media (max-width: 768px) {
            .article-title { font-size: 28px; }
            .article-hero-image { height: 300px; }
            .article-meta-bar { flex-direction: column; align-items: flex-start; }
            .image-gallery { grid-template-columns: 1fr; }
            .stats-box { flex-direction: column; gap: 20px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom-content { flex-direction: column; text-align: center; }
        }

        @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;
}
        /* 实时比分条 */
        .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; }
        }
