 /* --- 1. SETTING HEADER DESKTOP --- */
            #header {
                position: absolute;
                top: 0;
                width: 100%;
                z-index: 1000;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 15px 40px;
       background: linear-gradient(to bottom, rgb(79 0 135), #a90ab830);
                border: none;
            }
            
            .logo-left img {
                height: 40px;
                /* background: rgba(255,255,255,0.9); */
                padding: 5px 10px;
                border-radius: 4px;
            }

            /* Menu Desktop */
            #nav > ul {
                display: flex;
                gap: 20px;
                list-style: none;
                margin: 0;
            }
            #nav > ul > li > a {
                color: #fff !important;
                font-weight: 600;
                text-shadow: 0 1px 2px rgba(0,0,0,0.8);
                text-decoration: none;
                border: none;
            }
            /* Dropdown background putih */
            #nav > ul > li > ul {
                background: #fff;
                border-radius: 5px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            #nav > ul > li > ul a {
                color: #444 !important;
                text-shadow: none;
            }

            /* --- 2. HERO SECTION --- */
            .hero-wrapper {
                position: relative;
                width: 100%;
                /* GANTI GAMBAR BACKGROUND DISINI */
                background: url('/style/images/banner1_.jpg');
                background-size: cover;
                background-position: center;
                min-height: 100vh; /* Full layar */
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding-top: 60px; /* Kompensasi header */
                background-color: #d607ff31; /* The color to blend with */
                background-blend-mode: overlay; /* The blending mode */
                background-size: cover;
            }
            .logo-box {
                width: inherit;
                padding-bottom: inherit;
            }

            /* Search Box Card */
            .search-box-card {
               background: rgb(255 255 255 / 75%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 80%);
    width: 90%;
    max-width: 800px;
    text-align: center;
            }
            .repo-title {
                font-size: 2em;
                color: #333;
                margin-bottom: 20px;
                font-weight: bold;
            }
            
            /* Input Search Horizontal */
            .search-inputs {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
                margin-bottom: 10px;
            }
            .search-inputs input {
                flex: 1;
                min-width: 150px;
                padding: 10px;
                border: 1px solid #ddd;
                border-radius: 4px;
                height: 45px;
            }
            .btn-search {
                background: #9900bd;
                color: #fff;
                border: none;
                border-radius: 4px;
                padding: 0 25px;
                cursor: pointer;
                height: 45px;
                font-weight: bold;
            }
            .btn-search:hover { background: #7a0092; }

            /* Browse Area */
            .browse-area {
                margin-top: 20px;
                border-top: 1px solid #eee;
                padding-top: 20px;
            }
            .browse-grid {
                display: flex;
                justify-content: center;
                gap: 30px;
                flex-wrap: wrap;
            }
            .icon-box {
    text-decoration: none;
    color: #555;
    text-align: center;
    width: 80px;
    display: flex; /* Gunakan flex untuk mengatur posisi */
    flex-direction: column;
    align-items: center;
}
/* Mengatur ukuran ikon SVG */
.icon-box svg {
    width: 48px;  /* Ukuran ikon */
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}
/* Efek hover */
.icon-box:hover svg {
    transform: scale(1.1) translateY(-5px);
}
.icon-box:hover span { color: #7a0092; }

            /* --- 3. MOBILE RESPONSIVE FIX (LOGO KANAN, MENU KIRI) --- */
            /* Ketika layar dibawah 980px (Tablet/HP) */
            @media screen and (max-width: 980px) {
                /* Sembunyikan Navigasi Desktop */
                #nav {
                    display: none !important;
                }

                /* Atur Header Mobile */
                #header {
                    display: flex !important;
                    height: 60px;
                background: #4b005a !important;
                    position: fixed;
                    padding: 5px 15px;
                    /* PENTING: Ratakan isi header (Logo) ke Kanan */
                    justify-content: flex-end !important; 
                }

                /* Logo tetap di kanan */
                .logo-left img {
                    height: 35px;
                    margin-top: 5px;
                }

                /* Padding Hero menyesuaikan */
                .hero-wrapper {
                    min-height: auto;
                    padding: 100px 15px 50px 15px;
                }
                
                .repo-title { font-size: 1.5em; }
                
                .browse-grid { gap: 15px; }
                .icon-box { width: 40%; }

                /* --- NAVIGASI MOBILE (HAMBURGER DI KIRI) --- */
                #navButton {
                    display: block !important;
                    top: 0 !important;
                    left: 0 !important;  /* MENU DI KIRI */
                    right: auto !important; /* JANGAN DI KANAN */
                    height: 60px !important;
                    width: 60px !important;
                    background: transparent !important;
                }
                #navButton .toggle {
                    height: 100%;
                    width: 100%;
                }
                #navButton .toggle:before {
                    top: 15px !important;
                    left: 15px !important;
                    color: #fff !important;
                }
            }
            /* #cta {
    background: #5a0070;
    color: #f9e6df;
    padding: 3.5em 0 4em 0;
    text-align: center;
} */
 .modern-stat {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 15px;
    border-radius: 50px;
    color: #666;
    font-size: 0.85em;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modern-stat:hover {
    background: #0056b3;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.modern-stat i {
    margin-right: 8px;
    color: #0056b3;
}

.modern-stat:hover i {
    color: #ffcc00;
}

/* Menyembunyikan border gambar bawaan statcounter */
.statcounter img {
    border: none !important;
    vertical-align: middle;
}