#blog-container {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4rem 2rem;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.blog-header {
    text-align: center;
    margin-bottom: 5rem;
}

.blog-list {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-post {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.blog-post:last-child {
    border-bottom: none;
}

.post-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #f0f0f0;
    line-height: 1.2;
}

.post-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    font-weight: 300;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.back-nav {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'JetBrains Mono', monospace;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    z-index: 20;

    cursor: pointer;
}

.back-nav:hover {
    color: #fff;
}

@media (max-width: 768px) {
    #blog-container {
        padding: 4rem 1.5rem;
    }

    .blog-header {
        margin-bottom: 3rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .back-nav {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 0.9rem;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }
}