/* ========================================= */
/* GLOBAL ANCHOR OVERRIDE (KILL BLUE LINKS)  */
/* ========================================= */
a, .sub-nav a, .site-footer a {
    color: #ffffff !important;         
    text-decoration: none !important;  
    transition: opacity 0.2s ease;     
}

.sub-nav a {
    margin: 0 10px !important;         
    font-family: 'Courier New', monospace; 
}

a:hover {
    opacity: 0.7 !important;
}

/* ========================================= */
/* GLOBAL RESET & WRAPPER                    */
/* ========================================= */
body { background-color: #000000; color: #E5E5E5; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; width: 100%; }
.master-wrapper { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 1200px; padding: 0 20px; }

/* ========================================= */
/* LOGO & HERO                               */
/* ========================================= */
.logo-container { display: block; margin: 80px auto 60px auto; width: 100%; max-width: 400px; padding: 0 20px; }
.brand-logo { width: 100%; filter: grayscale(100%) contrast(200%); mix-blend-mode: screen; }
.hero-container { position: relative; width: 100%; margin-bottom: 15px; }
.hero-image { width: 100%; height: auto; max-height: 70vh; display: block; object-fit: cover; }
.movie-tagline { position: absolute; bottom: 15px; right: 15px; font-family: 'Courier New', monospace; font-size: 8px; color: #E5E5E5; text-transform: uppercase; }

/* ========================================= */
/* NAVIGATION & EMAIL                        */
/* ========================================= */
.title-block { text-align: center; width: 100%; margin-top: 10px; margin-bottom: 155px; }
.premier-text { font-family: 'Courier New', monospace; color: #777; font-size: 18px; letter-spacing: 10px; text-transform: uppercase; margin-bottom: 8px; }
.nav-line { width: 90%; max-width: 450px; border-top: 1px solid #444; margin: 0 auto 11px auto; }
.sub-nav { display: flex; justify-content: center; gap: 40px; font-family: 'Courier New', monospace; font-size: 11px; letter-spacing: 2px; }
.sub-nav a { color: #666; text-decoration: none; }
.sub-nav a:hover { color: #fff; }

.email-container { display: flex; justify-content: center; width: 100%; margin-bottom: 180px; }

/* ========================================= */
/* ARCHIVE & GRID                            */
/* ========================================= */
.deep-archive-container { padding: 40px 20px 100px 20px; background-color: #000; width: 100%; text-align: center; box-sizing: border-box; }
.archive-header-text { font-family: 'Courier New', monospace; color: #AAA; font-size: 20px; letter-spacing: 2px; margin-bottom: 50px; }
.evidence-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.evidence-card { flex: 1 1 300px; width: 100%; max-width: 400px; border: 1px solid #333; padding: 20px; box-sizing: border-box; margin-bottom: 20px; }
.evidence-image { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(100%) contrast(120%); margin-bottom: 15px; }
.evidence-title { font-family: 'Courier New', monospace; color: #ccc; font-size: 14px; margin-bottom: 10px; border-bottom: 1px solid #333; padding-bottom: 5px; }
.evidence-text { font-family: 'Courier New', monospace; color: #777; font-size: 11px; line-height: 1.5; }
.evidence-text strong { display: block; margin-top: 25px; margin-bottom: 5px; font-weight: bold; }

/* ========================================= */
/* FOOTER & RABBIT HOLE (EASTER EGG)         */
/* ========================================= */
.site-footer { width: 100%; border-top: 1px solid #222; margin-top: 120px; padding: 15px 40px 40px 20px; text-align: center; font-family: 'Bodoni Moda', serif; font-size: 14px; color: #ccc; letter-spacing: 0.5rem; display: flex; justify-content: center; align-items: center; position: relative; box-sizing: border-box; }
.rabbit-hole { position: absolute; right: 40px; top: 25px; transform: translateY(-50%); color: #fff; text-decoration: none; opacity: 0; animation: reversePulse 8s ease-in-out infinite; }

/* ========================================= */
/* OUROBOROS NODE (BACKDOOR)                 */
/* ========================================= */
.ouroboros-node { position: absolute; top: 20px; left: 20px; color: #fff; opacity: 0.3; text-decoration: none; font-size: 18px; font-family: 'Courier New', Courier, monospace; transition: opacity 0.5s ease; z-index: 9999; }
.ouroboros-node:hover { opacity: 0.8; }

/* ========================================= */
/* MODALS & ANIMATIONS                       */
/* ========================================= */
.admin-modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.95); z-index: 9999; display: none; justify-content: center; align-items: center; }
.admin-modal-box { border: 1px solid #333; background: #0a0a0a; padding: 40px 60px; text-align: center; }

@keyframes reversePulse { 0%, 100% { opacity: 0; } 50% { opacity: 0.6; } }
@keyframes pulse-glow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ========================================= */
/* MOBILE RESPONSIVENESS                     */
/* ========================================= */

/* TABLET / LARGE PHONE LAYOUT */
@media (max-width: 768px) { 
    .sub-nav { flex-direction: row !important; justify-content: center; gap: 10px; } 
    .evidence-grid { flex-direction: column; align-items: center; } 
    .site-footer { flex-direction: row; font-size: 12px; padding: 0 10px; } 
    .master-wrapper, .container { padding-left: 20px !important; padding-right: 20px !important; } 
}

/* NARROW MOBILE / CELLPHONE LAYOUT */
@media screen and (max-width: 600px) {
    .master-wrapper, .title-block, .email-form { width: 90% !important; margin: 0 auto !important; display: block !important; }
    input[type="email"] { width: 100% !important; box-sizing: border-box; }
    
    /* Mobile Banner Slicer */
    .hero-image { width: 100% !important; height: 220px !important; object-fit: cover !important; object-position: center !important; }
    
    /* Breathing room for hidden links */
    .sub-nav { margin-top: 40px !important; margin-bottom: 40px !important; }
    
    /* Footer void for the Ø */
    .site-footer { padding-bottom: 60px !important; }
    .rabbit-hole { top: auto !important; bottom: 10px !important; right: 20px !important; }
}