/* --- NEURALNET :: DISPATCH_STYLE_SHEET_V2 --- */
/* --- FONT & VARIABLE DEFINITIONS --- */
@import url('https://fonts.googleapis.com/css2?family=VT323&family=Share+Tech+Mono&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-color: #00ff41;
    --accent-color: #4aff85;
    --highlight-color: #ffffff;
    --border-color: #005a17;
    --redacted-color: #ff4141;
    --glow-color: rgba(0, 255, 65, 0.2);
    --scanline-alpha: rgba(0, 0, 0, 0.3);
    --font-primary: 'VT323', monospace;
    --font-secondary: 'Share Tech Mono', monospace;
}

/* --- ANIMATIONS --- */
@keyframes text-flicker {
    0%, 100% { text-shadow: 0 0 2px var(--glow-color); opacity: 1; }
    49% { text-shadow: 0 0 2px var(--glow-color); opacity: 1; }
    50% { text-shadow: none; opacity: 0.98; }
    51% { text-shadow: 0 0 2px var(--glow-color); opacity: 1; }
}
@keyframes gentle-flicker {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* --- BASE STYLES --- */
body {
    background-color: #000;
    background-image: url('background-texture.png'); 
    background-repeat: repeat;
    color: var(--text-color);
    font-family: var(--font-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    animation: text-flicker 20s linear infinite;
}

body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, var(--scanline-alpha), var(--scanline-alpha) 1px, transparent 1px, transparent 2px);
    pointer-events: none;
    z-index: 10000;
}

/* --- INFOGRAPHIC CONTAINER (3-COLUMN) --- */
.infographic-container {
    width: 1400px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(20, 20, 20, 0.85));
    backdrop-filter: blur(5px);
    padding: 0;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.15), inset 0 0 10px rgba(0, 255, 65, 0.1);
    display: grid;
    grid-template-areas:
        "header header header"
        "col1 col2 col3"
        "footer footer footer";
    grid-template-rows: auto 1fr auto;
    grid-gap: 2px;
    background-color: var(--border-color);
}

/* --- HEADER (SHARED BY BOTH) --- */
.header {
    grid-area: header;
    padding: 20px 30px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    background-color: #111;
    position: relative;
}
.header h1 {
    font-family: var(--font-primary);
    color: var(--highlight-color);
    font-size: 84px;
    margin: 0;
    letter-spacing: 4px;
    text-shadow: 0 0 15px var(--accent-color);
    animation: gentle-flicker 3s ease-in-out infinite;
}
.header h2 {
    font-family: var(--font-primary);
    color: var(--text-color);
    margin: 0;
    font-size: 24px;
}
.header p {
    color: var(--accent-color);
    font-style: italic;
    opacity: 0.8;
}
.header::before, .header::after {
    content: "SYSTEM_DISPATCH // CLASSIFICATION: ONYX";
    position: absolute;
    top: 5px;
    font-family: var(--font-secondary);
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.4;
}
.header::before { left: 10px; }
.header::after { content: "TIMESTAMP: " "2025-06-28_14:00:00Z"; right: 10px; }

/* --- INFOGRAPHIC COLUMNS --- */
.column {
    background-color: #1a1a1a;
    padding: 25px;
    position: relative;
    overflow: hidden;
}
.column h3 {
    font-family: var(--font-primary);
    color: var(--highlight-color);
    font-size: 32px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px var(--glow-color);
}
.column::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 250px;
    height: 250px;
    right: 5px;
    bottom: 5px;
    background-size: 250px 250px;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.15;
    pointer-events: none;
}
#col1::after { background-image: url('icon1_distrust.png'); }
#col2::after { background-image: url('icon2_tools.png'); }
#col3::after { background-image: url('icon3_globe.png'); }

.column ul { list-style-type: none; padding: 0; }
.column li {
    margin-bottom: 20px;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}
.column li::before {
    content: '>>';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    opacity: 0.6;
    font-weight: bold;
}
.column strong {
    color: var(--highlight-color);
    background-color: var(--border-color);
    padding: 2px 4px;
    font-weight: normal;
}

/* --- FOOTER (SHARED BY BOTH) --- */
.footer {
    grid-area: footer;
    border-top: 2px solid var(--border-color);
    padding: 10px;
    font-size: 14px;
    text-align: center;
    background-color: #111;
}
.footer p { margin: 0; color: var(--text-color); opacity: 0.7; }
.footer strong { color: var(--redacted-color); font-weight: bold; }


/* --- REPORT PAGE STYLES (NEW) --- */
.report-container {
    width: 900px; /* More readable width for long text */
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(20, 20, 20, 0.85));
    backdrop-filter: blur(5px);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.15), inset 0 0 10px rgba(0, 255, 65, 0.1);
}

.report-body {
    padding: 10px 40px 40px 40px;
    background-color: #1a1a1a;
}

.report-body section {
    margin-bottom: 40px;
}

.report-body h3 {
    font-family: var(--font-primary);
    color: var(--highlight-color);
    font-size: 36px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px var(--glow-color);
}

.report-body p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 1em;
}

.report-body blockquote {
    border-left: 3px solid var(--accent-color);
    margin-left: 20px;
    padding-left: 20px;
    font-style: italic;
    color: var(--accent-color);
    font-size: 20px;
}

.report-body ul {
    list-style-type: none;
    padding-left: 20px;
}

.report-body li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.report-body li::before {
    content: '>>';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    opacity: 0.6;
}

.report-body strong {
    color: var(--highlight-color);
    font-weight: bold;
}

/* Remove grid-area from footer when not in infographic */
.report-container .footer {
    grid-area: unset;
}