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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

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

header h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #fff;
}

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

nav a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

blockquote {
    margin: 1.5rem 0 1.5rem 1.5rem; 
    padding-left: 1rem;
    border-left: 3px solid #333;
    color: #9a9a9a;                
    font-style: italic;
    font-size: 0.9rem;
}

blockquote p {
    margin-bottom: 0; 
}

.post {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #222;
}

.post h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
}

.post time {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.post p {
    margin-bottom: 1rem;
    color: #ccc;
}

.read-more {
    color: #4a9eff;
    text-decoration: none;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

.ext-link {
    color: #4a9eff;
    text-decoration: none;
}

.ext-link:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    nav {
        gap: 1rem;
    }
    
    .post h2 {
        font-size: 1.3rem;
    }
}