.custom-audio-player-block {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.audio-player-title {
    color: #ffffff;
    font-size: 1.5em;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-audio-player {
    width: 100%;
    border-radius: 8px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.custom-audio-player::-webkit-media-controls-panel {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.custom-audio-player::-webkit-media-controls-play-button,
.custom-audio-player::-webkit-media-controls-current-time-display,
.custom-audio-player::-webkit-media-controls-time-remaining-display {
    color: #333;
}

/* Firefox */
.custom-audio-player::-moz-range-thumb {
    background: #667eea;
}

/* Alternative simple style */
.custom-audio-player-block.simple-style {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-audio-player-block.simple-style .audio-player-title {
    color: #333;
    text-shadow: none;
}

.custom-audio-player-block.simple-style .custom-audio-player {
    background-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-audio-player-block {
        padding: 20px;
    }
    
    .audio-player-title {
        font-size: 1.2em;
    }
}
