* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.8;
    color: #222;
    background: #fafafa;
    padding: 40px 20px;
}
.container { max-width: 820px; margin: 0 auto; background: #fff; padding: 48px 56px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.site-title { font-size: 28px; font-weight: 600; color: #111; margin-bottom: 6px; }
.site-title a { color: #111; text-decoration: none; }
.site-title a:hover { text-decoration: underline; }
.site-desc { font-size: 16px; color: #777; margin-bottom: 32px; border-bottom: 1px solid #eee; padding-bottom: 24px; }
.nav { display: flex; gap: 24px; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid #eee; flex-wrap: wrap; }
.nav a { color: #555; text-decoration: none; font-size: 15px; }
.nav a:hover { color: #111; text-decoration: underline; }
.nav a.active { color: #111; font-weight: 600; }
.footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid #eee; font-size: 14px; color: #aaa; text-align: center; }
@media (max-width: 600px) { .container { padding: 28px 20px; } .site-title { font-size: 22px; } .nav { gap: 12px 16px; } }