        @import url('https://fonts.googleapis.com/css2?family=Anton&family=Audiowide&family=League+Spartan:wght@100..900&family=Podkova:wght@400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Anton&family=Antonio:wght@100..700&family=Audiowide&family=League+Spartan:wght@100..900&family=Podkova:wght@400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Anton&family=Antonio:wght@100..700&family=Audiowide&family=League+Spartan:wght@100..900&family=Podkova:wght@400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
        
        body {
            margin: 0;
            padding: 0;
            background: #fff;
            color: #000;
            overflow-x: hidden;
        }

/* --- Animasi Masuk untuk Blog Card (via JavaScript) --- */
/* Awalnya, card akan transparan dan sedikit turun */
.blog-card-animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Saat class 'animated' ditambahkan, card akan muncul dan naik ke posisi asli */
.blog-card-animate-in.animated {
    opacity: 1;
    transform: translateY(0);
}
/* --- Akhir Animasi Masuk untuk Blog Card --- */
        /* --- Gaya untuk Judul Blog dengan Garis --- */
.blog-title-container {
    display: flex;        /* Gunakan flexbox untuk tata letak horizontal */
    align-items: center;  /* Sejajarkan item secara vertikal di tengah */
    width: 100%;          /* Gunakan lebar penuh container */
    gap: 20px;            /* Beri jarak antara garis dan teks */
    margin: 20px 0;       /* (Opsional) Beri jarak atas dan bawah dari elemen lain */
}

.blog-title-line {
    flex: 1;              /* Garis akan mengambil ruang yang tersisa */
    height: 2px;          /* Ketebalan garis */
    background-color: #000; /* Warna garis (sesuaikan jika perlu) */
}

.blog-title-text {
    margin: 0;            /* Hapus margin default dari h2 */
    font-family: 'Antonio', sans-serif; /* Pastikan font sesuai */
    font-size: 40px;      /* Sesuaikan ukuran font jika perlu */
    white-space: nowrap;  /* Cegah teks pindah baris jika container sempit */
}
/* --- Akhir Gaya untuk Judul Blog dengan Garis --- */

        .card-bloglist {
            width: 100vw;
            max-width: 100vw;
            height: 45vw;
            box-shadow: 0 4px 50px rgba(0, 0, 0, 0.18);
            border-radius: 80px 80px 0px 0px;
            position: relative;
            z-index: 10;
        }


        .button {
            display: flex;
            align-items: center;
            justify-content: end;
        }
        .btn-blogpost {
            color: #000000;
            cursor: pointer;
            font-size: 13px;
            font-family: 'Antonio';
            text-decoration: none;
        }

        .btn-category {
            background-color: transparent;
            color: #000;
            padding: 8px 16px;
            font-weight: bold;
            border-radius: 10px;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, color 0.2s;
            outline: none;
            box-shadow: none;
            border: none;
            font-family: 'Antonio';
        }
        .btn-listcategory {
            background-color: #f3f3f3;
            color: #000;
            padding: 8px 16px;
            font-weight: bold;
            border-radius: 10px;
            cursor: pointer;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, color 0.2s;
            outline: none;
            box-shadow: none;
            border: none;
            font-family: 'Antonio';
        }
        .circle-gray {
            width: 310px;
            position: absolute;
            height: 310px;
            top: 180%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #d3d3d3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

.navbar {
            width: 90%; /* Lebih responsif */
            max-width: 1200px; /* Batas lebar maksimal */
            margin: 20px auto; /* Pusatkan dan beri jarak atas/bawah */
            padding: 15px 30px; /* Sesuaikan padding */
            background: rgba(255, 255, 255, 0.9); /* Latar belakang putih lebih solid */
            backdrop-filter: blur(10px); /* Efek blur yang lebih halus */
            -webkit-backdrop-filter: blur(10px);
            border-radius: 50px; /* Bentuk lebih bulat */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Bayangan lebih lembut */
            border: 1px solid rgba(255, 255, 255, 0.5); /* Border halus */
            position: relative;
            display: flex;
            justify-content: space-between; /* Logo kiri, links kanan */
            align-items: center;
            box-sizing: border-box; /* Pastikan padding tidak menambah lebar */
        }
        .logo img {
            height: 40px; /* Ukuran logo yang konsisten */
            width: auto;
        }
                .nav-links {
            list-style: none;
            display: flex;
            gap: 30px; /* Jarak antar link */
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            text-decoration: none;
            color: #333; /* Warna teks lebih gelap untuk kontras */
            font-weight: 700; /* Gunakan font-weight dari font Antonio yang diimpor */
            font-family: 'Antonio', sans-serif; /* Pastikan font Antonio digunakan */
            font-size: 18px; /* Ukuran font sedikit lebih besar */
            padding: 8px 15px; /* Area klik yang lebih besar */
            border-radius: 20px; /* Sudut link yang bulat */
            transition: all 0.3s ease; /* Transisi halus */
            position: relative;
            z-index: 2; /* Di atas garis bawah */
        }

        /* Hover Effect untuk Links */
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 5px; /* Posisi garis bawah */
            left: 50%;
            transform: translateX(-50%) scaleX(0); /* Awalnya tersembunyi */
            width: 80%; /* Lebar garis bawah */
            height: 3px; /* Ketebalan garis bawah */
            background-color: #000000; /* Warna aksen merah muda/oranye */
            border-radius: 2px;
            transition: transform 0.3s ease; /* Animasi garis bawah */
            z-index: -1; /* Di belakang teks */
        }

        .nav-links li a:hover {
            color: #000000; /* Ubah warna teks saat hover */
        }

        .nav-links li a:hover::after {
            transform: translateX(-50%) scaleX(1); /* Tampilkan garis bawah saat hover */
        }
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            gap: 10px;
        }

        .carousel {
            
            position: relative;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #fff;
            overflow: hidden;
            width: 100%;
        }

        .carousel-content {
            position: relative;
            text-align: center;
            width: 100%;
        }

        .title-behind {
            font-size: 120px;
            font-weight: bold;
            color: #000;
            position: relative;
            margin-top: -150px;
            z-index: 1;
            font-family: 'Anton';
        }

        .robot-img {
            width: 200px;
            height: auto;
        }

        .title {
            font-size: 80px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .percentage {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            background: #000;
            color: #fff;
            padding: 10px 20px;
            border-radius: 10px;
        }

        .blog-intro {
            gap: 10px;
            padding: 25px 40px;
        }

        .blog-intro h2 {
            font-family: 'Antonio';
            font-size: 40px;
        }

        .blog-intro p {
            font-family: 'poppins';
            font-size: 15px;
        }

        .category-header {
            display: flex;
            justify-content: flex-end;
            padding-right: 40px;
            font-weight: bold;
        }

        .blog-list {
            padding: 20px 40px;
        }
        .blog-list h3 {
            font-family: 'Antonio';
            font-size: 30px;
            margin-bottom: 20px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .blog-card {
            border: 1px solid #ccc;
            padding: 15px;
            border-radius: 10px;
            background: #3636360f;
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animasi halus */
            will-change: transform, box-shadow; /* Bisa bantu performa */
        }

        .blog-card img {
            aspect-ratio: 16/9;
            object-fit: cover;
            width: 100%;
            border-radius: 10px;
        }

        .blog-card h4 {
            margin-top: 15px;
            font-size: 25px;
            font-weight: bold;
            font-family: antonio;
        }
        .blog-card:hover {
        transform: translateY(-10px); /* Bergerak ke atas sedikit */
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25); /* Bayangan lebih dalam */
        }

        .blog-card .des-blog {
            font-size: 14px;
            color: #555;
            font-family: 'poppins' !important;
        }

        .icons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 10px 0;
        }

        .btn {
            padding: 10px 20px;
            background: #fff;
            border: 1px solid #000;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
        }

        .footer {
            text-align: center;
            padding: 30px 20px;
            font-size: 14px;
            color: #666;
        }

        .footer .social i {
            margin: 0 5px;
        }

        .anton-regular {
            font-family: "Anton", sans-serif;
            font-weight: 400;
            font-style: normal;
        }
        .icon-bloglist{
            font-size:20px;
            vertical-align:middle;
        }
        .text-blogiconlist{
            font-size: 15px;
            vertical-align: middle;
            margin-left: 8px;
        }

        .robot-front {
            position: absolute;
            top: 120%;
            left: 50%;
            width: 250px;
            transform: translate(-50%, -50%);
            transform-origin: bottom center;
            opacity: 0;
            visibility: hidden;
            z-index: 2;
        }
