/* Ultra-dark monospace minimal theme */
body {
    background: #000000;
    color: #c0c0c0;
    font-family: 'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 1.5rem; 
    margin: 2rem 0 1rem; 
}

h2 { 
    font-size: 1.25rem; 
    margin: 1.5rem 0 0.8rem; 
}

h3 { 
    font-size: 1.1rem; 
}

/* Links */
a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Header navigation */
header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1a1a1a;
}

nav a {
    color: #888;
    font-size: 0.95rem;
    border: none;
    transition: color 0.2s;
}

nav a:hover {
    color: #fff;
    text-decoration: none;
}

nav a[href="/"] {
    color: #fff;
}

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

/* Code blocks */
pre {
    background: #0a0a0a;
    border-left: 2px solid #222;
    padding: 1rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    border-radius: 2px;
}

pre code {
    background: transparent;
    color: #d4d4d4;
    line-height: 1.6;
    font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
    font-size: 13px;
}

code {
    background: #1a1a1a;
    color: #d4d4d4;
    padding: 0.2rem 0.4rem;
    border-radius: 2px;
    font-size: 13px;
}

/* Blockquotes */
blockquote {
    border-left: 2px solid #333;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #888;
    font-style: italic;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0;
}

/* Tables - force dark */
table,
table tbody,
table thead,
table tr,
table td,
table th {
    background: #000000 !important;
    background-color: #000000 !important;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

td, th {
    padding: 0.5rem;
    border: 1px solid #222;
    text-align: left;
    color: #c0c0c0;
}

th {
    background: #0a0a0a !important;
    font-weight: 600;
    color: #ffffff;
}

/* Nuclear option - kill all row backgrounds */
tr:nth-child(odd),
tr:nth-child(even),
tbody tr:nth-child(odd),
tbody tr:nth-child(even) {
    background: #000000 !important;
    background-color: #000000 !important;
}

/* Horizontal rule */
hr {
    border: 0;
    border-top: 1px solid #222;
    margin: 3rem 0;
}

/* Footer */
footer {
    margin-top: 4rem;
}
