/* Import Inter Font for that premium tech-wiki look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Base Stealth Theme (Deep Dark) */
body {
    background-color: #09090b;
    color: #a1a1aa;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Core Layout - Keeps content centered and readable */
main {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px;
}

/* Typography - High contrast for readability */
h1, h2, h3, h4, h5, h6 {
    color: #f4f4f5;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

p, li {
    margin-bottom: 1rem;
    color: #a1a1aa;
}

/* Link Styling - Modern Blue */
a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline;
    color: #60a5fa;
}

/* Blockquotes & Callouts for Status Updates */
blockquote {
    border-left: 4px solid #3b82f6;
    background-color: #18181b;
    margin: 1.5rem 0;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

blockquote strong {
    color: #f4f4f5;
}

/* Data Tables for Checksums */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #27272a;
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
}

th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #27272a;
    font-size: 0.95rem;
}

th {
    background-color: #18181b;
    color: #f4f4f5;
    font-weight: 500;
}

tr:last-child td {
    border-bottom: none;
}

/* Horizontal Rules */
hr {
    border: 0;
    border-top: 1px solid #27272a;
    margin: 40px 0;
}

/* Code Snippets */
code {
    background-color: #18181b;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: #d4d4d8;
    border: 1px solid #27272a;
}

/* Global Footer - Strict Silo Layout */
.site-footer {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 40px 24px;
    margin-top: 80px;
    border-top: 1px solid #27272a;
    font-size: 0.875rem;
}

.site-footer a {
    color: #71717a;
}

.site-footer a:hover {
    color: #a1a1aa;
    text-decoration: none;
}