.category-section {
    /* Hilangkan display: none; karena kita akan kontrol via JS dan animasi */
    /* display: none; */
    margin: 24px 0 0 0;
    padding: 24px 0 0 0;
    /* Awalnya sembunyikan dan buat tinggi 0 */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* Tambahkan transisi untuk animasi halus */
    transition: max-height 0.5s ease-out, opacity 0.3s ease-in-out, padding 0.5s ease-out;
    /* Awal padding diatur ke 0, akan diubah oleh JS */
    padding: 0 0 0 0 !important; /* Override padding awal saat hidden */
}

/* Kelas untuk keadaan ditampilkan */
.category-section.show {
    /* max-height perlu cukup besar untuk menampung semua konten */
    /* Sesuaikan nilai ini jika kategori sangat banyak */
    max-height: 500px; 
    opacity: 1;
    /* Kembalikan padding asli saat ditampilkan */
    padding: 24px 0 0 0 !important;
}
.cookie-consent {
        position: fixed;
        bottom: 50%;
        background: #ffffff;
        border-radius: 12px;
        padding: 16px 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 9999;
        animation: slideUp 0.5s ease-out;
        max-width: 480px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .cookie-consent.hidden {
        opacity: 0;
        visibility: hidden;
        display: block !important;
    }
    .cookie-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        font-size: 14px;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .cookie-text {
        margin: 0;
        line-height: 1.5;
    }

    .cookie-link {
        color: #4a90e2;
        text-decoration: none;
        font-weight: 500;
    }

    .cookie-link:hover {
        text-decoration: underline;
    }

    .cookie-btn {
        padding: 10px 20px;
        background: linear-gradient(135deg, #aaaaaa, #6f6f6f);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    }

    .cookie-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(59, 130, 246, 0.4);
        background: linear-gradient(135deg, #2563eb, #4c3bcf);
    }
    .cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Warna latar semi-transparan */
    backdrop-filter: blur(6px); /* Efek blur utama */
    -webkit-backdrop-filter: blur(6px); /* Untuk Safari */
    z-index: 9998; /* Di bawah cookie-consent, tapi di atas semua konten */
    pointer-events: none; /* Biar tetap bisa klik, tapi kita atur via JS nanti */
    opacity: 0;
    transition: opacity 0.4s ease;
    }

    /* Saat overlay aktif */
    .cookie-overlay.active {
        opacity: 1;
        pointer-events: auto; /* Blokir klik ke konten di baliknya */
    }
    .cookie-consent.hidden {
    display: none !important;
}
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translate(-50%, 20px);
        }
        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

        /* animasi jatuh */
        @keyframes fallFromStand {
            0% {
                transform: translate(-50%, -50%) rotate(90deg);
                opacity: 1;
                visibility: visible;
            }

            10% {
                opacity: 1;
            }

            30% {
                transform: translate(-50%, -50%) rotate(0deg);
                opacity: 1;
            }

            40% {
                transform: translate(-50%, -50%) rotate(0deg);
                opacity: 1;
            }

            50% {
                transform: translate(-50%, -50%) rotate(0deg);
                opacity: 1;
            }

            60% {
                transform: translate(-50%, -50%) rotate(-120deg);
                opacity: 1;
            }

            90% {
                transform: translate(-50%, -50%) rotate(-180deg);
                opacity: 0;
            }

            100% {
                opacity: 0;
                visibility: hidden;
            }
        }

        /* class aktif dipakai JS */
        .robot-active {
            animation: fallFromStand 5s linear forwards;
        }
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .title-behind {
    font-size: 90px;
    font-weight: bold;
    color: #000;
    position: relative;
    margin-top: -100px;
    z-index: 1;
}
        @media (max-width: 768px) {

            html,
            body {
                width: 100vw;
                max-width: 100vw;
                overflow-x: hidden;
            }
            .icon-bloglist{
                font-size:1.5rem;
                vertical-align:middle;
            }
            .text-blogiconlist{
                font-size: 15px;
                vertical-align: middle;
                margin-left: 5px;
            }
            .circle-gray {
                width: 310px;
                position: absolute;
                height: 310px;
                top: 180%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color: #d3d3d3;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
                z-index: 1;
            }

            .card-bloglist {
                width: 100vw !important;
                max-width: 100vw !important;
                height: 100% !important;
                margin-top: 0px !important;
                margin-left: 0 !important;
                border-radius: 50px 50px 0px 0px;
                box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
                padding: 0;
                position: relative;
                z-index: 10;
            }

            .blog-list {
                padding: 10px 5px !important;
            }

            .card-footer {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 10px;
                gap: 10px;
            }

            .iconsblog {
                display: flex;
                gap: 10px;
                font-size: 14px;
            }

            .icon-item {
                display: flex;
                align-items: center;
                gap: 6px;
                /* jarak antara icon dan angka */
                font-size: 14px;
                color: #333;
            }

            .title-behind {
                font-size: 90px;
                font-weight: bold;
                color: #000;
                position: relative;
                margin-top: -100px;
                z-index: 1;
            }
            .navbar {
                width: 95%;
                padding: 12px 20px;
                border-radius: 40px;
            }
            .logo img {
                height: 35px;
            }
            .nav-links {
                gap: 20px;
            }
            .nav-links li a {
                font-size: 16px;
                padding: 6px 12px;
            }
                    .cookie-consent {
            left: 16px;
            right: 16px;
            transform: none;
            max-width: none;
            bottom: 16px;
            padding: 16px;
        }

        .cookie-content {
            font-size: 13px;
        }

        }
