.zafem-radio-player {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 15px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.play-btn {
    background: var(--primary-color, #ff5500);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
}

.play-btn .pause-icon {
    display: none;
}

.play-btn.playing .play-icon {
    display: none;
}

.play-btn.playing .pause-icon {
    display: block;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.mute-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 30px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color, #ff5500);
    cursor: pointer;
}

.player-status {
    flex: 1;
    min-width: 200px;
}

.song-info {
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-title {
    font-weight: 500;
    color: #fff;
}

.station-info {
    font-size: 12px;
    opacity: 0.8;
}

.player-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 10px;
    padding: 8px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 6px;
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .player-controls {
        gap: 10px;
    }
    
    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .volume-slider {
        width: 60px;
    }
    
    .player-status {
        min-width: 150px;
        font-size: 12px;
    }
}

/* Loading animation */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.song-title:empty::after {
    content: 'Loading...';
    animation: pulse 1.5s infinite;
}