/* --- CHAOTICALLY ORGANIZED AI // MASTER PROTOCOL v3.0 --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@400&display=swap');

:root {
    --neon-core: #00ff66; /* Exact match to your Logo */
    --neon-dim: rgba(0, 255, 102, 0.1);
    --neon-glow: rgba(0, 255, 102, 0.4);
    --void-bg: #030303;
    --void-card: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --text-main: #f0f0f0;
    --text-muted: #94a3b8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--void-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    /* Subtle radial gradient to give the void depth */
    background-image: radial-gradient(circle at 50% 0%, #0a140f 0%, var(--void-bg) 70%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px var(--neon-glow);
    margin-bottom: 20px;
}

h2 { font-size: 1.8rem; color: #fff; margin-bottom: 15px; border-left: 3px solid var(--neon-core); padding-left: 15px; }
h3 { font-size: 1.2rem; color: var(--neon-core); margin-bottom: 10px; }
p { color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }
a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
code { font-family: 'JetBrains Mono', monospace; color: var(--neon-core); }

/* --- NAVIGATION --- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(3, 3, 3, 0.85);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.logo img { height: 40px; w: auto; filter: drop-shadow(0 0 5px var(--neon-core)); }

.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--neon-core); text-shadow: 0 0 8px var(--neon-core); }

/* --- GLASS CARDS (The Core Aesthetic) --- */
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }

.glass-card {
    background: var(--void-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--neon-core);
    box-shadow: 0 0 20px var(--neon-dim);
    transform: translateY(-3px);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 1px solid var(--neon-core);
    color: var(--neon-core);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.btn:hover {
    background: var(--neon-core);
    color: #000;
    box-shadow: 0 0 25px var(--neon-glow);
}

.btn-primary { background: var(--neon-core); color: #000; border: none; }
.btn-primary:hover { background: #fff; box-shadow: 0 0 30px #fff; }

/* --- FORMS --- */
input, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    border-radius: 4px;
    transition: 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--neon-core);
    background: var(--neon-dim);
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--glass-border);
    background: #000;
    padding: 60px 0;
    margin-top: 80px;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}

footer a { color: var(--text-muted); margin: 0 10px; }
footer a:hover { color: var(--neon-core); }

/* --- MOBILE --- */
.menu-toggle { display: none; background: none; border: none; color: var(--neon-core); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #050505; padding: 20px; border-bottom: 1px solid var(--neon-core); box-shadow: 0 10px 20px #000; }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    h1 { font-size: 2rem; }
    .nav-container { padding: 0 15px; }
}