:root {
    --bg: #1a1a1a;
    --fg: #e0e0e0;
    --accent: #ff6b35;
    --muted: #666;
    --border: #333;
    --font-main: 'Courier New', monospace;
}

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

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header {
    border-bottom: 2px solid var(--accent);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    color: var(--muted);
    font-style: italic;
    margin-top: 0.5rem;
}

main {
    min-height: 50vh;
}

article {
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #222;
}

article h2 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

article .date {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

article p {
    margin-bottom: 1rem;
}

footer {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 2rem;
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
}

.small {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.post-list {
    list-style: none;
}

.post-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    border-left: 3px solid var(--accent);
    background: #222;
}

.post-list a {
    font-size: 1.1rem;
    font-weight: bold;
}

.post-list .date {
    color: var(--muted);
    font-size: 0.85rem;
}
