/* Shared base for The Perimeter — dark newsprint. */
:root {
    --paper: #0d0f14;
    --text-primary: #eceff4;
    --text-secondary: #aab2c0;
    --text-muted: #6b7484;
    --accent-color: #4ade80;
    --ink-rule: rgba(255, 255, 255, 0.14);
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--paper);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

a {
    color: var(--accent-color);
}

img {
    max-width: 100%;
}

footer {
    margin-top: 3rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--ink-rule);
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.7;
}
