 /* Pengaturan Dasar & Skema Warna */
        :root {
            --bg-color: #0d1117; /* Biru tua/hitam */
            --header-bg: #161b22;
            --card-bg: #1a1e28;
            --card-logo-bg: #212631;
            --text-color-white: #ffffff;
            --text-color-muted: #cccccc;
            --accent-yellow: #fbc02d;
            --accent-blue: #3e82f7;
            --accent-green: #25d366;
            --accent-red: #f44336;
            --cookie-bg: #10141d;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
            color: var(--text-color-white);
            font-family: Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }

        /* HEADER ATAS */
        .top-links {
            display: flex;
            justify-content: space-between;
            padding: 10px 15px;
            background-color: var(--header-bg);
            border-bottom: 1px solid #333;
            font-size: 0.9em;
        }
        .top-link {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--text-color-muted);
        }

        /* LOGO UTAMA */
        /* LOGO UTAMA */
        .main-logo-container {
            text-align: center;
            margin: 20px 0;
        }
        .main-logo {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }
        .main-logo-icon {
            width: 30px;
            height: 30px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-blue);
            border: 2px solid var(--accent-blue);
            font-size: 0.8em;
        }

        .main-logo-image {
            max-width: 180px; /* Anda bisa mengubah angka ini untuk memperbesar atau memperkecil logo */
            height: auto;
            object-fit: contain;
            display: block;
        }

        /* =========================================
        MENU BAR RESPONSIF (PERBAIKAN IKON & TATA LETAK)
        ========================================= */
        .menu-bar {
            background-color: var(--header-bg);
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
            position: relative;
        }

        /* Tombol Mobile (Tiga Garis) */
        .mobile-menu-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 12px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1em;
            color: var(--text-color-white);
        }

        .menu-icon {
            width: 22px; 
            height: 1.8px; 
            background: white; 
            position: relative;
        }
        .menu-icon::before, .menu-icon::after {
            content: ''; 
            width: 100%; 
            height: 100%; 
            background: inherit; 
            position: absolute; 
            left: 0;
        }
        .menu-icon::before { top: -7px; }
        .menu-icon::after { bottom: -7px; }

        /* 1. WADAH MENU KESELURUHAN (ul.nav-links) */
        .nav-links {
            list-style: none !important; 
            margin: 0;
            padding: 0;
            display: none; /* Sembunyi di HP sebelum tombol MENU diklik */
            flex-direction: column; /* KUNCI MOBILE: Menu berbaris ke bawah (vertikal) */
            width: 100%;
            background-color: var(--header-bg);
        }

        .nav-links.active {
            display: flex;
            border-top: 1px solid #333;
        }

        .nav-links li {
            width: 100%;
            border-bottom: 1px solid #2a2f3a; /* Garis bawah antar menu di HP */
            text-align: center;
        }
        .nav-links li:last-child {
            border-bottom: none;
        }

        /* 2. ISI TEKS & IKON (a.nav-link) */
        .nav-link {
            display: flex;
            flex-direction: row !important; /* KUNCI IKON: Memaksa ikon di KIRI teks */
            align-items: center; 
            justify-content: center; 
            gap: 12px; /* Jarak antara ikon FA dan Teks */
            padding: 15px 20px;
            color: var(--text-color-muted);
            font-weight: bold;
            font-size: 0.95rem;
            text-transform: uppercase;
            transition: color 0.2s;
            text-decoration: none;
        }

        .nav-link i {
            font-size: 1.2rem; 
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-yellow);
        }

        /* =========================================
        MODE DESKTOP (Layar Lebar)
        ========================================= */
        @media screen and (min-width: 768px) {
            .mobile-menu-toggle {
                display: none !important; /* Sembunyikan tombol "MENU" di PC */
            }

            .nav-links {
                display: flex !important; /* Tampil otomatis di PC tanpa diklik */
                flex-direction: row; /* KUNCI DESKTOP: Keseluruhan menu berjejer dari kiri ke kanan */
                justify-content: center; 
                align-items: center;
                border-top: none;
            }

            .nav-links li {
                width: auto;
                border-bottom: none; /* Hilangkan garis pemisah bawah di PC */
            }

            .nav-link {
                padding: 15px 25px; /* Spasi klik yang lebih lega di PC */
            }
        }

        /* JUDUL SEKSI */
        .rekomendasi-section {
            padding: 25px 20px;
            text-align: center;
        }
        .rekomendasi-title {
            color: var(--accent-yellow);
            font-size: 1.5em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .rekomendasi-subtitle {
            font-size: 0.95em;
            color: var(--text-color-muted);
            line-height: 1.5;
            max-width: 90%;
            margin: 0 auto;
        }

        /* =========================================
   KISI KARTU (SISTEM GRID RESPONSIF) 
   ========================================= */
        .card-grid {
            display: grid;
            gap: 15px;
            padding: 0 15px 100px; /* Jarak bawah ekstra untuk cookie banner */
            
            /* INI KUNCINYA: Membatasi lebar agar tidak raksasa di Desktop */
            max-width: 800px; 
            margin: 0 auto; /* Membuat posisi kartu tepat di tengah layar */
            
            /* Default untuk HP layar kecil: 1 Kolom */
            grid-template-columns: 1fr; 
        }

        /* MEDIA QUERIES */

        /* 1. HP Standar / Tablet / Desktop (Lebar di atas 500px) */
        @media screen and (min-width: 500px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr); /* Berubah menjadi 2 kolom */
            }
        }

        /* 2. PC / Layar Sangat Lebar (Lebar di atas 1024px) */
        @media screen and (min-width: 1024px) {
            .top-links, .cookie-banner {
                padding-left: 50px;
                padding-right: 50px;
            }
            /* Grid tetap 2 kolom, tetapi tidak akan lebih dari 800px karena max-width di atas */
        }

        /* KARTU */
        .card {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid #2a2f3a;
            
            /* Pastikan baris ini ada */
            animation: pulse-card 2s infinite ease-in-out; 
        }

        

        /* BADGE PROMO/HOT */
        .badge-container {
            position: absolute;
            top: 12px;
            right: 12px;
            display: flex;
            gap: 6px;
            z-index: 10;
        }
        .badge {
            padding: 4px 10px;
            border-radius: 20px; /* Mengubah bentuk menjadi melengkung (pil) agar lebih ramping */
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4); /* Efek timbul/bayangan */
            white-space: nowrap; /* Memastikan teks tidak pernah turun ke baris baru */
        }
        .badge-promo { 
            background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%); /* Gradasi kuning keemasan */
            color: #1a1a1a; 
        }
       .badge-hot { 
            background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); /* Gradasi merah */
            color: white; 
            animation: pulse-hot 2s infinite; /* Efek animasi denyut */
        }

        /* Animasi denyut (pulse) untuk badge HOT */
        @keyframes pulse-hot {
            0% { 
                transform: scale(1); 
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); 
            }
            70% { 
                transform: scale(1.05); 
                box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); 
            }
            100% { 
                transform: scale(1); 
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); 
            }
        }

        /* =========================================
        LOGO KARTU (EFEK KACA / GLASSMORPHISM)
        ========================================= */
        .card-logo {
            width: 100%;
            height: 70px;
            margin-bottom: 12px;
            margin-top: 10px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            
            /* --- Mulai Efek Kaca --- */
            background: rgba(255, 255, 255, 0.03); /* Warna putih yang sangat transparan */
            backdrop-filter: blur(8px); /* Memberikan efek blur pada apa pun di belakangnya */
            -webkit-backdrop-filter: blur(8px); /* Agar efek blur juga berfungsi di browser Safari/iPhone */
            border: 1px solid rgba(255, 255, 255, 0.08); /* Garis tepi tipis yang agak mengkilap */
            box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02); /* Sedikit pantulan cahaya di bagian dalam kotak */
            /* --- Akhir Efek Kaca --- */
        }

        /* Mengatur ukuran gambar logo agar pas di dalam kotak */
            .card-logo img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
                padding: 8px;
                box-sizing: border-box;
            }


        /* =========================================
        DETAIL KARTU (PERBAIKAN JUDUL & MAHKOTA)
        ========================================= */
        .card-title {
            font-weight: 800;
            font-size: 1.25em;
            margin-bottom: 10px;
            color: var(--accent-yellow);
            display: flex;
            align-items: center; /* Mengunci mahkota dan teks agar sejajar di satu garis lurus */
            justify-content: center; /* Mendorong keseluruhan grup ini tepat ke tengah kartu */
            gap: 8px; /* Jarak spasi antara mahkota dan teks */
            line-height: 1;
        }
        .card-title .k-icon {
            display: inline-flex;
            align-items: center;
            line-height: 1;
            margin-top: -3px; /* Penyesuaian halus (tweak) karena emoji bawaan sistem seringkali sedikit condong ke bawah */
        }

        .card-title .k-icon::before { 
            content: '👑'; 
            font-size: 1.1em; 
        }

        .card-desc {
            font-size: 0.85em;
            color: var(--text-color-muted);
            margin-bottom: 18px;
            line-height: 1.5;
            height: 3em; /* Batasi tinggi untuk deskripsi */
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2; /* Tampilkan maks 2 baris */
            -webkit-box-orient: vertical;
        }

        /* TOMBOL KARTU */
        .btn {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.95em;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            transition: opacity 0.2s;
            box-sizing: border-box;
        }
        .btn:hover { opacity: 0.9; }
        .btn-visit { background-color: var(--accent-blue); color: white; }
        .btn-wa { background-color: var(--accent-green); color: white; }
        .btn-chat { background-color: var(--accent-red); color: white; }
        .btn:last-child { margin-bottom: 0; }

        /* Ikon Tombol Placeholder */
        .btn .a-icon::before { content: '→'; }
        .btn .wa-icon::before { content: '💬'; }
        .btn .ch-icon::before { content: '🎧'; }
        .btn .login-icon::before { content: 'ᯓ➤'; }

        /* SPANDUK COOKIE */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--cookie-bg);
            padding: 20px;
            box-sizing: border-box;
            border-top: 1px solid #333;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            z-index: 100;
        }
        .cookie-text {
            color: var(--text-color-muted);
            font-size: 0.9em;
            line-height: 1.6;
            flex: 1 1 100%; /* Penuh pada layar kecil */
        }
        .cookie-text a { color: var(--accent-blue); text-decoration: underline; }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .btn-cookie {
            padding: 10px 25px;
            border-radius: 6px;
            border: none;
            font-weight: bold;
            font-size: 0.95em;
            cursor: pointer;
        }
        .btn-cookie-deny { background-color: #333; color: white; }
        .btn-cookie-accept { background-color: var(--accent-blue); color: white; }


        /* =========================================
        ANIMASI KARTU BERKELIP (REVISI LEBIH TERANG)
        ========================================= */
        @keyframes pulse-card {
            0% { 
                box-shadow: 0 0 0 0 rgba(134, 134, 135, 0.8); 
                border-color: #5b6982;
            }
            50% { 
                /* Bayangan menyebar lebih luas dan warnanya lebih terang */
                box-shadow: 0 0 15px 4px rgba(134, 134, 135, 0.6); 
                border-color: #5b6982; /* Garis tepi kartu ikut menyala sedikit */
            }
            100% { 
                box-shadow: 0 0 0 0 rgba(134, 134, 135, 0); 
                border-color: #5b6982;
            }
        }

        /* =========================================
        SEKSI ARTIKEL (SEO CONTENT)
        ========================================= */
        .article-section {
            padding: 40px 20px 60px; /* Padding bawah lebih besar untuk spasi banner cookie */
            background-color: var(--bg-color);
            border-top: 1px solid #2a2f3a;
            margin-top: 20px;
        }

        .article-content {
            max-width: 800px; /* Lebar dibatasi agar sejajar sempurna dengan grid kartu */
            margin: 0 auto;
            color: var(--text-color-muted);
            font-size: 1rem;
            line-height: 1.8; /* Jarak antar baris yang lega agar mudah dibaca */
        }

        .article-title {
            color: var(--text-color-white);
            font-size: 1.8em;
            margin-bottom: 25px;
            text-align: center;
            font-weight: bold;
        }

        .article-content h3 {
            color: var(--accent-yellow);
            font-size: 1.3em;
            margin-top: 35px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .article-content p {
            margin-bottom: 20px;
            text-align: justify; /* Membuat teks rata kanan-kiri agar terlihat seperti artikel profesional */
        }

        /* Penyesuaian tipografi untuk layar seluler yang sangat kecil */
        @media screen and (max-width: 480px) {
            .article-title {
                font-size: 1.5em;
            }
            .article-content h3 {
                font-size: 1.2em;
            }
            .article-content {
                font-size: 0.95rem;
            }
        }

        /* =========================================
        BOTTOM NAVIGATION (KHUSUS MOBILE)
        ========================================= */
        .bottom-nav {
            display: none; /* Disembunyikan di PC/Desktop secara default */
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--header-bg);
            border-top: 1px solid #2a2f3a;
            z-index: 999; /* Memastikan posisinya selalu di atas elemen lain */
            box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
            
            /* Mendukung layar iPhone modern yang memiliki garis 'home indicator' di bawah */
            padding-bottom: env(safe-area-inset-bottom); 
        }

        .bottom-nav-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 0;
            color: var(--text-color-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        /* Warna saat menu aktif atau ditekan */
        .bottom-nav-item.active, .bottom-nav-item:hover {
            color: var(--accent-yellow);
        }

        .bn-icon {
            font-size: 1.3rem;
            margin-bottom: 4px;
        }

        .bn-text {
            font-size: 0.65rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* =========================================
        PENGATURAN TAMPILAN KHUSUS MOBILE
        ========================================= */
        @media screen and (max-width: 768px) {
            .bottom-nav {
                display: flex; /* Tampilkan navigasi bawah saat di mode mobile */
            }
            
            /* Beri jarak tambahan di bagian bawah artikel/body agar tulisan terbawah tidak tertutup oleh navigasi */
            body {
                padding-bottom: 70px; 
            }

            /* Mengangkat posisi cookie banner agar tidak menabrak bottom nav */
            .cookie-banner {
                bottom: 65px; 
                border-bottom: 1px solid #333;
            }
        }

        /* =========================================
   GAYA KHUSUS HALAMAN REKOMENDASI (STATISTIK & RANKING)
   ========================================= */

/* Logo Nomor Urut di Kanan Atas */
.rank-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #fbc02d, #f59e0b);
    color: #1a1a1a;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    z-index: 15;
    border: 2px solid #fff;
}

/* Menggeser badge promo/hot ke kiri khusus untuk kartu yang ada nomornya */
.badge-left {
    right: auto !important; /* Membatalkan posisi kanan */
    left: 12px;
}

/* Kotak Informasi (Pengganti card-desc) */
.card-stats {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

/* Baris tiap informasi */
.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-label {
    color: var(--text-color-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-value {
    font-weight: bold;
    color: var(--text-color-white);
}

/* Highlight warna hijau khusus RTP agar mencolok */
.highlight-rtp {
    color: var(--accent-green);
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
    font-size: 0.95rem;
}

/* =========================================
   HALAMAN SPESIFIK: TOMBOL LOGIN & DAFTAR
   ========================================= */
.action-buttons-container {
    display: flex;
    flex-direction: column; /* Mengubah susunan tombol menjadi atas-bawah */
    align-items: center; /* Memposisikan tombol tepat di tengah layar */
    gap: 15px; /* Jarak antara tombol Daftar dan Login */
    
    /* Membatasi lebar kontainer tombol agar tidak terlalu lebar */
    max-width: 350px; 
    width: 100%;
    margin: 30px auto 20px; 
    padding: 0 15px;
    box-sizing: border-box;
}

/* =========================================
   PENGATURAN TOMBOL AGAR UKURANNYA IDENTIK
   ========================================= */
.action-buttons-container .btn {
    margin-bottom: 0; 
    font-size: 1.1rem;
    padding: 15px;
    width: 100%; 
    height: 55px; /* KUNCI: Memaksa kedua tombol memiliki tinggi yang sama persis */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-login { 
    background-color: var(--accent-blue); 
    color: white; 
}

.btn-register { 
    background-color: var(--accent-yellow); 
    color: #1a1a1a; 
    /* Menggunakan animasi baru yang tidak mengubah ukuran */
    animation: pulse-glow-only 2s infinite; 
}

/* Animasi baru: Hanya memancarkan cahaya tanpa membuat tombol membesar */
@keyframes pulse-glow-only {
    0% { 
        box-shadow: 0 0 0 0 rgba(251, 192, 45, 0.7); 
    }
    70% { 
        box-shadow: 0 0 0 12px rgba(251, 192, 45, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(251, 192, 45, 0); 
    }
}

/* =========================================
   HALAMAN SPESIFIK: 4 KOTAK INFORMASI
   ========================================= */
.info-boxes-grid {
    display: grid;
    /* Secara default (di HP) dibagi menjadi 2 kolom */
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

/* Untuk layar Tablet & Desktop, jadikan 4 kolom berjajar */
@media screen and (min-width: 768px) {
    .info-boxes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-box {
    background-color: var(--card-bg);
    border: 1px solid #2a2f3a;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    /* Efek kaca opsional agar senada dengan logo */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.info-box-label {
    color: var(--text-color-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box-value {
    color: var(--text-color-white);
    font-size: 1.25rem;
    font-weight: 900;
}

/* =========================================
   DROPDOWN MENU (SUB-MENU REKOMENDASI)
   ========================================= */
.dropdown {
    position: relative;
}

/* Ikon panah turun */
.caret {
    font-size: 0.75rem !important;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* Kotak Sub-menu (Tersembunyi secara default) */
.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--card-bg); /* Mengikuti warna kartu */
    display: none; 
    z-index: 100;
}

/* Desain item di dalam dropdown */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: var(--text-color-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-item i {
    font-size: 1rem;
    color: var(--accent-yellow); /* Warna ikon sub-menu emas */
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Efek saat sub-menu disorot */
.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-color-white);
}

/* --- PERILAKU DI LAYAR HP (MOBILE) --- */
@media screen and (max-width: 767px) {
    .dropdown-menu {
        width: 100%;
        background-color: #11151c; /* Sedikit lebih gelap dari menu utama di HP */
    }
    
    /* Kelas yang ditambahkan via JavaScript untuk membuka menu di HP */
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown.active .caret {
        transform: rotate(180deg); /* Panah berputar ke atas */
    }
}

/* --- PERILAKU DI LAYAR DESKTOP (PC) --- */
@media screen and (min-width: 768px) {
    .dropdown-menu {
        position: absolute;
        top: 100%; /* Muncul tepat di bawah tombol Rekomendasi */
        left: 50%;
        transform: translateX(-50%); /* Menempatkan kotak tepat di tengah-tengah teks */
        min-width: 220px;
        border-radius: 8px;
        border: 1px solid #2a2f3a;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
        overflow: hidden;
    }
    
    /* Buka menu otomatis saat kursor mouse diarahkan (hover) di Desktop */
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown:hover .caret {
        transform: rotate(180deg);
    }
}

/* =========================================
   KONTEN UTAMA (BANNER, DAFTAR ISI, ARTIKEL)
   ========================================= */
.main-content-container {
    max-width: 800px;
    margin: 0 auto 100px; /* Margin bawah besar agar tidak tertutup navigasi bawah HP */
    padding: 0 15px;
    box-sizing: border-box;
}

/* 1. Desain Tempat Banner */
.banner-wrapper {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a2f3a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.promo-banner {
    width: 100%;
    height: auto;
    display: block; /* Mencegah spasi kosong di bawah gambar */
}

/* 2. Desain Daftar Isi (Table of Content) */
.toc-container {
    background-color: var(--card-bg);
    border: 1px solid #2a2f3a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.toc-title i {
    color: var(--accent-yellow);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-list li a {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-block;
}

.toc-list li a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

/* 3. Desain Artikel Spesifik */
.article-body {
    color: var(--text-color-muted);
    line-height: 1.7; /* Jarak baris yang lega agar mudah dibaca */
    font-size: 0.95rem;
}

.article-body h2 {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.article-body h2:first-child {
    margin-top: 0; /* Menghilangkan jarak atas untuk judul pertama */
}

.article-body p {
    margin-bottom: 20px;
    text-align: justify; /* Meratakan teks kiri dan kanan */
}

/* =========================================
   FAQ SECTION (HALAMAN UTAMA)
   ========================================= */
.home-faq-section {
    max-width: 800px;
    margin: 40px auto 100px; /* Margin bawah 100px agar tidak tertutup bottom-nav di HP */
    padding: 0 15px;
    box-sizing: border-box;
}

.section-title {
    color: var(--text-color-white);
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--accent-yellow);
}

/* =========================================
   FAQ ACCORDION (PERTANYAAN UMUM)
   ========================================= */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid #2a2f3a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Bagian Pertanyaan yang bisa diklik */
.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-color-white);
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

/* Efek saat kursor diarahkan atau saat FAQ terbuka */
.faq-question:hover, .faq-item.active .faq-question {
    color: var(--accent-yellow);
    background-color: rgba(255, 255, 255, 0.03);
}

/* Ikon panah */
.faq-question i {
    transition: transform 0.4s ease;
    font-size: 0.9em;
    color: var(--text-color-muted);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg); /* Panah berputar ke atas saat terbuka */
    color: var(--accent-yellow);
}

/* Bagian Jawaban (Disembunyikan secara default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Munculkan jawaban saat class .active ditambahkan */
.faq-item.active .faq-answer {
    max-height: 500px; /* Angka besar agar teks panjang tidak terpotong */
    padding: 15px 20px 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    margin: 0 !important;
    font-size: 0.95rem;
    color: var(--text-color-muted);
}

/* =========================================
   GAYA KHUSUS ANCHOR TEXT (LINK DI DALAM ARTIKEL)
   ========================================= */
.article-body p a {
    color: var(--accent-blue); /* Memberikan warna biru khas tautan */
    font-weight: bold; /* Menebalkan teks agar lebih menonjol dari teks biasa */
    text-decoration: none; 
    border-bottom: 1px solid rgba(62, 130, 247, 0.4); /* Garis bawah tipis dan transparan */
    padding-bottom: 1px;
    transition: all 0.2s ease-in-out; /* Animasi transisi yang halus */
}

/* Efek saat kursor mouse diarahkan ke anchor text */
.article-body p a:hover {
    color: var(--accent-yellow); /* Berubah menjadi warna kuning emas */
    border-bottom: 1px solid var(--accent-yellow); /* Garis bawah menjadi jelas dan kuning */
    text-shadow: 0 0 8px rgba(251, 192, 45, 0.4); /* Memberikan efek cahaya tipis */
}