/* ===============================
   FBIT – FEDERAL AGENCY STYLE
   =============================== */

body {
    margin: 0;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    background-color: #000;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #f5f5f5;
    overflow-x: hidden;
}

/* ===============================
   HEADER / EMBLEM
   =============================== */

header {
    text-align: center;
    padding: 60px 20px;
    border-bottom: 3px solid #f5c400;
    background: radial-gradient(circle at top, #111 0%, #000 70%);
}

.logo {
    width: 170px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(245,196,0,0.5));
}

h1 {
    font-size: 3.2rem;
    letter-spacing: 6px;
    margin: 0;
    color: #f5c400;
    text-transform: uppercase;
}

.subtitle {
    font-size: 0.95rem;
    color: #aaa;
    letter-spacing: 2px;
}

/* ===============================
   CLASSIFIED BADGE
   =============================== */

.classified {
    margin: 30px auto;
    text-align: center;
    color: #ff3b3b;
    font-weight: bold;
    letter-spacing: 4px;
    border: 2px dashed #ff3b3b;
    padding: 12px 22px;
    width: fit-content;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* ===============================
   ACCESS GRANTED EFFECT
   =============================== */

.access {
    text-align: center;
    color: #00ff66;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: bold;
    animation: scan 2s ease-out;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes scan {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   MAIN CONTENT / CASE FILE
   =============================== */

.content {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 30px;
}

.case-file {
    background: rgba(15,15,15,0.95);
    border: 2px solid #222;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
    position: relative;
}

.case-file::before {
    content: "CASE FILE: FBIT-IT-OPS";
    position: absolute;
    top: -14px;
    left: 20px;
    background: #000;
    color: #f5c400;
    padding: 2px 10px;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* ===============================
   HEADINGS
   =============================== */

h2 {
    color: #f5c400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 5px solid #f5c400;
    padding-left: 12px;
    margin-top: 40px;
    transition: text-shadow 0.3s;
}

h2:hover {
    text-shadow: 0 0 10px rgba(245,196,0,0.6);
}

/* ===============================
   LISTS – OPERATION LOG
   =============================== */

ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

ul li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    letter-spacing: 1px;
}

ul li::before {
    content: "▶ ";
    color: #f5c400;
}

/* ===============================
   PARAGRAPHS
   =============================== */

p {
    line-height: 1.6;
    color: #ddd;
}

/* ===============================
   FOOTER
   =============================== */

footer {
    text-align: center;
    padding: 25px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.85rem;
}

/* ===============================
   SCANLINE OVERLAY
   =============================== */

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.015),
        rgba(255,255,255,0.015) 1px,
        transparent 2px,
        transparent 4px
    );
    z-index: 9999;
}