.articles-nav-left {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }
        .articles-nav-home {
            color: #2afd8d;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 8px;
            border: 1px solid rgba(42, 253, 141, 0.35);
        }
        .articles-nav-home:hover {
            background: rgba(42, 253, 141, 0.12);
            color: #5fffd4;
        }
        .articles-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        /* 迁移自 HTML 内联 style（用于后续移除 style-src-attr unsafe-inline） */
        .articles-nav-logo-circle { width: 40px; height: 40px; margin-right: 10px; }
        .articles-nav-logo-text { font-size: 18px; }
        .articles-nav-brand { color: #fff; font-size: 18px; }
        .article-modal-content { max-width: 800px; max-height: 80vh; overflow-y: auto; }
        .article-detail-title { color: #2afd8d; margin-bottom: 20px; }
        .article-detail-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 0.9rem; color: #8899a6; }
        .article-detail-cover { width: 100%; border-radius: 8px; margin-bottom: 20px; }
        .article-detail-body { color: #a0b8c0; line-height: 1.8; }
        .article-detail-footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(0, 255, 208, 0.2); }
        .article-detail-link { color: #2afd8d; text-decoration: none; }
        .articles-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .articles-header h1 {
            color: #2afd8d;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        .articles-header p {
            color: #a0b8c0;
            font-size: 1.1rem;
        }
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        .article-card {
            background: rgba(0, 255, 208, 0.05);
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 208, 0.1);
        }
        .article-card:hover {
            background: rgba(0, 255, 208, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 208, 0.15);
        }
        .article-cover {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 15px;
        }
        .article-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.85rem;
            color: #8899a6;
        }
        .article-excerpt {
            color: #a0b8c0;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .article-link {
            display: inline-block;
            background: var(--secondary-color);
            color: #000;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .article-link:hover {
            background: #fff;
            transform: scale(1.05);
        }
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 10px;
        }
        .pagination button {
            background: rgba(0, 255, 208, 0.1);
            border: 1px solid rgba(0, 255, 208, 0.3);
            color: #2afd8d;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .pagination button:hover {
            background: rgba(0, 255, 208, 0.2);
            transform: translateY(-2px);
        }
        .pagination button.active {
            background: var(--secondary-color);
            color: #000;
        }
        .loading {
            text-align: center;
            padding: 50px;
            color: #2afd8d;
        }
        .error {
            text-align: center;
            padding: 50px;
            color: #ff4757;
        }
        @media (max-width: 768px) {
            .articles-grid {
                grid-template-columns: 1fr;
            }
            .articles-header h1 {
                font-size: 2rem;
            }
        }
