 /* ===== 全局重置 & 基础设置 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f6f8;
            color: #333;
            line-height: 1.6;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* ===== 顶部导航栏 ===== */
        header {
            background-color: #fff;
            border-bottom: 1px solid #e5e5e5;
            padding: 15px 0;
            margin-bottom: 20px;
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo h1 {
            color: #d32f2f;
            font-size: 24px;
            font-weight: bold;
        }
        .nav-links a {
            margin-left: 20px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
        }
        .nav-links a:hover { color: #d32f2f; }

        /* ===== 面包屑导航 ===== */
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto 20px;
            padding: 0 20px;
            font-size: 12px;
            color: #999;
        }
        .breadcrumb span { margin: 0 5px; }

        /* ===== 主容器布局 (Flex) ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 20px;
            padding: 0 20px 40px;
        }

        /* ===== 左侧主内容区 ===== */
        .main-content {
            flex: 1;
            background: #fff;
            padding: 20px;
            border-radius: 4px;
        }

        .article-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #222;
        }
        .article-meta {
            font-size: 12px;
            color: #999;
            margin-bottom: 15px;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .tag {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: #fff;
            background-color: #007bff;
        }
        .tag.green { background-color: #28a745; }
        .tag.red { background-color: #dc3545; }
        .tag.cyan { background-color: #17a2b8; }
        .tag.orange { background-color: #fd7e14; }

        .article-desc {
            background-color: #f9f9f9;
            padding: 15px;
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            border-radius: 4px;
            line-height: 1.8;
        }
        .article-desc .highlight { color: #d32f2f; }

        /* ===== 推荐时间轴 ===== */
        .timeline-title {
            font-size: 16px;
            font-weight: bold;
            border-left: 4px solid #d32f2f;
            padding-left: 10px;
            margin-bottom: 20px;
        }
        .timeline-item {
            display: flex;
            align-items: flex-start;
            padding: 15px 0;
            border-bottom: 1px dashed #eee;
        }
        .timeline-item:last-child { border-bottom: none; }
        
        .timeline-thumb {
            width: 120px;
            height: 75px;
            flex-shrink: 0;
            margin-right: 15px;
            border-radius: 4px;
            overflow: hidden;
            background-color: #eee;
        }
        .timeline-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .timeline-content { flex: 1; }
        .timeline-content h4 {
            font-size: 15px;
            color: #333;
            margin-bottom: 5px;
            cursor: pointer;
        }
        .timeline-content h4:hover { color: #d32f2f; }
        .timeline-content p {
            font-size: 13px;
            color: #888;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .timeline-date {
            font-size: 12px;
            color: #bbb;
            margin-top: 5px;
            text-align: right;
        }

        /* ===== 右侧侧边栏 ===== */
        .sidebar {
            width: 320px;
            flex-shrink: 0;
        }
        .widget {
            background: #fff;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .widget-header {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .widget-header h3 { font-size: 16px; font-weight: bold; }
        .widget-header a { font-size: 12px; color: #999; }
        .widget-header a:hover { color: #d32f2f; }

        /* ===== 🌟 最终版：主客队图片分居两侧 ===== */
        .match-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0; 
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
        }
        .match-list li:hover { background: #fafafa; }
        .match-list li:last-child { border-bottom: none; }
        
        /* 左侧：图片 + 名称 + 图片 */
        .match-info-left {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        /* 队伍Logo */
        .team-logo-big {
            width: 36px; 
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            background-color: #f0f0f0;
            border: 1px solid #e5e5e5;
            flex-shrink: 0;
        }
        
        /* 队伍名称 + VS 包裹器 */
        .match-names-wrapper {
            display: flex;
            align-items: center;
            margin: 0 12px; /* 与左右图片拉开距离 */
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }
        
        .vs-text-badge {
            color: #bbb;
            font-size: 12px;
            font-weight: bold;
            margin: 0 6px;
        }
        
        /* 右边：状态与时间 */
        .match-info-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end; 
            text-align: right;
            margin-left: 10px;
        }
        
        .match-status { margin-bottom: 4px; }
        .status-live {
            display: inline-block;
            padding: 2px 8px;
            background-color: #d32f2f;
            color: #fff;
            border-radius: 12px;
            font-size: 11px;
            font-weight: bold;
            animation: blink 1.2s infinite;
        }
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }
        
        .status-notstart {
            display: inline-block;
            padding: 2px 8px;
            background-color: #e0e0e0;
            color: #888;
            border-radius: 12px;
            font-size: 11px;
        }
        
        .match-time {
            color: #999;
            font-size: 12px;
        }

        .rank-list li {
            display: flex;
            align-items: center;
            padding: 6px 0;
            font-size: 13px;
            border-bottom: 1px solid #f9f9f9;
        }
        .rank-num {
            width: 18px;
            height: 18px;
            background: #eee;
            color: #999;
            text-align: center;
            line-height: 18px;
            border-radius: 4px;
            margin-right: 10px;
            font-size: 12px;
        }
        .rank-list li:nth-child(1) .rank-num { background: #d32f2f; color: #fff; }
        .rank-list li:nth-child(2) .rank-num { background: #ff9800; color: #fff; }
        .rank-list li:nth-child(3) .rank-num { background: #ffc107; color: #fff; }

        .team-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .team-cloud span {
            background: #f5f6f8;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
            color: #555;
            cursor: pointer;
        }
        .team-cloud span:hover { background: #d32f2f; color: #fff; }

        /* ===== 页脚 ===== */
        footer {
            background-color: #2b2e33;
            color: #999;
            text-align: center;
            padding: 30px 20px;
            font-size: 12px;
            line-height: 1.8;
        }
        footer a { color: #ccc; margin: 0 5px; }
        footer a:hover { color: #fff; }

        /* ===== 响应式适配 (手机端) ===== */
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; gap: 10px; }
            .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
            .nav-links a { margin: 0; }
            
            .container { flex-direction: column; }
            .sidebar { width: 100%; }
            
            .article-title { font-size: 18px; }
            .tags { gap: 5px; }
            .tag { font-size: 10px; padding: 2px 8px; }

            .timeline-thumb { width: 80px; height: 55px; }
            .timeline-content h4 { font-size: 14px; }
            
            /* 移动端自动回退成竖排布局以免太拥挤 */
            .match-list li { flex-wrap: wrap; }
            .match-info-left { width: 100%; justify-content: center; margin-bottom: 8px; }
            .match-info-right { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; margin-left: 0; }
        }
        
        
                .ad { cursor: pointer; }
        
        
.watch-btn.ad {
    /*display: inline-flex;*/
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(105deg, #6366f1 0%, #a855f7 40%, #ec4899 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 0.85rem 2rem;
    border-radius: 48px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    outline: none;
    position: relative;
    line-height: 1;
    animation: softGlowPulse 2.2s infinite ease-in-out;
}

.watch-btn.ad i,
.watch-btn.ad .fa-angle-right {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
    display: inline-block;
}

.watch-btn.ad:hover {
    background: linear-gradient(105deg, #8183f5 0%, #b96ef9 40%, #f065a3 100%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.watch-btn.ad:hover i,
.watch-btn.ad:hover .fa-angle-right {
    transform: translateX(3px);
}

.watch-btn.ad:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.watch-btn.ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.5) 50%,
                rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    border-radius: 48px;
    opacity: 0;
    animation: shimmerMove 3.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.watch-btn.ad span, 
.watch-btn.ad i, 
.watch-btn.ad .fas {
    position: relative;
    z-index: 2;
}

@keyframes softGlowPulse {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.2),
                    0 0 0 rgba(255, 180, 110, 0);
    }
    40% {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.25),
                    0 0 10px 3px rgba(255, 140, 200, 0.6);
    }
    70% {
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.11), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.22),
                    0 0 6px 4px rgba(160, 120, 255, 0.5);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.2),
                    0 0 0 rgba(255, 180, 110, 0);
    }
}

@keyframes shimmerMove {
    0% {
        left: -75%;
        opacity: 0;
    }
    15% {
        opacity: 0.35;
    }
    35% {
        left: 120%;
        opacity: 0.4;
    }
    36% {
        opacity: 0;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

.watch-btn.ad::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(circle at 30% 20%, rgba(255, 180, 140, 0.25), transparent 70%);
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    animation: auraFlicker 3s infinite alternate;
}

@keyframes auraFlicker {
    0% {
        opacity: 0.15;
        filter: blur(3px);
    }
    100% {
        opacity: 0.5;
        filter: blur(6px);
    }
}

.watch-btn.ad:hover {
    animation: softGlowPulseHover 1.6s infinite ease;
}

@keyframes softGlowPulseHover {
    0% {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25),
                    0 0 0 1px rgba(255, 160, 100, 0.2);
    }
    50% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    0 0 14px 5px rgba(200, 100, 255, 0.55);
    }
    100% {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25),
                    0 0 0 1px rgba(255, 160, 100, 0.2);
    }
}

.watch-btn.ad:hover::before {
    animation-duration: 2.2s;
}

.watch-btn.ad:focus-visible {
    outline: 2px solid rgba(200, 120, 255, 0.7);
    outline-offset: 3px;
}

@media (max-width: 520px) {
    .watch-btn.ad {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
    .watch-btn.ad i,
    .watch-btn.ad .fa-angle-right {
        font-size: 1rem;
    }
}