/* --- GLOBAL RESET & THEME VARIABLE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b0d10; /* Hitam pekat dasar */
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 80px; /* Jarak pas navbar fixed */
}

/* --- WARNA AKSEN NEON --- */
.text-neon {
    color: #00ffcc !important;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.6);
}

/* --- NAVBAR STYLING --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 80px;
    background-color: #101418;
    border-bottom: 2px solid #00ffcc; /* Garis Neon Cyberpunk */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand i {
    color: #00ffcc;
    filter: drop-shadow(0 0 5px #00ffcc);
}

.nav-brand span {
    color: #00ffcc;
}

/* --- MENU HORIZONTAL (LAPTOP / DEKSTOP) --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a i {
    color: #00ffcc;
}

.nav-links a:hover {
    color: #00ffcc;
    background: rgba(0, 255, 204, 0.05);
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
    transform: translateY(-2px);
}

/* --- TOMBOL HAMBURGER (DEFAULT HIDDEN DI LAPTOP) --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
    background-color: #00ffcc;
    border-radius: 2px;
    box-shadow: 0 0 4px #00ffcc;
}

/* --- HERO SECTION STYLING --- */
.hero {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #131b22 0%, #0b0d10 80%);
    position: relative;
    padding: 40px 20px;
}

.cyber-owl {
    font-size: 4.5rem;
    color: #00ffcc;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.5));
    animation: pulse 3s infinite alternate;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #ffffff;
    line-height: 1.2;
}

.glitch-line {
    height: 3px;
    width: 150px;
    background-color: #00ffcc;
    margin: 20px auto;
    box-shadow: 0 0 10px #00ffcc;
}

.hero p {
    color: #8892b0;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #14191f;
    border: 1px solid #202b36;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #a8b2d1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    color: #00ffcc;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ffcc;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #00ffcc;
}

/* --- CONTENT SECTIONS GENERAL --- */
.content-section {
    padding: 100px 8%;
    border-bottom: 1px solid #161f28;
}

.secondary-bg {
    background-color: #101418;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header h2 i {
    color: #00ffcc;
}

.accent-bar {
    height: 4px;
    width: 60px;
    background-color: #00ffcc;
    margin-top: 10px;
    border-radius: 2px;
    box-shadow: 0 0 5px #00ffcc;
}

.section-desc {
    color: #a8b2d1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
}

/* --- CARD CARDS STYLING (INVITE SECTION) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cyber-card {
    background-color: #14191f;
    border: 1px solid #1f2a36;
    padding: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cyber-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.05);
    transform: translateY(-5px);
}

.cyber-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.cyber-card p {
    color: #a8b2d1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-cyber {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #00ffcc;
    color: #0b0d10;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.btn-cyber:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #a8b2d1;
    font-weight: 500;
}

.feature-list li i {
    color: #00ffcc;
}

/* --- TERMINAL BOX STYLING (WGET SECTION) --- */
.terminal-box {
    background-color: #050709;
    border: 1px solid #202b36;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.terminal-header {
    background-color: #14191f;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #202b36;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.terminal-title {
    color: #6c7d93;
    font-size: 0.85rem;
    margin-left: 10px;
    font-family: monospace;
}

.terminal-body {
    padding: 25px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05rem;
}

.command-line {
    color: #00ffcc;
    word-break: break-all;
}

.user-prompt {
    color: #ff5f56;
    font-weight: bold;
    margin-right: 10px;
}

/* --- STATUS SYSTEM STYLING --- */
.status-board {
    background-color: #14191f;
    border: 1px solid #1f2a36;
    border-radius: 8px;
    padding: 35px;
}

.status-main {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid #202b36;
    padding-bottom: 25px;
}

.pulse-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.status-pulse {
    width: 16px;
    height: 16px;
    background-color: #00ffcc;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffcc;
    animation: ringPulse 2s infinite ease-out;
}

.status-main h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.status-main p {
    color: #8892b0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-card {
    background-color: #0b0d10;
    border: 1px solid #202b36;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.metric-title {
    display: block;
    font-size: 0.9rem;
    color: #6c7d93;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* --- FOOTER STYLING --- */
.cyber-footer {
    background-color: #07090b;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #101418;
    color: #6c7d93;
    font-size: 0.9rem;
}

.cyber-footer p {
    margin-bottom: 8px;
}

.credits {
    color: #00ffcc;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- ANIMASI DEFAULT --- */
@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(0,255,204,0.4)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(0,255,204,0.7)); }
}

@keyframes ringPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
}

/* ==========================================================================
   RESPONSIVE LAYOUT UNTUK HP (MOBILE LAYOUT)
   ========================================================================== */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Jarak atas disesuaikan ukuran mobile navbar */
    }

    .navbar {
        height: 70px;
        padding: 0 5%;
    }

    .hamburger {
        display: block; /* Tombol hamburger muncul di HP */
    }

    /* Efek Animasi Hamburger berubah jadi Silang (X) */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Menu Dropdown yang tersembunyi di kiri layar HP */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        background-color: #101418;
        width: 100%;
        height: calc(100vh - 70px); /* Full sisa layar HP */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid #1f2a36;
        padding: 40px 0;
        box-shadow: inset 0 10px 20px rgba(0,0,0,0.5);
    }

    /* Kelas Aktif pas Hamburger di-klik (Menu nge-slide masuk) */
    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-links a {
        font-size: 1.4rem;
        width: 80%;
        justify-content: center;
        padding: 15px 0;
        border: 1px solid transparent;
    }
    
    .nav-links a:hover {
        border-bottom: 1px solid #00ffcc;
        background: rgba(0, 255, 204, 0.02);
    }

    /* Penyesuaian Layout Hero & Konten di HP */
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }

    .content-section {
        padding: 60px 5%;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .status-main {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

