:root {
    --primary: #2d6284;
    --primary-dark: #1a3a4f;
    --bg-dark: #0b0e14;
    --accent-cyan: #78dce8;
    --accent-amber: #e2a03f;
    --text-main: #e6edf3;
    --text-dim: #8b949e;
    --border: rgba(45, 98, 132, 0.5);
}

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

body {
    background-color: #1a1f26;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.dossier-container {
    width: 1280px;
    height: 720px;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary);
    position: relative;
    display: grid;
    grid-template-columns: 380px 1fr;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0,0,0,0.9);
}

/* STATIC BACKGROUND ELEMENTS */
.dossier-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, var(--primary) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.05;
    pointer-events: none;
}

/* COLUMN 1: IDENTIFICATION */
.col-id {
    background: rgba(45, 98, 132, 0.05);
    border-right: 1px solid var(--border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-frame {
    width: 100%;
    height: 380px;
    border: 1px solid var(--primary);
    position: relative;
    background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-frame i {
    font-size: 160px;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary));
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(45, 98, 132, 0.8);
    color: white;
    font-family: 'Roboto Mono';
    font-size: 12px;
    text-align: center;
    font-weight: bold;
}

.bio-data {
    font-family: 'Roboto Mono';
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-dim);
}

.bio-data b { color: var(--accent-cyan); }

/* COLUMN 2: TECHNICAL DATA */
.col-main {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.header-block {
    border-bottom: 4px double var(--primary);
    padding-bottom: 20px;
}

.header-block h1 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text-main);
    line-height: 1;
}

.header-block .sub-tag {
    font-family: 'Roboto Mono';
    color: var(--accent-amber);
    font-size: 18px;
    margin-top: 10px;
}

.section-title {
    font-family: 'Roboto Mono';
    font-size: 14px;
    color: var(--accent-cyan);
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.role-card {
    background: rgba(45, 98, 132, 0.1);
    border: 1px solid var(--border);
    padding: 20px;
}

.role-card h3 {
    font-family: 'Roboto Mono';
    color: #fff;
}

.capability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cap-item {
    font-family: 'Roboto Mono';
    font-size: 12px;
    background: #0d1117;
    padding: 8px 12px;
    border-left: 3px solid var(--accent-cyan);
}

/* COLUMN 3: RIGHT PANEL (Dossier Metadata) */
.col-stats {
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px solid var(--border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-group h4 {
    font-family: 'Roboto Mono';
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 5px;
}

.redacted-block {
    font-family: 'Roboto Mono';
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.redacted-text {
    background: #333;
    color: #333;
    padding: 0 4px;
}

.warning-box {
    border: 1px dashed var(--accent-amber);
    padding: 15px;
    text-align: justify;
    color: var(--accent-amber);
    font-size: 12px;
    font-family: 'Roboto Mono';
}

.clearance-stamp {
    border: 2px solid var(--accent-amber);
    color: var(--accent-amber);
    font-family: 'Roboto Mono';
    font-weight: bold;
    text-align: center;
    padding: 10px;
    transform: rotate(-5deg);
    opacity: 0.8;
    margin-top: auto;
}

.page-list > a {
    padding: 20px;
    color: var(--accent-cyan);
    text-decoration: none;
    text-align: left;
    font-family: 'Roboto Mono';
    font-size: 14px;
    font-weight: bold;
}

.center-div { 
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.page-list > a:hover {
    color: var(--primary);
}
