/* ===== Jooy Player de Rádio ===== */
.jooy-player {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
}

.jooy-player__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FF5406;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: background 0.2s;
}

.jooy-player__btn[data-playing="loading"] {
    background: rgba(255, 84, 6, 0.15);
    pointer-events: none;
    cursor: default;
}

.jooy-player__btn[data-playing="loading"] .jooy-player__icon {
    opacity: 0;
}

.jooy-player__btn[data-playing="loading"]::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 3px solid rgba(255, 84, 6, 0.25);
    border-top-color: #FF5406;
    animation: jooy-player-spin 0.8s linear infinite;
}

@keyframes jooy-player-spin {
    to { transform: rotate(360deg); }
}

.jooy-player__btn:hover {
    background: #c0000b;
}

.jooy-player__icon {
    width: 40px;
    height: 40px;
    fill: #ffbe03;
}

.jooy-player__volume {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jooy-player__vol-icon {
    width: 20px;
    height: 20px;
    fill: #000000;
    flex-shrink: 0;
}

.jooy-player__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    border-radius: 2px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAFCAYAAABirU3bAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAACJJREFUeAGdyKERAAAIA7GHO/aficUAhalsZALY6eIlwogD3yICzYBAazQAAAAASUVORK5CYII=");
    outline: none;
    cursor: pointer;
}

.jooy-player__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e8000e;
    cursor: pointer;
}

.jooy-player__slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    border: none;
}

@media (max-width: 480px) {
    .jooy-player__slider {
        width: 70px;
    }
}
