/* --- A GUY AND HIS AI: MASTER STYLESHEET --- */

/* 1. VARIABLES */
:root {
    --bg-void: #050505;
    --bg-panel: #0a0a0a;
    --bg-card: #111111;
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --neon-green: #00FF00; /* System/Success */
    --neon-red: #FF0000;   /* Brands */
    --neon-blue: #00FFFF;  /* Loadouts */
    --neon-amber: #FFBF00; /* Intel/Command */
    --border-dim: #333;
    --font-mono: 'Courier New', monospace;
    --font-sans: 'Segoe UI', system-ui, sans-serif;
}

/* 2. BASE RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-void); color: var(--text-main); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: var(--text-main); transition: 0.3s; }
a:hover { color: var(--neon-green); text-shadow: 0 0 8px rgba(0,255,0,0.4); }

/* 3. UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.status-dot { height: 10px; width: 10px; background-color: var(--neon-green); border-radius: 50%; display: inline-block; margin-right: 8px; box-shadow: 0 0 10px var(--neon-green); }
.status-dot.offline { background-color: var(--neon-red); box-shadow: 0 0 10px var(--neon-red); }

/* 4. HEADER & NAV */
.system-header { width: 100%; height: 220px; background: url('../img/Logo.Eyes.png') no-repeat center center; background-size: cover; position: relative; border-bottom: 2px solid var(--neon-green); }
/* Note: For the index page, we might need an override for the image path if not using the ../ structure */
.index-header { background-image: url('../img/Logo.Eyes.png'); }

.scanline-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3) 1px, transparent 1px, transparent 3px); pointer-events: none; }

nav { background: var(--bg-panel); border-bottom: 1px solid var(--border-dim); padding: 15px 0; font-family: var(--font-mono); text-transform: uppercase; font-size: 0.85rem; position: sticky; top: 0; z-index: 100; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand { font-weight: bold; letter-spacing: 2px; }
.nav-links { display: flex; gap: 20px; }
@media (max-width: 768px) { .nav-links { gap: 10px; font-size: 0.7rem; } }

/* 5. COMPONENTS */
.hero { padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border-dim); }
.hero h1 { font-family: var(--font-mono); font-size: 3rem; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero .highlight { color: var(--neon-green); }

.section-header { display: flex; justify-content: space-between; align-items: center; margin: 60px 0 30px 0; border-left: 4px solid var(--neon-green); padding-left: 20px; }
.section-title { font-family: var(--font-mono); font-size: 1.5rem; text-transform: uppercase; }

/* 6. GRID & CLICKABLE CARDS */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 60px; }

/* Make the whole card an anchor tag */
a.card-link { display: block; text-decoration: none; color: inherit; transition: 0.3s; height: 100%; }
.card { background: var(--bg-card); border: 1px solid var(--border-dim); padding: 25px; height: 100%; position: relative; transition: 0.3s; }
a.card-link:hover .card { transform: translateY(-5px); }

/* Card Colors */
.card h3 { font-family: var(--font-mono); margin-bottom: 10px; font-size: 1.2rem; display: flex; align-items: center; justify-content: space-between;}
.tag { font-family: var(--font-mono); font-size: 0.7rem; padding: 2px 6px; border: 1px solid var(--border-dim); text-transform: uppercase; }
.btn-fake { display: inline-block; font-family: var(--font-mono); font-size: 0.8rem; border-bottom: 1px solid transparent; margin-top: 15px; }

/* Themes */
.theme-brand .card { border-top: 3px solid var(--neon-red); }
.theme-brand:hover .card { border-color: var(--neon-red); box-shadow: 0 0 15px rgba(255,0,0,0.2); }
.theme-brand .btn-fake { color: var(--neon-red); }

.theme-loadout .card { border-top: 3px solid var(--neon-blue); }
.theme-loadout:hover .card { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(0,255,255,0.2); }
.theme-loadout .btn-fake { color: var(--neon-blue); }

.theme-intel .card { border-top: 3px solid var(--neon-amber); }
.theme-intel:hover .card { border-color: var(--neon-amber); box-shadow: 0 0 15px rgba(255,191,0,0.2); }
.theme-intel .btn-fake { color: var(--neon-amber); }

/* 7. LATEST TRANSMISSION (BLOG) */
.transmission-box { border: 1px solid var(--text-muted); background: rgba(255,255,255,0.03); padding: 30px; margin-bottom: 60px; border-left: 4px solid var(--text-main); }
.transmission-meta { font-family: var(--font-mono); color: var(--neon-green); font-size: 0.8rem; margin-bottom: 10px; }
.transmission-box h2 { font-size: 1.8rem; margin-bottom: 15px; }
.transmission-box p { color: #ccc; margin-bottom: 20px; }

footer { text-align: center; padding: 40px; border-top: 1px solid var(--border-dim); color: var(--text-muted); font-family: var(--font-mono); font-size: 0.8rem; }