/* THE WHITE VOID - TRUE CRIME THEME (UNDER CONSTRUCTION) */
:root {
    --crime-red: #D90429;
    --evidence-white: #f0f0f0;
    --bg-dark: #050505;
}

/* BASE SETTINGS */
body, html {
    margin: 0; 
    padding: 0;
    background-color: var(--bg-dark);
    /* Subtle Graph Paper Effect for "Detective" feel */
    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: 30px 30px; 
    font-family: 'Lato', sans-serif;
    color: #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* HERO SECTION */
.hero-section {
    text-align: center;
    padding: 80px 20px 40px;
    border-bottom: 1px solid #333;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
}

.crime-logo {
    font-family: 'Courier Prime', monospace; /* Typewriter Look */
    font-size: 3rem;
    color: #fff;
    letter-spacing: -2px;
    text-transform: uppercase;
    border: 2px solid #fff;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 10px;
    background: #000;
}

.crime-tagline {
    font-family: 'Lato', sans-serif;
    color: var(--crime-red);
    letter-spacing: 3px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* CONSTRUCTION ZONE (Evidence Lockup) */
.construction-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.typewriter-text {
    font-family: 'Courier Prime', monospace;
    color: #888;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.redacted {
    background-color: #000;
    color: #000; /* Hide text */
    padding: 0 5px;
    display: inline-block;
}

.redacted::selection {
    background: transparent; /* Prevent highlighting to read */
}

.status-box {
    border: 1px dashed var(--crime-red);
    padding: 20px 40px;
    margin-top: 30px;
    display: inline-block;
    background: rgba(217, 4, 41, 0.05);
}

.status-header {
    font-family: 'Cinzel', serif;
    color: var(--crime-red);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
    .crime-logo { font-size: 2rem; }
    .hero-section { padding: 60px 15px 30px; }
    .typewriter-text { font-size: 0.9rem; }
}