:root {
    --primary-red: #cc0000;
    --neon-green: #00ff41;
    --dark-bg: #0a0a0a;
    --card-bg: #161616;
    --text-gray: #cccccc;
    --header-font: 'Oswald', sans-serif;
    --body-font: 'Rajdhani', sans-serif;
}

* { box-sizing: border-box; }
body {
    margin: 0; padding: 0;
    background-color: var(--dark-bg);
    color: white;
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
.main-nav {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--primary-red);
    padding: 1rem 0;
    position: sticky; top: 0; z-index: 1000;
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.nav-brand { font-family: var(--header-font); font-size: 1.5rem; letter-spacing: 2px; font-weight: bold; }
.nav-links a {
    color: white; text-decoration: none; margin-left: 20px;
    font-weight: bold; text-transform: uppercase; transition: 0.3s; font-size: 0.85rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-red); }

/* --- UI ELEMENTS --- */
.container { max-width: 1100px; margin: 60px auto; padding: 0 20px; }
.intel-card {
    background: linear-gradient(to right, #161616, #0f0f0f);
    border: 1px solid #222; border-left: 4px solid var(--primary-red);
    padding: 25px; margin-bottom: 30px; position: relative;
}
.card-id { font-family: monospace; color: var(--primary-red); font-size: 0.8rem; letter-spacing: 1px; }
.card-divider { height: 1px; border: none; background: linear-gradient(to right, var(--primary-red), transparent); margin: 15px 0; opacity: 0.5; }
.section-divider { border: 0; height: 1px; margin: 60px 0; background-image: linear-gradient(to right, transparent, var(--primary-red), transparent); }

/* --- HEROES --- */
.hero { height: 65vh; background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('hero-bg.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; }
.small-hero { height: 40vh !important; }
.glitch-text { font-family: var(--header-font); font-size: clamp(2.5rem, 8vw, 5rem); margin: 0; letter-spacing: 5px; text-shadow: 3px 3px var(--primary-red); }
.hero-logo { width: 220px; margin-bottom: 10px; filter: drop-shadow(0 0 10px rgba(204,0,0,0.5)); }

/* --- BUTTONS --- */
.btn-secondary { display: inline-block; padding: 12px 30px; border: 1px solid var(--primary-red); color: white; text-decoration: none; font-weight: bold; background: rgba(204, 0, 0, 0.1); transition: 0.3s; font-family: var(--header-font); letter-spacing: 1px; }
.btn-secondary:hover { background: var(--primary-red); box-shadow: 0 0 15px var(--primary-red); }

/* --- GRIDS --- */
#intel-grid, .roster-grid, .media-grid { display: grid; grid-template-columns: repeat(auto