/* Article Content */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 40px 20px;
}

.article-title {
    text-align: center;
    margin-bottom: 40px;
}

.article-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    color: #a1a1aa;
    font-size: 1rem;
    margin-bottom: 40px;
}

.featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    color: #ffffff;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: #ffffff;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-content pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content blockquote {
    border-left: 4px solid #7877c6;
    margin: 2rem 0;
    padding-left: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.article-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
}

/* Link Styling */
.article-content a {
    color: #fbbf24;
    text-decoration: underline;
    text-decoration-color: rgba(251, 191, 36, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.article-content a:hover {
    color: #f59e0b;
    text-decoration-color: #f59e0b;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
}

.article-content a:visited {
    color: #d97706;
}

@media (max-width: 768px) {
    .article-title h1 {
        font-size: 2rem;
    }

    .article-container {
        padding: 80px 16px 40px 16px;
    }
}