        :root {
            --primary-white: #ffffff;
            --secondary-dark: #1a1a1a;
            --accent-green: #00c853;
            --accent-orange: #ff6b00;
            --text-gray: #666666;
            --border-light: #e0e0e0;
            --hover-bg: #f5f5f5;
            --footer-dark: #0f0f0f;
            --footer-gray: #2a2a2a;
            --bg-light: #f8f9fa;
            --danger-red: #ff1744;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: var(--bg-light);
            color: var(--secondary-dark);
            line-height: 1.6;
        }

        /* 顶部实时比分条 */
        .live-ticker {
            background-color: var(--secondary-dark);
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
            border-bottom: 3px solid var(--accent-green);
        }

        .ticker-wrapper {
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .ticker-label {
            background-color: var(--accent-green);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ticker-content {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .match-item {
            display: inline-flex;
            align-items: center;
            margin-right: 30px;
            padding: 0 10px;
        }

        .match-item:hover {
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
            cursor: pointer;
        }

        .team-name {
            font-weight: 500;
            margin: 0 8px;
        }

        .score {
            color: var(--accent-green);
            font-weight: 700;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1em;
        }

        .match-time {
            color: #aaa;
            font-size: 0.8em;
            margin-left: 8px;
        }

        /* 主导航栏 */
        .main-navbar {
            background-color: var(--primary-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .navbar-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-dark) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .nav-link {
            color: var(--secondary-dark) !important;
            font-weight: 500;
            padding: 1.2rem 1rem !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-green) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: var(--accent-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 80%;
        }

        /* 文章头部大图 */
        .article-hero {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .article-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
            padding: 60px 0 40px;
        }

        .article-category {
            display: inline-block;
            background-color: var(--accent-orange);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .article-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
            max-width: 900px;
        }

        .article-meta-bar {
            display: flex;
            align-items: center;
            gap: 25px;
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
        }

        .article-meta-bar span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .article-meta-bar i {
            color: var(--accent-green);
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-green);
        }

        /* 文章内容区 */
        .article-section {
            padding: 50px 0;
        }

        .article-wrapper {
            background-color: white;
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .article-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--secondary-dark);
        }

        .article-content p {
            margin-bottom: 25px;
        }

        .article-content h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 40px 0 20px;
            color: var(--secondary-dark);
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent-green);
            display: inline-block;
        }

        .article-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 30px 0 15px;
            color: var(--secondary-dark);
        }

        .article-content strong {
            color: var(--accent-green);
            font-weight: 700;
        }

        .article-content blockquote {
            border-left: 4px solid var(--accent-green);
            padding: 20px 30px;
            margin: 30px 0;
            background-color: var(--hover-bg);
            font-style: italic;
            font-size: 1.2rem;
            color: var(--text-gray);
            border-radius: 0 12px 12px 0;
        }

        .article-content blockquote cite {
            display: block;
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--secondary-dark);
            font-style: normal;
            font-weight: 600;
        }

        .article-content img {
            width: 100%;
            border-radius: 12px;
            margin: 30px 0;
        }

        .article-content figcaption {
            text-align: center;
            color: #999;
            font-size: 0.9rem;
            margin-top: -20px;
            margin-bottom: 30px;
        }

        /* 文章标签 */
        .article-tags {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-light);
        }

        .tags-label {
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tags-label i {
            color: var(--accent-green);
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .article-tag {
            padding: 8px 18px;
            background-color: var(--hover-bg);
            border-radius: 25px;
            font-size: 0.9rem;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .article-tag:hover {
            background-color: var(--accent-green);
            color: white;
            transform: translateY(-2px);
        }

        /* 分享栏 */
        .share-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--border-light);
        }

        .share-label {
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .share-buttons {
            display: flex;
            gap: 12px;
        }

        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .share-btn.wechat { background-color: #07c160; }
        .share-btn.weibo { background-color: #e6162d; }
        .share-btn.twitter { background-color: #000000; }
        .share-btn.link { background-color: var(--text-gray); }

        .article-actions {
            display: flex;
            gap: 15px;
        }

        .action-btn {
            padding: 10px 25px;
            border-radius: 25px;
            border: 2px solid var(--border-light);
            background-color: white;
            color: var(--text-gray);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .action-btn:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
            transform: translateY(-2px);
        }

        .action-btn.liked {
            background-color: var(--danger-red);
            border-color: var(--danger-red);
            color: white;
        }

        /* 评论区 */
        .comments-section {
            margin-top: 40px;
            background-color: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .comments-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border-light);
        }

        .comments-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comments-title i {
            color: var(--accent-green);
        }

        .comments-count {
            background-color: var(--accent-green);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
        }

        .comment-form {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .comment-input-wrapper {
            flex: 1;
        }

        .comment-textarea {
            width: 100%;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            padding: 15px 20px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            transition: all 0.3s;
            font-family: inherit;
        }

        .comment-textarea:focus {
            outline: none;
            border-color: var(--accent-green);
            box-shadow: 0 0 0 3px rgba(0,200,83,0.1);
        }

        .comment-submit-btn {
            margin-top: 15px;
            padding: 12px 30px;
            background-color: var(--accent-green);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .comment-submit-btn:hover {
            background-color: #00a344;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,200,83,0.3);
        }

        /* 评论列表 */
        .comment-item {
            display: flex;
            gap: 20px;
            padding: 25px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .comment-item:last-child {
            border-bottom: none;
        }

        .comment-content {
            flex: 1;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .comment-author {
            font-weight: 700;
            color: var(--secondary-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vip-badge {
            background-color: var(--accent-orange);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 700;
        }

        .comment-time {
            font-size: 0.85rem;
            color: #999;
        }

        .comment-text {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .comment-actions {
            display: flex;
            gap: 20px;
        }

        .comment-action {
            font-size: 0.85rem;
            color: #999;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .comment-action:hover {
            color: var(--accent-green);
        }

        .comment-action.liked {
            color: var(--danger-red);
        }

        /* 侧边栏 */
        .sidebar-section {
            margin-bottom: 30px;
        }

        .sidebar-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sidebar-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background-color: var(--accent-green);
            margin-left: 10px;
        }

        .sidebar-title i {
            color: var(--accent-green);
        }

                /* ==================== 今日赛事推荐 ==================== */
        .match-recommendation {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            border: 2px solid #8fd7ab3b;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .match-recommendation:hover {
            border-color: var(--accent-green);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,200,83,0.15);
        }

        .match-recommendation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--accent-green);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .match-recommendation:hover::before {
            opacity: 1;
        }

        .recommend-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background-color: var(--accent-orange);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .recommend-badge.high-confidence {
            background-color: var(--accent-green);
        }

        .recommend-badge.risk {
            background-color: var(--danger-red);
        }

        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .team-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .team-logo-placeholder {
            width: 40px;
            height: 40px;
            background-color: var(--hover-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--secondary-dark);
            font-size: 0.9rem;
            border: 2px solid var(--border-light);
        }

        .team-info-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary-dark);
            text-align: center;
        }

        .match-vs {
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-gray);
            padding: 0 15px;
        }

        .match-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px dashed var(--border-light);
        }

        .match-league {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        .match-league i {
            color: var(--accent-green);
        }

        .match-time-countdown {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-orange);
        }

        .match-time-countdown i {
            font-size: 0.9rem;
        }

        .odds-section {
            margin-top: 12px;
            padding: 12px;
            background-color: white;
            border-radius: 8px;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .odds-item {
            text-align: center;
        }

        .odds-label {
            font-size: 0.7rem;
            color: #999;
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .odds-value {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary-dark);
        }

        .odds-value.recommended {
            color: var(--accent-green);
            position: relative;
        }

        .odds-value.recommended::after {
            content: '★';
            position: absolute;
            top: -8px;
            right: -10px;
            font-size: 0.6rem;
            color: var(--accent-orange);
        }

        .prediction-bar {
            margin-top: 12px;
            height: 6px;
            background-color: var(--hover-bg);
            border-radius: 3px;
            overflow: hidden;
            display: flex;
        }

        .prediction-segment {
            height: 100%;
            transition: all 0.3s;
        }

        .prediction-segment.win {
            background-color: var(--accent-green);
        }

        .prediction-segment.draw {
            background-color: var(--warning-yellow);
        }

        .prediction-segment.loss {
            background-color: var(--danger-red);
        }

        .prediction-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 0.75rem;
            color: #999;
        }

        .view-analysis-btn {
            width: 100%;
            margin-top: 15px;
            padding: 10px;
            background-color: transparent;
            border: 2px solid var(--accent-green);
            color: var(--accent-green);
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .view-analysis-btn:hover {
            background-color: var(--accent-green);
            color: white;
        }

        .more-matches-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .more-matches-link:hover {
            color: var(--accent-green);
            gap: 12px;
        }


        /* 相关推荐 */
        .related-card {
            display: flex;
            gap: 15px;
            padding: 15px;
            background-color: white;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
            text-decoration: none;
            border: 1px solid transparent;
        }

        .related-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-color: var(--accent-green);
        }

        .related-image {
            width: 100px;
            height: 75px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .related-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .related-title {
            font-weight: 600;
            color: var(--secondary-dark);
            font-size: 0.95rem;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s;
        }

        .related-card:hover .related-title {
            color: var(--accent-green);
        }

        .related-meta {
            font-size: 0.8rem;
            color: #999;
            display: flex;
            align-items: center;
            gap: 10px;
        }

                /* 热门新闻 */
        .trending-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s;
        }

        .trending-item:last-child {
            border-bottom: none;
        }

        .trending-item:hover {
            transform: translateX(5px);
        }

        .trending-rank {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--border-light);
            line-height: 1;
            min-width: 35px;
            text-align: center;
            transition: color 0.3s;
        }

        .trending-item:hover .trending-rank {
            color: var(--accent-green);
        }

        .trending-content {
            flex: 1;
        }

        .trending-title {
            font-weight: 600;
            color: var(--secondary-dark);
            font-size: 0.95rem;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s;
        }

        .trending-item:hover .trending-title {
            color: var(--accent-green);
        }

        .trending-meta {
            font-size: 0.8rem;
            color: #999;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        
        /* 热门标签 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-item {
            padding: 8px 16px;
            background-color: white;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s;
        }

        .tag-item:hover {
            background-color: var(--accent-green);
            border-color: var(--accent-green);
            color: white;
            transform: translateY(-2px);
        }

        /* 页脚 - 复用之前样式 */
        .site-footer {
            background-color: var(--footer-dark);
            color: white;
            margin-top: 60px;
        }

        .footer-cta {
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .footer-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.03) 10px,
                rgba(255,255,255,0.03) 20px
            );
            animation: slide 20s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cta-text h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-text p {
            margin: 0;
            opacity: 0.9;
            font-size: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-cta {
            background-color: white;
            color: var(--accent-green);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--accent-green);
        }

        .btn-cta-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-cta-outline:hover {
            background-color: white;
            color: var(--accent-green);
        }

        .footer-main {
            padding: 60px 0 40px;
        }

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .brand-icon-footer {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transform: rotate(-5deg);
            transition: transform 0.3s;
        }

        .footer-brand-logo:hover .brand-icon-footer {
            transform: rotate(0deg) scale(1.1);
        }

        .brand-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .brand-text span {
            color: var(--accent-green);
        }

        .footer-desc {
            color: #999;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .subscribe-form {
            position: relative;
            margin-bottom: 30px;
        }

        .subscribe-input {
            width: 100%;
            background-color: var(--footer-gray);
            border: 2px solid transparent;
            border-radius: 30px;
            padding: 14px 50px 14px 20px;
            color: white;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .subscribe-input:focus {
            outline: none;
            border-color: var(--accent-green);
            background-color: rgba(255,255,255,0.05);
        }

        .subscribe-input::placeholder {
            color: #666;
        }

        .subscribe-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--accent-green);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .subscribe-btn:hover {
            background-color: var(--accent-orange);
            transform: translateY(-50%) scale(1.1);
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            background-color: var(--footer-gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: 1px solid transparent;
        }

        .social-link:hover {
            background-color: var(--accent-green);
            color: white;
            transform: translateY(-3px);
            border-color: var(--accent-green);
            box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
        }

        .footer-links-col {
            margin-bottom: 30px;
        }

        .footer-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-green);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a i {
            font-size: 0.7rem;
            color: var(--accent-green);
            opacity: 0;
            transition: all 0.3s;
            transform: translateX(-5px);
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a:hover i {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-bottom {
            background-color: #0a0a0a;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 25px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .copyright a {
            color: var(--accent-green);
            text-decoration: none;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* 响应式设计 */
        @media (max-width: 991px) {
            .article-hero {
                height: 400px;
            }

            .article-title {
                font-size: 2rem;
            }

            .article-wrapper {
                padding: 30px;
            }

            .article-content {
                font-size: 1rem;
            }

            .sidebar-section {
                margin-top: 40px;
            }
        }

        @media (max-width: 576px) {
            .article-hero {
                height: 350px;
            }

            .article-title {
                font-size: 1.5rem;
            }

            .article-meta-bar {
                flex-wrap: wrap;
                gap: 15px;
            }

            .article-wrapper {
                padding: 20px;
            }

            .share-bar {
                flex-direction: column;
                gap: 20px;
            }

            .comment-form {
                flex-direction: column;
            }

            .cta-text h3 {
                font-size: 1.4rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* 加载动画 */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
    body,td,th {
	font-family: "Noto Sans SC", sans-serif;
}
