   /* --- CUSTOM STYLING: VOX x F1 x PIXEL --- */
        body {
            background-color: var(--bg-dark);
            font-family: 'Inter', sans-serif;
            color: var(--white);
            /* Background Grid Teknis F1 */
            background-image: 
                linear-gradient(rgba(14, 17, 22, 0.95), rgba(14, 17, 22, 0.95)),
                url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            min-height: 100vh;
        }

        .container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 5%;
        }

        /* HEADER SECTION (F1 TELEMETRY STYLE) */
        .page-header {
            text-align: center;
            margin-bottom: 70px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            padding-bottom: 30px;
            position: relative;
        }

        /* Hiasan Pixel di ujung garis header */
        .page-header::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 50%;
            transform: translateX(-50%);
            width: 10px; height: 10px;
            background: var(--gold);
            box-shadow: 15px 0 0 var(--gold), -15px 0 0 var(--gold); /* Pixel dots */
        }

        .main-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            margin: 0;
            letter-spacing: -2px;
            color: var(--white);
            text-transform: uppercase;
        }

        .main-title .highlight {
            color: var(--gold);
            display: inline-block;
            /* Efek Glitch Dikit */
            text-shadow: 2px 2px 0px #ff0000; 
        }

        .sub-title {
            font-family: 'Share Tech Mono', monospace;
            color: rgba(255,255,255,0.6);
            font-size: 1rem;
            margin-top: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .f1-status {
            color: #4ade80; /* Hijau F1 */
            font-weight: bold;
        }

        /* SECTION LABELS (VOX BAR) */
        .section-heading {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .heading-text {
            font-family: 'Share Tech Mono', monospace;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
            background: rgba(197, 160, 89, 0.1);
            padding: 5px 10px;
            border-left: 4px solid var(--gold); /* Vox Bar */
        }

        .heading-line {
            flex: 1;
            height: 1px;
            background: rgba(255,255,255,0.2);
            /* Putus-putus ala F1 */
            background-image: linear-gradient(to right, rgba(255,255,255,0.5) 50%, transparent 50%);
            background-size: 10px 100%; 
        }

        /* 1. CONTACT CARDS (DESIGN: DRIVER PROFILE CARD) */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .staff-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 0; /* Reset padding */
            position: relative;
            transition: all 0.3s ease;
            /* Sudut terpotong ala Sci-Fi / Pixel */
            clip-path: polygon(
                0 0, 
                100% 0, 
                100% calc(100% - 20px), 
                calc(100% - 20px) 100%, 
                0 100%
            );
        }

        .staff-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            background: rgba(255,255,255,0.05);
        }

        /* Header Kartu (Warna Gelap) */
        .card-top {
            background: rgba(0,0,0,0.3);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .staff-initial {
            width: 50px; height: 50px;
            background: var(--gold);
            color: #000;
            display: flex; justify-content: center; align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem; font-weight: 900;
            /* Pixel Shadow */
            box-shadow: 4px 4px 0px rgba(255,255,255,0.2); 
        }
        
        /* Khusus Developer */
        .dev-initial { background: #fff; box-shadow: 4px 4px 0px #555; }

        .role-tag {
            font-family: 'Share Tech Mono', monospace;
            font-size: 0.7rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 4px 8px;
            border-radius: 4px;
        }

        /* Body Kartu */
        .card-body {
            padding: 25px 20px;
        }

        .staff-info h3 {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--white);
            text-transform: uppercase;
            line-height: 1.2;
        }

        .staff-role-text {
            display: block;
            margin-top: 5px;
            font-family: 'Share Tech Mono', monospace;
            color: var(--gold);
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .wa-btn {
            display: block;
            margin-top: 20px;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 10px;
            text-align: center;
            text-decoration: none;
            font-family: 'Press Start 2P', cursive; /* Font Pixel */
            font-size: 0.6rem;
            transition: 0.2s;
            text-transform: uppercase;
            line-height: 1.5;
        }

        .wa-btn:hover {
            background: var(--gold);
            color: #000;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }

        /* 2. FORMULIR (THE VISIBILITY FIX & STYLE) */
        .form-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            border: 1px solid rgba(255,255,255,0.1);
            background: #0e1116;
            margin-bottom: 80px;
        }

        .form-sidebar {
            background: rgba(197, 160, 89, 0.05);
            padding: 40px;
            border-right: 1px solid rgba(255,255,255,0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

/* CONSOLE MONITOR STYLE */
.tech-console {
    margin-top: 30px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
}

.console-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

/* Warna Status */
.status-ok { color: #4ade80; } /* Hijau */
.status-active { color: #facc15; } /* Kuning pas ngetik */
.status-busy { color: #f87171; } /* Merah */

/* Animasi kedip untuk Session Time */
.blink-colon {
    animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

        .form-content { padding: 40px; }

        .input-group { margin-bottom: 25px; }

        .input-label {
            display: block;
            font-family: 'Share Tech Mono', monospace;
            font-size: 0.8rem;
            color: var(--gold);
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        /* FIX VISIBILITAS DISINI */
        .styled-input, .styled-select, .styled-textarea {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 15px;
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            border-radius: 0; /* Sudut tajam ala F1 */
            transition: 0.3s;
        }

        /* FIX WARNA OPTION BIAR GAK PUTIH DIATAS PUTIH */
        .styled-select option {
            background-color: #000; /* Background hitam */
            color: #fff; /* Teks putih */
            padding: 10px;
        }

        .styled-input:focus, .styled-select:focus, .styled-textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(197, 160, 89, 0.1);
        }

        .send-btn {
            background: var(--gold);
            color: #000;
            border: none;
            padding: 18px 30px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            width: 100%;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
            transition: 0.3s;
        }
        .send-btn:hover {
            background: var(--white);
            transform: scale(1.02);
        }

        /* FAQ (Tech Style) */
        .faq-item {
            border: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 10px;
            background: rgba(255,255,255,0.02);
        }
        .faq-item details { padding: 20px; cursor: pointer; }
        .faq-item summary {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            list-style: none;
            display: flex; justify-content: space-between;
        }
        .faq-item summary::after { content: '▼'; font-size: 0.8rem; color: var(--gold); }
        .faq-item details[open] summary::after { content: '▲'; }
        
        .faq-answer {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed rgba(255,255,255,0.1);
            font-family: 'Share Tech Mono', monospace;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .form-container { grid-template-columns: 1fr; }
            .form-sidebar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .main-title { font-size: 2.5rem; }
        }

        /* 1. Global Box-Sizing Fix (Penting agar padding tidak merusak lebar) */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Container Adjustment */
.container-wrapper {
    width: 100%;
    padding: 40px 5%; /* Padding lebih kecil untuk mobile */
    overflow-x: hidden; /* Mencegah scroll horizontal */
}

/* 3. Header & Navigation Fix */
@media (max-width: 768px) {
    .page-header {
        padding-top: 40px; /* Memberi ruang untuk tombol BACK */
    }
    
    a[href="../index.html"] {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        display: inline-block;
        margin-bottom: 20px;
    }

    .main-title {
        font-size: 2rem !important; /* Paksa ukuran font lebih kecil */
        line-height: 1.1;
    }
}

/* 4. Team Grid Fix (Kartu Personel) */
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr !important; /* Paksa 1 kolom saja */
        gap: 20px;
    }

    .staff-card {
        /* Memastikan clip-path tidak memotong konten terlalu dalam di layar kecil */
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    }
}

/* 5. Form Container Fix (Direct Message) */
@media (max-width: 900px) {
    .form-container {
        grid-template-columns: 1fr !important; /* Stack sidebar ke atas form */
    }

    .form-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 30px 20px;
    }

    .form-content {
        padding: 30px 20px;
    }
}

/* 6. Form Element Fix (Mencegah input meluber) */
.styled-input, .styled-select, .styled-textarea {
    max-width: 100%; /* Pastikan tidak lebih lebar dari parent */
}

/* 7. Footer & FAQ Optimization */
@media (max-width: 480px) {
    .faq-item summary {
        font-size: 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links-compact {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links-compact .slash {
        display: none;
    }

    .wa-btn {
        font-size: 0.5rem !important; 
    }
}

#contact-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #060709; /* Darker dark */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* --- FILM OVERLAYS --- */
.comms-static-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.1;
    mix-blend-mode: overlay;
    z-index: 3;
}

.matrix-grid-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    opacity: 0.05; /* Barely there */
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    z-index: 1;
}

.matrix-column {
    width: 2px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, #C5A059 80%, transparent);
    animation: dropVertical var(--speed) infinite linear;
}

@keyframes dropVertical {
    from { transform: translateY(-100vh); }
    to { transform: translateY(100vh); }
}

/* FILM BARS */
.letterbox-top, .letterbox-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 10vh;
    background: black;
    z-index: 5;
    transform: scaleY(1.1);
}

.letterbox-top { top: 0; }
.letterbox-bottom { bottom: 0; }

/* --- RE-STYLED CONTENT --- */
.comms-node-matrix {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.comms-icon-matrix {
    width: 70px; /* Slightly larger, premium feel */
    height: 70px;
    margin: 0 auto 30px;
    opacity: 0;
    filter: blur(10px); /* Slower focus */
    transform: scale(0.9) translateY(30px);
}

.comms-icon-matrix svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
}

.comms-tag-matrix {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: #C5A059;
    letter-spacing: 5px;
    margin-bottom: 12px;
    opacity: 0;
}

.comms-title-matrix {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 9vw, 4.5rem);
    color: #fff;
    letter-spacing: -2px;
    margin: 0 auto;         /* Mengetengahkan elemen block */
    width: 100%;           /* Memastikan elemen memenuhi lebar container */
    text-align: center;    /* Mengetengahkan konten teks */
    opacity: 0;
    filter: blur(25px);
}


.comms-status-wrapper-matrix {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    opacity: 0;
}

.status-led-blink {
    width: 6px;
    height: 6px;
    background: #C5A059;
    border-radius: 50%;
    box-shadow: 0 0 10px #C5A059;
    animation: blink 0.8s infinite;
}

#comms-status-scramble {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.comms-note-film {
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.08); /* Easter Egg: More hidden */
    letter-spacing: 1px;
    z-index: 15;
}

@media (max-width: 768px) {
    .comms-note-film { right: 0; width: 100%; text-align: center; }
}

/* Container Utama */
.adit-glitch-container {
    position: relative;
    display: inline-block;
    cursor: default;
    min-width: 120px; /* Menjaga tata letak tetap stabil saat teks berubah */
}

/* Style Teks Default (ADIT) */
.name-original {
    display: block;
    animation: adit-flicker-out 8s infinite;
}

/* Style Teks Social (@ADIETEZ) */
.name-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    opacity: 0;
    font-family: 'Share Tech Mono', monospace; /* Font monospace agar lebih 'dev' */
    font-weight: 900;
    letter-spacing: -1px;
    
    /* Gradien Instagram */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae1 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    animation: social-flicker-in 8s infinite;
}

