:root {
    --bg: #0a0a0a;
    --text: #eaeaea;
    --muted: #999;
    --line: #222;
    --accent: #a970ff;
    --alert: #ff6b6b;
}

/* BASE */
body {
    margin: 0;
    display: flex;
    background: var(--bg);
    color: var(--text);
    font-family: serif;
    line-height: 1.6;
}

/* SIDEBAR */
aside {
    width: 220px;
    padding: 20px;
    border-right: 1px solid var(--line);
    height: 100vh;
    position: fixed;
}

.site-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 30px;
}

/* NAV */
ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #aaa;
    transition: 0.2s;
}

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

/* MAIN */
main {
    margin-left: 220px;
    padding: 60px;
}

.content {
    max-width: 750px;
}

/* TYPE */
h1 { font-size: 38px; }
h2 { color: #aaa; font-weight: normal; }
h3 { color: #666; font-weight: normal; }

/* META */
.meta {
    color: var(--muted);
    font-size: 0.9rem;
}

/* STRUCTURE */
.file-header {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 30px 0;
}

.entry {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #111;
}

.note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #111;
}

/* AUDIO */
audio {
    width: 100%;
    margin-top: 10px;
}

/* REDACTION */
.redacted {
    background: #111;
    color: #111;
    padding: 0 4px;
}

/* CORRUPTION */
.corrupt {
    color: var(--accent);
    letter-spacing: 1px;
}

/* SYSTEM TEXT */
.system {
    font-size: 0.8rem;
    color: #666;
}

.alert {
    color: var(--alert);
}
