:root {
    --bg: #0b0b0b;
    --text: #e0e0e0;
    --muted: #8a8a8a;
    --accent: #7b1fa2;
    --border: #2a2a2a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 2rem;
    background: var(--bg);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

nav a {
    margin-right: 1rem;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
}

h1, h2, h3 {
    font-family: "Courier New", monospace;
    font-weight: normal;
}

article {
    margin-bottom: 3rem;
}

.date {
    color: var(--muted);
    font-size: 0.9rem;
    font-family: "Courier New", monospace;
}

footer {
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    padding-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    font-family: "Courier New", monospace;
}