/* --- ANIMASI KEYFRAMES --- */

/* Animasi untuk menghilangkan ADIT dengan efek glitch */
@keyframes adit-flicker-out {
    0%, 40% { opacity: 1; transform: scale(1); filter: blur(0); }
    41% { opacity: 0.5; transform: skew(10deg); filter: blur(1px); }
    42% { opacity: 1; }
    43% { opacity: 0; transform: scale(1.1); }
    45%, 85% { opacity: 0; } /* Sembunyi saat @ADIETEZ muncul */
    86% { opacity: 1; transform: skew(-10deg); }
    87% { opacity: 0.5; }
    90%, 100% { opacity: 1; transform: scale(1); }
}

/* Animasi untuk memunculkan @ADIETEZ dengan efek glitch */
@keyframes social-flicker-in {
    0%, 40% { opacity: 0; transform: translateY(5px); }
    42% { opacity: 0.8; transform: skew(-15deg); }
    43% { opacity: 0; }
    45%, 85% { 
        opacity: 1; 
        transform: translateY(0) skew(0); 
        filter: drop-shadow(0 0 8px rgba(214, 36, 159, 0.3)); /* Glow Instagram */
    }
    86% { opacity: 0.5; transform: skew(15deg); }
    88% { opacity: 0; transform: translateY(5px); }
    100% { opacity: 0; }
}