.chillphonic-radio-player {
    background: #1a1a1a;
    color: #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cover-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 250px;
    margin: 0 auto;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.track-title {
    font-size: clamp(1.5rem, 4vw, 1.875rem); /* responsive h4 */
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.track-artist {
    font-size: clamp(1.125rem, 3.5vw, 1.25rem); /* responsive h5 */
    color: #b0b0b0;
}

.player-controls {
    text-align: center;
}

.btn-play-pause {
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    margin: 0;
}

@media (max-width: 767.98px) {
    .btn-play-pause {
        width: 56px;
        height: 56px;
    }
}

.btn-play-pause:hover {
    background: rgba(79, 195, 247, 0.2);
}

.btn-play-pause img {
    width: 100%;
    height: 100%;
    display: block;
    /* Nessun filter: invert — colore gestito negli SVG */
}

.fallback-toggle {
    text-align: center;
}

.alt-player-btn {
    background: rgba(255,255,255,0.1) !important;
    border-color: #4fc3f7 !important;
    color: #4fc3f7 !important;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.alt-player-btn:hover {
    background: rgba(79, 195, 247, 0.2) !important;
}