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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: #fff;
}

header {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

nav a {
    color: #666;
    text-decoration: none;
    margin-right: 1rem;
}

nav a:hover {
    color: #000;
}

article {
    margin-bottom: 3rem;
}

article h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

article h2 a {
    color: #000;
    text-decoration: none;
}

article h2 a:hover {
    text-decoration: underline;
}

.date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-content {
    margin-top: 2rem;
}

.post-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.post-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 3px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

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

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9rem;
}
