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

body {
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    color: #000;
}

nav {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    font-size: 14px;
}

nav a {
    color: #00f;
    text-decoration: none;
}

nav a:visited {
    color: #551a8b;
}

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

h1 {
    font-size: 24px;
    margin: 20px 0;
}

h2 {
    font-size: 20px;
    margin: 15px 0 10px;
}

h3 {
    font-size: 18px;
    margin: 10px 0;
}

a {
    color: #00f;
}

a:visited {
    color: #551a8b;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.profile-image {
    max-width: 200px;
    margin: 20px 0;
}

.post-list {
    list-style: none;
    margin-left: 0;
}

.post-list li {
    margin-bottom: 10px;
}

.post-date {
    color: #666;
    font-size: 14px;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #000;
    font-size: 10px;
    color: #a0a0a0;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}

th, td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
}

th {
    background: #f0f0f0;
}

.post-meta-date {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 25px;
}

article h1 {
    margin-bottom: 5px;
}

/* Footnote styling */
.footnote-ref {
    color: #dddddd;
    text-decoration: none;
    font-size: 0.9em;
}

.footnote-ref a {
    color: #dddddd;
    text-decoration: none;
}

.footnotes {
    margin-top: 60px;
    padding-top: 20px;
}

.footnotes h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footnotes ol {
    margin-left: 20px;
}

.footnotes li {
    margin-bottom: 10px;
}

/* Thanks section */
.thanks {
    margin-top: 40px;
    color: #888888;
    font-size: 14px;
}

.thanks b {
    font-weight: bold;
}