/* Blog-specific styles */

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}



.blog-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.blog-content h1 {
    font-size: 1.8rem;
}

.blog-content h2 {
    font-size: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
}

.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;
}

.blog-content blockquote {
    border-left: 3px solid #00ff00;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.blog-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}

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

.blog-content pre code {
    background: none;
    padding: 0;
    color: #00ff00;
}

.blog-content a {
    color: #00ff00;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    transition: border-color 0.3s ease;
}

.blog-content a:hover {
    border-bottom-color: #00ff00;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-navigation a {
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.blog-navigation a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.default-content {
    text-align: center;
    padding: 3rem 1rem;
}

.default-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: normal;
}

.default-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.default-content ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.default-content li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

/* Mobile-first responsive styles */
@media (max-width: 768px) {
    .blog-container {
        padding: 0 1rem;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    

    
    .blog-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .blog-content h1 {
        font-size: 1.6rem;
    }
    
    .blog-content h2 {
        font-size: 1.4rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .blog-navigation a {
        width: 100%;
        text-align: center;
        max-width: 300px;
        border-radius: 5px;
    }
    

}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-content {
        font-size: 0.9rem;
    }
    
    .blog-content h1 {
        font-size: 1.5rem;
    }
    
    .blog-content h2 {
        font-size: 1.3rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    

}
