:root {
    --bg: #000000;
    --fg: #ffffff;
    --accent: #111111;
    --muted: #444444;
    --highlight: #00ff41;
    --font-mono: 'Courier New', Courier, monospace;
    --nav-height: 70px;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg) !important;
    color: var(--fg) !important;
    font-family: var(--font-mono);
    margin: 0; padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    display: flex; flex-direction: column;
    min-height: 100vh;
    font-weight: 900; /* FORCE HEAVY WEIGHT SYSTEM-WIDE */
}

/* --- SYSTEM SHELL: STICKY HEADER --- */
nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 6vw;
    border-bottom: 2px solid var(--accent);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
}

.main-container {
    width: 100%;
    padding-top: var(--nav-height); 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
}

/* --- LOGO ONLY HEADER (NO BOX) --- */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-logo:hover { transform: scale(1.05); }

.nav-logo img {
    height: 42px; /* INCREASED VISIBILITY */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.2));
}

nav a {
    color: var(--fg) !important; /* SWITCHED TO WHITE FOR VISIBILITY */
    text-decoration: none;
    font-size: clamp(0.65rem, 2vw, 0.8rem); 
    transition: 0.3s ease;
    letter-spacing: 2px;
    font-weight: 900;
}

nav a:hover { color: var(--highlight) !important; }

/* --- RESPONSIVE VISIBILITY --- */
.desktop-only { display: flex !important; gap: 30px; align-items: center; }
.mobile-only { display: none !important; }

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    
    .main-container { align-items: flex-start; }
}

/* --- TACTICAL HAMBURGER (THICKER BARS) --- */
#menu-toggle {
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
}

#menu-toggle .bar {
    width: 28px; 
    height: 2px; /* THICKER FOR HEAVY WEIGHT THEME */
    background: #fff;
    transition: 0.3s ease-in-out;
}

#menu-toggle.active .bar:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
#menu-toggle.active .bar:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* --- MOBILE DRAWER --- */
#mobile-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: #000;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 40px;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 10000;
}

#mobile-drawer.open { right: 0; }
#mobile-drawer a { font-size: 1.5rem; color: #fff; text-decoration: none; letter-spacing: 5px; font-weight: 900; }

/* --- INPUTS & LABELS (HEAVY WEIGHT) --- */
input, select, textarea {
    width: 100%;
    background: #000 !important;
    border: 2px solid #333 !important; /* THICKER BORDER */
    padding: 20px !important;
    color: #ffffff !important;
    font-family: var(--font-mono);
    outline: none;
    margin-bottom: 4vh;
    border-radius: 0 !important;
    font-size: 1rem;
    font-weight: 700;
}

input:focus, textarea:focus { border-color: var(--highlight) !important; box-shadow: 0 0 15px rgba(0, 255, 65, 0.15); }

label {
    display: block;
    font-size: 0.75rem;
    color: #ffffff !important;
    margin-bottom: 2vh;
    letter-spacing: 3px;
    font-weight: 900;
}

/* --- FOOTER SIMPLIFIED --- */
footer {
    width: 100%;
    padding: 5vh 6vw;
    border-top: 2px solid var(--accent);
    text-align: center;
    background: #000;
    margin-top: auto;
}

.footer-brand {
    font-size: 0.6rem;
    color: #222;
    letter-spacing: 5px;
    font-weight: 900;
}

/* --- OVERLAY & ANIMATION --- */
#static-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9998; opacity: 0.04;
    background: url('https://upload.wikimedia.org/wikipedia/commons/7/76/White-noise-mv2-1080p.png');
}

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