/*
LECTEUR AUDIO
Designer: Erando Ciko
https://erinformatique.com
*/

#soundIndicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.9), rgba(0, 178, 255, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 4px 20px rgba(255, 94, 0, 0.5), 0 2px 10px rgba(0, 178, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 1;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#soundIndicator:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(255, 94, 0, 0.7), 0 4px 15px rgba(0, 178, 255, 0.5);
}

#soundIndicator:active {
    transform: scale(0.95);
}