:root {
    --bg-main: #050505;
    --bg-card: #0a0a0a;
    --accent-green: #00ff41; /* The intense neon green from your video */
    --accent-hover: #00cc33;
    --text-main: #ffffff;
    --text-muted: #888888;
    --border-color: #1a1a1a;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

body.cyber-body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    margin: 0;
    overflow-x: hidden;
}

/* --- Navigation --- */
.cyber-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left { display: flex; align-items: center; gap: 15px; }
.menu-btn { background: none; border: none; color: var(--text-main); font-size: 20px; cursor: pointer; }
.cyber-logo { font-family: var(--font-mono); font-weight: 700; color: var(--accent-green); font-size: 18px; letter-spacing: 1px;}

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-link { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: 0.3s; }
.nav-link:hover { color: var(--text-main); }

.btn-neon { background: var(--accent-green); color: #000; padding: 8px 20px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
.btn-neon:hover { box-shadow: 0 0 15px rgba(0, 255, 65, 0.4); }

/* --- Hero Section --- */
.hero-section {
    text-align: center;
    padding: 80px 20px 40px;
    background: radial-gradient(circle at center, #0a150c 0%, var(--bg-main) 60%);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.2);
    color: var(--accent-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    margin-bottom: 30px;
}

.status-dot { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; box-shadow: 0 0 8px var(--accent-green); }

.hero-title { font-size: 64px; font-weight: 800; margin: 0 0 20px; letter-spacing: -1px; line-height: 1.1; }
.text-glow { color: var(--accent-green); text-shadow: 0 0 30px rgba(0, 255, 65, 0.3); }
.hero-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; font-size: 16px; line-height: 1.6; }

.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-neon-large { background: var(--accent-green); color: #000; padding: 15px 30px; border-radius: 4px; text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-neon-large:hover { background: var(--accent-hover); box-shadow: 0 0 20px rgba(0, 255, 65, 0.4); }
.btn-outline-large { background: transparent; border: 1px solid var(--border-color); color: var(--text-main); padding: 15px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-outline-large:hover { border-color: var(--text-muted); }

/* --- Stats Row --- */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 10%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
    text-align: center;
}

.stat-box h3 { font-size: 28px; margin: 15px 0 5px; font-family: var(--font-mono); }
.stat-box p { color: var(--text-muted); font-size: 12px; font-weight: 600; letter-spacing: 1px; margin: 0; }
.stat-icon { color: var(--accent-green); font-size: 20px; opacity: 0.8; }

/* --- Core Modules --- */
.modules-section { padding: 80px 10%; }
.section-title { text-align: center; font-family: var(--font-mono); font-size: 20px; margin-bottom: 50px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.accent-line { height: 1px; width: 40px; background: var(--border-color); }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: 0.3s;
}

.module-card:hover { border-color: var(--accent-green); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 255, 65, 0.05); }
.module-icon { background: rgba(0, 255, 65, 0.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--accent-green); font-size: 18px; margin-bottom: 20px; }
.module-card h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: 0.5px; }
.module-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin: 0; }
