    .daftarku-fixed-footer {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 70px;
        background: rgba(0, 0, 0, 0.75);
        border: 1.5px solid rgba(255, 215, 0, 0.6);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4),
            inset 0 0 15px rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-around;
        align-items: center;
        overflow: hidden;
        z-index: 9999;
        animation: floatUp 0.8s ease-out;
    }

    /* === Efek LED Bergerak di Pinggir === */
    .daftarku-fixed-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(120deg,
                #ffd700, #7d7106, #ffff00, #7d7106, #ffd700, #ffee00, #7d7106, #ffd700);
        background-size: 400%;
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: ledRotate 6s linear infinite;
    }

    @keyframes ledRotate {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 400% 50%;
        }
    }

    /* === Efek Cahaya Dalam & Refleksi === */
    .daftarku-fixed-footer::after {
        content: "";
        position: absolute;
        top: -50%;
        left: 0;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 70%);
        animation: shinePass 5s ease-in-out infinite;
    }

    @keyframes shinePass {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 0.7;
        }
    }

    /* === Tombol-Tombol === */
    .daftarku-fixed-footer a {
        flex: 1;
        text-align: center;
        color: #ffd700;
        font-weight: 700;
        text-decoration: none;
        font-size: 13px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: 0.3s ease;
        z-index: 2;
    }

    .daftarku-fixed-footer a img {
        width: 30px;
        height: 30px;
        margin-bottom: 4px;
        filter: drop-shadow(0 0 8px #ffd700);
        transition: 0.3s ease;
        animation: floatBtn 3s ease-in-out infinite;
    }

    @keyframes floatBtn {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-4px);
        }
    }

    /* Hover & Active State */
    .daftarku-fixed-footer a:hover {
        color: #fff;
        transform: scale(1.15);
        text-shadow: 0 0 12px #fff, 0 0 25px #ffd700;
    }

    .daftarku-fixed-footer a:hover img {
        transform: scale(1.25) rotate(10deg);
        filter: drop-shadow(0 0 15px #fff);
    }

    /* Tombol “Daftar” spesial: pulse energy */
    .daftarku-fixed-footer a.tada {
        background: radial-gradient(circle, #ffd700 0%, #362e00 80%);
        padding: 6px 12px;
        border-radius: 12px;
        box-shadow: 0 0 20px #ffd700, inset 0 0 10px #fff;
        color: #ffffff;
        position: relative;
        overflow: hidden;
        animation: pulseEnergy 2s infinite ease-in-out;
    }

    .daftarku-fixed-footer a.tada::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.4), transparent 60%);
        animation: spinEnergy 2s linear infinite;
    }

    @keyframes pulseEnergy {

        0%,
        100% {
            box-shadow: 0 0 20px #ffd700;
        }

        50% {
            box-shadow: 0 0 40px #fff700;
        }
    }

    @keyframes spinEnergy {
        to {
            transform: rotate(360deg);
        }
    }

    /* Animasi masuk */
    @keyframes floatUp {
        0% {
            opacity: 0;
            transform: translate(-50%, 50px);
        }

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