* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    background-color: #020617;
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #1e293b;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #f1f5f9;
}

/* Main Content */
.main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Blog Post Styles */
.blog-post {
    padding-bottom: 2rem;
    border-bottom: 1px solid #1e293b;
}

.blog-post:last-child {
    border-bottom: none;
}

.post-title {
    margin-bottom: 0.75rem;
}

.post-title a {
    color: #f1f5f9;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: #60a5fa;
}

.post-description {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav {
        gap: 1.5rem;
    }

    .post-title a {
        font-size: 1.25rem;
    }

    .main {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .post-title a {
        font-size: 1.15rem;
    }

    .nav {
        gap: 1rem;
    }
}
