/* Conteneur principal */
.radio-player {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 500px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Contrôles */
.player-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.live-indicator {
    color: #e74c3c;
    font-size: 16px;
}

.player-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.play-pause-btn {
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 100px;
    -webkit-appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

/* Visualiseur statique (sans animation) */
.player-visualizer {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
    padding: 10px 0;
}

.visualizer-bars {
    display: flex;
    gap: 2px;
}

.visualizer-bars .bar {
    width: 3px;
    height: 10px;
    background: linear-gradient(to top, #f39c12, #e74c3c);
    border-radius: 2px;
}

/* Infos */
.stream-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.stream-status {
    color: #f39c12;
}

/* Responsive */
@media (max-width: 600px) {
    .radio-player {
        max-width: 90%;
    }
    .player-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
