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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 2px dotted #666;
}

.site-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #e0e0e0;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #4a9eff;
}

.post {
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 2px dotted #666;
    text-align: left;
}

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

.post h2 {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.post-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.post p {
    line-height: 1.6;
    color: #d0d0d0;
}