@media (max-width: 600px) {
    .wl-vol-container {
        display: none !important;
    }
    
    .wl-label-container {
        position: relative !important;
    }
    
    .ai-player-wrapper.wl-is-playing .wl-label-container {
        color: transparent !important;
    }
    
    .wl-label-container .wl-sound-wave {
        display: flex !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        height: 16px !important;
        margin: 0 !important;
        padding: 0 !important;
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .ai-player-wrapper.wl-is-playing .wl-label-container .wl-sound-wave {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .wl-sound-wave ~ .wl-sound-wave {
        display: none !important;
    }
}
.ai-player-wrapper {
    position: relative;
} 
.ai-player-wrapper.wl-sticky-active {
    position: fixed !important;
    bottom: 20px;
    width: 280px;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
    animation: wlSlideUp 0.3s ease-out;
    margin-bottom: 0 !important;
    padding: 15px !important;
    backdrop-filter: blur(5px);
}
.ai-player-wrapper.wl-sticky-active .wl-label-container,
.ai-player-wrapper.wl-sticky-active .wl-vol-container {
    display: none !important;
}
.wl-sound-wave {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 3px;
    pointer-events: none;
}
.wl-sound-wave span {
    display: block;
    width: 3px;
    border-radius: 4px;
    height: 10%;
    animation: wlVoiceAnim 1.2s ease-in-out infinite;
}
.wl-sound-wave span:nth-child(1) {
    animation-duration: 0.8s;
    animation-delay: -0.2s;
    height: 15%;
    opacity: 0.6;
}
.wl-sound-wave span:nth-child(2) {
    animation-duration: 1.1s;
    animation-delay: -0.5s;
    height: 30%;
    opacity: 0.8;
}
.wl-sound-wave span:nth-child(3) {
    animation-duration: 1.3s;
    animation-delay: -0.1s;
    height: 50%;
    opacity: 1.0;
}
.wl-sound-wave span:nth-child(4) {
    animation-duration: 0.9s;
    animation-delay: -0.8s;
    height: 60%;
    opacity: 1.0;
}
.wl-sound-wave span:nth-child(5) {
    animation-duration: 1.2s;
    animation-delay: -0.6s;
    height: 50%;
    opacity: 1.0;
}
.wl-sound-wave span:nth-child(6) {
    animation-duration: 1.0s;
    animation-delay: -0.3s;
    height: 30%;
    opacity: 0.8;
}
.wl-sound-wave span:nth-child(7) {
    animation-duration: 0.7s;
    animation-delay: 0s;
    height: 15%;
    opacity: 0.6;
}
@keyframes wlVoiceAnim {
    0%,
    100% {
        transform: scaleY(1);
    }
    20% {
        transform: scaleY(2.5);
    }
    40% {
        transform: scaleY(1.2);
    }
    60% {
        transform: scaleY(3.2);
    }
    80% {
        transform: scaleY(1.8);
    }
}
.wl-wave-inline {
    height: 16px;
    margin-left: 10px;
    position: relative;
}
.wl-wave-absolute {
    height: 24px;
    margin-left: 70px;
    position: absolute;
    top: 18px;
    z-index: 10;
    display: none;
}
@keyframes wlSlideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.wl-disclaimer-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 10px;
    color: #999;
    margin-bottom: -3px;
    margin-right: 30px;
    font-style: italic;
    width: max-content;
    float: right;
}
.ai-player-wrapper.wl-sticky-active .wl-disclaimer-text {
    display: none !important;
}
.wl-label-container {
    font-size: 14px;
}
.wl-disclaimer-text {
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
    margin-top: -7px;
    white-space: nowrap; 
}
@media (max-width: 768px) {
    .wl-disclaimer-text {
        left: 50%; 
        transform: translateX(-50%); 
        margin-top: 30px !important; 
        margin-left: 0 !important;
        width: 100%; 
        text-align: center;
        white-space: normal;
    }
}
@media (max-width: 600px) {
.ai-player-wrapper.wl-sticky-active {
        width: 100% !important;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 15px 15px 0 0 !important;
        border: none !important;
    }
}
.wl-frontend-sticky-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    transform: translateX(150px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}
.wl-frontend-sticky-player[style*="right:"] {
    transform: translateX(150px);
}

.wl-frontend-sticky-player[style*="left:"] {
    transform: translateX(-150px);
}

.wl-frontend-sticky-player.is-visible {
    transform: translateX(0) !important;
    opacity: 1;
}

.wl-frontend-sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    padding: 0;
}

.wl-frontend-sticky-btn:hover {
    transform: scale(1.05) translateY(-5px);
}

.wl-frontend-sticky-btn .wl-icon-play {
    margin-left: 3px;
    display: block;
}

.wl-sticky-eq {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 24px;
}

.wl-sticky-eq span {
    display: block;
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: wl-bounce-btn 0.4s infinite ease-in-out alternate;
}

.wl-sticky-eq span:nth-child(1) { height: 60%; animation-delay: 0s; }
.wl-sticky-eq span:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.wl-sticky-eq span:nth-child(3) { height: 40%; animation-delay: 0.3s; }

@keyframes wl-bounce-btn {
    from { transform: scaleY(0.5); }
    to { transform: scaleY(1); }
}

@media (max-width: 768px) {
    .wl-frontend-sticky-player {
        bottom: 20px;
        right: 20px;
    }
}
