.daftarku-fixed-footer {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 70px;
        background:
            radial-gradient(circle at top, rgba(255, 241, 118, 0.35), transparent 45%),
            linear-gradient(135deg, #3d2f00, #8f5d00, #ffc400);
        border: 1.5px solid rgba(255, 235, 59, 0.75);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        box-shadow:
            0 0 25px rgba(255, 208, 0, 0.45),
            inset 0 0 15px rgba(255, 253, 231, 0.18);
        display: flex;
        justify-content: space-around;
        align-items: center;
        overflow: hidden;
        z-index: 9999;
        animation: floatUp 0.8s ease-out;
    }

    .daftarku-fixed-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(
            120deg,
            #ffc400,
            #fff176,
            #8f5d00,
            #fffde7,
            #ffc400,
            #ffc400,
            #3d2f00,
            #ffc400
        );
        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%; }
    }

    .daftarku-fixed-footer::after {
        content: "";
        position: absolute;
        top: -50%;
        left: 0;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle at 50% 0%, rgba(255, 241, 118, 0.28), transparent 70%);
        animation: shinePass 5s ease-in-out infinite;
    }

    @keyframes shinePass {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.7; }
    }

    .daftarku-fixed-footer a {
        flex: 1;
        text-align: center;
        color: #fffde7;
        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;
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.85),
            0 0 8px rgba(255, 208, 0, 0.65);
    }

    .daftarku-fixed-footer a img {
        width: 30px;
        height: 30px;
        margin-bottom: 4px;
        filter:
            drop-shadow(0 0 8px #ffc400)
            drop-shadow(0 0 12px rgba(255, 241, 118, 0.55));
        transition: 0.3s ease;
        animation: floatBtn 3s ease-in-out infinite;
    }

    @keyframes floatBtn {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }

    .daftarku-fixed-footer a:hover {
        color: #fff176;
        transform: scale(1.15);
        text-shadow:
            0 0 12px #fffde7,
            0 0 25px #ffc400;
    }

    .daftarku-fixed-footer a:hover img {
        transform: scale(1.25) rotate(10deg);
        filter:
            drop-shadow(0 0 15px #ffc400)
            drop-shadow(0 0 20px rgba(255, 241, 118, 0.75));
    }

    .daftarku-fixed-footer a.tada {
        background:
            radial-gradient(circle, #fff176 0%, #ffc400 42%, #8f5d00 80%);
        padding: 6px 12px;
        border-radius: 12px;
        box-shadow:
            0 0 20px #ffc400,
            inset 0 0 10px #fff176;
        color: #3d2f00;
        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, 241, 118, 0.70),
            transparent 60%
        );
        animation: spinEnergy 2s linear infinite;
    }

    @keyframes pulseEnergy {
        0%, 100% {
            box-shadow:
                0 0 20px #ffc400,
                inset 0 0 10px rgba(255, 241, 118, 0.45);
        }
        50% {
            box-shadow:
                0 0 40px #8f5d00,
                0 0 55px rgba(255, 208, 0, 0.55);
        }
    }

    @keyframes spinEnergy {
        to { transform: rotate(360deg); }
    }

    @keyframes floatUp {
        0% {
            opacity: 0;
            transform: translate(-50%, 50px);
        }

        100% {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }
