
        .article-container {
            max-width: 800px;
            margin: 3rem auto;
            padding: 2rem;
        }
        .article-hero {
            background: linear-gradient(135deg, var(--accent-orange) 0%, #d35400 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        .article-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .article-meta {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 1.5rem 0;
            opacity: 1;
            color: #ffffff;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            line-height: 1.8;
            font-size: 1.05rem;
            color: #333;
        }
        .article-content h2 {
            color: var(--accent-orange);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .article-content p {
            margin-bottom: 1rem;
        }
        .article-content ul, .article-content ol {
            margin: 1.5rem 0 1.5rem 2rem;
        }
        .article-content li {
            margin-bottom: 0.8rem;
        }
        .code-block {
            background: #f4f4f4;
            border-left: 4px solid var(--accent-orange);
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 4px;
        }
        .back-link {
            display: inline-block;
            margin-bottom: 2rem;
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        .blog-info-section {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
            border-left: 4px solid var(--accent-orange);
        }
        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #ddd;
        }
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-orange), #d35400);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }
        .author-details h4 {
            margin: 0 0 0.3rem 0;
            color: #333;
        }
        .author-details p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }
        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #ddd;
        }
        .blog-tag {
            background: white;
            border: 1px solid var(--accent-orange);
            color: var(--accent-orange);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .blog-tag:hover {
            background: var(--accent-orange);
            color: white;
        }
        .share-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .share-buttons span {
            font-weight: 600;
            color: #333;
            margin-right: 0.5rem;
        }
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 2px solid #ddd;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }
        .share-btn:hover {
            background: var(--accent-orange);
            color: white;
            border-color: var(--accent-orange);
        }
        .related-posts {
            margin-top: 2rem;
        }
        .related-posts h3 {
            color: var(--accent-orange);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .related-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }
        .related-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        .related-card-image {
            width: 100%;
            height: 120px;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #999;
        }
        .related-card-content {
            padding: 1rem;
        }
        .related-card-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        .related-card-date {
            font-size: 0.8rem;
            color: #999;
        }
        @media (max-width: 768px) {
            .author-info {
                flex-direction: column;
                text-align: center;
            }
            .share-buttons {
                justify-content: center;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
    