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

body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #000;
    background-color: #f6f6ef;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

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

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #828282;
}

/* Header */
.site-header {
    background-color: #ff6600;
    padding: 12px 0;
    margin-bottom: 10px;
    min-height: 44px;
}

.site-header .container {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
}

.site-title {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    line-height: 1;
}

.site-title a {
    color: #000;
}

.site-nav {
    display: flex;
    gap: 15px;
}

.site-nav a {
    color: #000;
    font-size: 12px;
    line-height: 1;
}

.site-nav a:hover {
    text-decoration: underline;
}

/* Content */
.site-content {
    min-height: calc(100vh - 120px);
    margin-bottom: 20px;
}

/* Post List (Hacker News Style) */
.post-list {
    margin: 0;
    padding: 0;
}

.post-item {
    margin-bottom: 8px;
    padding: 2px 0;
}

.post-title {
    font-size: 14px;
    margin: 0;
    line-height: 14px;
    font-weight: normal;
}

.post-title a {
    color: #000;
}

.post-title a:visited {
    color: #828282;
}

.post-meta {
    font-size: 11px;
    color: #828282;
    margin-top: 2px;
    line-height: 12px;
}

.post-date {
    color: #828282;
}

.separator {
    margin: 0 4px;
}

.read-more {
    color: #828282;
    font-size: 11px;
}

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

.archive-link {
    margin-top: 20px;
    font-size: 12px;
}

.archive-link a {
    color: #828282;
}

/* Standard content styles for other pages */
h1, h2, h3, h4, h5, h6 {
    margin: 1rem 0 0.5rem;
    line-height: 1.25;
}

p, ul, ol {
    margin-bottom: 1rem;
}

ul, ol {
    padding-left: 1.5rem;
}

blockquote {
    border-left: 4px solid #dfe2e5;
    padding-left: 1rem;
    color: #6a737d;
    margin: 0 0 1rem;
}

pre {
    background-color: #f6f8fa;
    border-radius: 6px;
    padding: 16px;
    overflow: auto;
    margin-bottom: 1rem;
}

code {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    background-color: rgba(27, 31, 35, 0.05);
    border-radius: 3px;
    padding: 0.2em 0.4em;
    font-size: 85%;
}

pre code {
    background-color: transparent;
    padding: 0;
}

/* Individual post styles */
.post-meta {
    color: #828282;
    font-size: 12px;
    margin-bottom: 15px;
}

.post-content {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    font-size: 12px;
}

.post-tags {
    margin: 20px 0;
}

.tag {
    background-color: #f1f8ff;
    border-radius: 3px;
    color: #0366d6;
    padding: 3px 8px;
    font-size: 0.85rem;
    margin-right: 5px;
}

/* Footer */
.site-footer {
    background-color: #f6f6ef;
    border-top: 1px solid #ff6600;
    padding: 10px 0;
    color: #828282;
    font-size: 11px;
}

.social-links {
    margin-top: 5px;
}

.social-links a {
    margin-right: 10px;
    color: #828282;
}

/* Responsive */
@media (max-width: 600px) {
    .site-header {
        padding: 4px 0;
    }
    
    .site-title {
        font-size: 16px;
    }
    
    .site-nav {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
    
    .container {
        padding: 0 8px;
    }
} 