body {
    background: #d9d9d9;
    color: #1a1a1a;
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 50px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ========================= */
/* HEADER / SYSTEM TITLE     */
/* ========================= */

h1 {
    font-size: 2.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: #111;
}

h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #666;
    padding-bottom: 6px;
    margin-top: 35px;
    color: #222;
}

/* ========================= */
/* TEXT STRUCTURE            */
/* ========================= */

p {
    max-width: 850px;
    margin-bottom: 14px;
}

/* Clinical observation blocks */
blockquote {
    background: #ececec;
    border-left: 4px solid #555;
    padding: 14px 18px;
    margin: 18px 0;
    font-style: italic;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Section dividers */
hr {
    border: none;
    border-top: 1px solid #888;
    margin: 40px 0;
}

/* ========================= */
/* REDACTED / CLASSIFIED UI  */
/* ========================= */

.redacted {
    background: #111;
    color: #111;
    padding: 0 6px;
    border-radius: 2px;
}

/* “System field labels” */
.label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    background: #e6e6e6;
    border: 1px solid #bbb;
    padding: 2px 6px;
    margin-right: 6px;
}

/* ========================= */
/* PSYCHOLOGICAL UI LAYER    */
/* ========================= */

/* Subtle interface grid overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

/* Soft “monitor glow” vignette */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0.0) 40%,
        rgba(0,0,0,0.08) 100%
    );
    opacity: 0.9;
    z-index: 1;
}

/* Keep content above overlays */
body > * {
    position: relative;
    z-index: 2;
}

/* ========================= */
/* SYSTEM STATUS INDICATORS  */
/* ========================= */

.status {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.75rem;
    border: 1px solid #666;
    background: #f0f0f0;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status.active {
    border-color: #2b6;
    color: #1b5;
}

.status.under-review {
    border-color: #b60;
    color: #a50;
}

/* ========================= */
/* CLEAN, CLINICAL FEEL      */
/* ========================= */

em {
    color: #333;
    font-style: italic;
}

strong {
    letter-spacing: 0.5px;
    color: #111;
}
