/* Blog Post Specific Styles */
.blog-post-page {
    padding-top: 120px;
}

.blog-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.blog-feature-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto 3rem;
    display: block;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.blog-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-content h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.code-block {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--glass-border);
    position: relative;
}

.code-block pre {
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
}

.share-section {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-hover);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.share-btn:hover {
    background: var(--accent-primary);
    color: #000;
    transform: translateY(-3px);
}

.author-bio {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 4rem;
    border-left: 4px solid var(--accent-primary);
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid var(--glass-border);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}