.custom-audio-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
}

.custom-audio-box .custom-icon-wrapper .elementor-icon {
    color: white;
    font-size: 24px;
}

/* Animasi putaran sederhana saat audio diputar */
.custom-audio-box.playing {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}