        /* CSS yang sudah ada */
        html, body {
            height: 100%;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
           
            background-size: cover;
            color: white; 
        }
        .bg-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
        }
        .text-neon-glow {
            text-shadow: 0 0 5px #6366F1, 0 0 10px #A855F7;
        }
        .button-glow {
            box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
            transition: all 0.3s;
        }
        .button-glow:hover {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
        }
        .shooting-stars {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; overflow: hidden; z-index: -1;
        }
        .star {
            position: absolute; width: 120px; height: 2px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
            transform: rotate(135deg); transform-origin: left center;
            opacity: 0; animation: shoot 10s linear infinite;
        } 
        @keyframes shoot {
            0% { transform: translate(0, 0) rotate(135deg); opacity: 0; }
            10% { opacity: 1; }
            100% { transform: translate(-1000px, 1000px) rotate(150deg); opacity: 0; }
        }
        .bp-img {
            height: 180px;
            object-fit: cover;
        }

                /* Gaya dasar dan kustomisasi */
     

        .text-neon-glow {
            text-shadow: 0 0 5px #3B82F6, 0 0 10px #A855F7;
        }
        .card-glow {
            transition: all 0.3s;
        }
        .card-glow:hover {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.7); 
            transform: translateY(-5px); 
        }
        .bp-card-container {
            position: relative; overflow: hidden; border-radius: 0.75rem; height: 350px;
        }
        .bp-img {
            width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease-in-out;
        }
        .bp-card-container:hover .bp-img {
            transform: scale(1.05);
        }
        .bp-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 40%);
            display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
        }
        .shooting-stars {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; overflow: hidden; z-index: -1;
        }
        .archive-item {
            display: flex;
        }