      /* Article Page Specific Styles */
        .article-container {
            margin-top: 120px;
            padding: 2rem 0 4rem;
        }

        .back-button {
            margin-bottom: 2rem;
        }

        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--bg-primary);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .btn-back:hover {
            color: var(--primary-color);
            transform: translateX(-4px);
            box-shadow: var(--shadow-lg);
        }

        .article-content {
            background: var(--bg-primary);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin-bottom: 3rem;
        }

        .article-header {
            padding: 2rem;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .article-meta-top {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .category-badge {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }

        .article-date-top {
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.875rem;
        }

        .article-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .social-share {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .share-label {
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.875rem;
        }

        .share-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.875rem;
        }

        .share-btn.facebook { background: #1877f2; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0a66c2; }
        .share-btn.copy { background: var(--text-muted); }

        .share-btn:hover {
            transform: translateY(-2px) scale(1.1);
            box-shadow: var(--shadow-md);
        }

        .article-featured-image {
            text-align: center;
            margin-bottom: 2rem;
        }

        .article-featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .article-body {
            padding: 2rem;
        }

        .article-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text-primary);
        }

        .article-text p {
            margin-bottom: 1.5rem;
        }

        .article-text h2,
        .article-text h3,
        .article-text h4 {
            color: var(--text-primary);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .article-text h2 {
            font-size: 1.75rem;
        }

        .article-text h3 {
            font-size: 1.5rem;
        }

        .article-text h4 {
            font-size: 1.25rem;
        }

        .article-text ul,
        .article-text ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .article-text li {
            margin-bottom: 0.5rem;
        }

        .article-text blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-secondary);
            background: var(--bg-tertiary);
            padding: 1rem 1rem 1rem 2rem;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
        }

        .article-ad {
            text-align: center;
            margin: 2rem 0;
            padding: 1rem;
            background: var(--bg-tertiary);
            border-radius: var(--radius-lg);
        }

        .article-footer {
            padding: 2rem;
            border-top: 1px solid var(--border-color);
            background: var(--bg-secondary);
        }

        .article-tags {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .tags-label {
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        .tag-item {
            background: var(--bg-primary);
            color: var(--text-secondary);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            border: 1px solid var(--border-color);
        }

        .social-share-footer {
            text-align: center;
            padding: 2rem;
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
        }

        .social-share-footer h4 {
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-size: 1.25rem;
        }

        .social-share-footer .share-btn {
            width: auto;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-lg);
            gap: 0.5rem;
            font-weight: 500;
        }

        /* Related Articles */
        .related-articles {
            margin-top: 3rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* Responsive Design for Article */
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            
            .article-header,
            .article-body,
            .article-footer {
                padding: 1.5rem;
            }
            
            .article-text {
                font-size: 1rem;
            }
            
            .article-meta-top {
                gap: 1rem;
                flex-direction: column;
            }
            
            .share-buttons {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .social-share {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .article-title {
                font-size: 1.75rem;
            }
            
            .article-header,
            .article-body,
            .article-footer {
                padding: 1rem;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }