/* Blog Styles */
body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #0a0a0f;
    color: #f8fafc;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.blog-nav {
    background: #12121a;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
}

.blog-nav a {
    color: #00ff9f;
    text-decoration: none;
    font-weight: 500;
}

.blog-nav a:hover {
    text-decoration: underline;
}

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

.post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.category {
    display: inline-block;
    background: #7c3aed;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.post-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin: 16px 0;
    line-height: 1.2;
}

.excerpt {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.meta {
    color: #64748b;
    font-size: 0.9rem;
}

.meta time {
    margin-right: 16px;
}

.read-time {
    background: #1e293b;
    padding: 4px 10px;
    border-radius: 12px;
}

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

.post-content p {
    margin-bottom: 20px;
}

.post-content h2 {
    color: #06b6d4;
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.post-content h3 {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content a {
    color: #00ff9f;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

.post-content code {
    background: #1e293b;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.post-content pre {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content blockquote {
    border-left: 4px solid #7c3aed;
    margin: 24px 0;
    padding: 16px 24px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 0 12px 12px 0;
}

.post-content blockquote p {
    margin: 0;
    color: #c4b5fd;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: white !important;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none !important;
    margin: 20px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    text-align: center;
}
