:root {
            --article-neon-green: #74e4de;
            --article-neon-glow: 0 0 15px rgba(0, 255, 65, 0.5);
            --article-dark-bg: #0a0a0a;
            --article-card-bg: rgba(15, 15, 15, 0.9);
            --article-border: rgba(255, 255, 255, 0.1);
            --article-text-primary: #ffffff;
            --article-text-secondary: #9ca3af;
            --article-accent: rgba(0, 255, 65, 0.1);
        }

        .article-body {
            margin: 0;
            padding: 0;
            background: var(--article-dark-bg);
            color: var(--article-text-primary);
            /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
            min-height: 100vh;
        }

        .article-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* �������� */
        .article-main-content {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            padding: 2rem 0;
        }

        @media (max-width: 1024px) {
            .article-main-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* �������� */
        .article-content {
            background: linear-gradient(145deg, var(--article-card-bg), rgba(25, 25, 25, 0.9));
            border: 1px solid var(--article-border);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .article-header {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .article-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--article-neon-green);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--article-text-secondary);
            font-size: 0.875rem;
        }

        .article-date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .article-date i {
            color: var(--article-neon-green);
        }

        /* ����������ʽ */
        .article-body-content {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--article-text-primary);
        }

        .article-body-content h1,
        .article-body-content h2,
        .article-body-content h3,
        .article-body-content h4,
        .article-body-content h5,
        .article-body-content h6 {
            color: var(--article-neon-green);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .article-body-content h1 { font-size: 2rem; }
        .article-body-content h2 { font-size: 1.75rem; }
        .article-body-content h3 { font-size: 1.5rem; }
        .article-body-content h4 { font-size: 1.25rem; }

        .article-body-content p {
            margin-bottom: 1.5rem;
        }

        .article-body-content a {
            color: var(--article-neon-green);
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 255, 65, 0.3);
            transition: border-color 0.3s ease;
        }

        .article-body-content a:hover {
            border-color: var(--article-neon-green);
        }

        .article-body-content code {
            background: rgba(0, 255, 65, 0.1);
            color: var(--article-neon-green);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
        }

        .article-body-content pre {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--article-border);
            border-radius: 8px;
            padding: 1.5rem;
            overflow-x: auto;
            margin: 1.5rem 0;
        }

        .article-body-content blockquote {
            border-left: 3px solid var(--article-neon-green);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            color: var(--article-text-secondary);
            font-style: italic;
        }

        .article-body-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            border: 1px solid var(--article-border);
        }

        /* ��ǩ���� */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 2rem 0;
        }

        .article-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 255, 65, 0.1);
            border: 1px solid rgba(0, 255, 65, 0.2);
            border-radius: 20px;
            color: var(--article-neon-green);
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .article-tag:hover {
            background: rgba(0, 255, 65, 0.2);
            border-color: var(--article-neon-green);
            transform: translateY(-2px);
        }

        /* �������� */
        .article-share-section {
            margin: 2.5rem 0;
            padding: 2rem;
            background: linear-gradient(145deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.9));
            border: 1px solid var(--article-border);
            border-radius: 12px;
        }

        .article-share-title {
            font-size: 1.25rem;
            color: var(--article-neon-green);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .article-share-title i {
            font-size: 1.25rem;
        }

        .article-share-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .article-share-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1.5rem;
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .article-share-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .article-share-button i {
            font-size: 1.25rem;
        }

        /* ��ƽ̨��ɫ */
        .article-share-twitter { background-color: #1DA1F2; }
        .article-share-facebook { background-color: #4267B2; }
        .article-share-linkedin { background-color: #0077B5; }
        .article-share-pinterest { background-color: #E60023; }
        .article-share-whatsapp { background-color: #25D366; }
        .article-share-vk { background-color: #4680C2; }

        /* ����������һƪ/��һƪ�� */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        @media (max-width: 768px) {
            .article-navigation {
                flex-direction: column;
            }
        }

        .article-nav-button {
            flex: 1;
            padding: 1.5rem;
            background: linear-gradient(145deg, var(--article-card-bg), rgba(25, 25, 25, 0.9));
            border: 1px solid var(--article-border);
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .article-nav-button:hover {
            border-color: var(--article-neon-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .article-nav-button-prev .article-nav-arrow {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--article-neon-green);
            font-size: 1.5rem;
        }

        .article-nav-button-next .article-nav-arrow {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--article-neon-green);
            font-size: 1.5rem;
        }

        .article-nav-label {
            display: block;
            color: var(--article-text-secondary);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .article-nav-title {
            color: var(--article-text-primary);
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.4;
            margin: 0;
            padding: 0 2.5rem;
        }

        /* ����� */
        .article-sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .article-sidebar-section {
            background: linear-gradient(145deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
            border: 1px solid var(--article-border);
            border-radius: 12px;
            padding: 1.75rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .article-sidebar-title {
            font-size: 1.25rem;
            color: var(--article-neon-green);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid rgba(0, 255, 65, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* ��������б� */
        .article-recent-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .article-recent-item {
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .article-recent-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .article-recent-link {
            display: block;
            text-decoration: none;
            color: var(--article-text-secondary);
            padding: 0.75rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .article-recent-link:hover {
            background: var(--article-accent);
            color: var(--article-neon-green);
            border-color: rgba(0, 255, 65, 0.2);
            transform: translateX(5px);
        }

        .article-recent-title {
            font-size: 0.95rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ״ָ̬ʾ�� */
        .article-status-badge {
            margin-bottom: 1rem;
        }

        /* �ƶ����Ż� */
        @media (max-width: 768px) {
            .article-container {
                padding: 0 1rem;
            }

            .article-content {
                padding: 1.5rem;
            }

            .article-share-buttons {
                flex-direction: column;
            }

            .article-share-button {
                width: 100%;
                justify-content: center;
            }

            .article-recent-link:hover {
                transform: translateY(-2px);
            }
        }

        @media (max-width: 480px) {
            .article-title {
                font-size: 1.75rem;
            }

            .article-body-content {
                font-size: 1rem;
            }
        }

        /* �ƶ��˴����Ż� */
        @media (hover: none) and (pointer: coarse) {
            .article-nav-button:active,
            .article-share-button:active,
            .article-tag:active,
            .article-recent-link:active {
                transform: scale(0.98);
                transition: transform 0.1s ease;
            }
        }
