.audio-player {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    background: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.poster {
    text-align: center;
    margin-bottom: 20px;
}

.poster img {
    max-width: 200px;
    border-radius: 4px;
}

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

.title {
    margin: 10px 0;
    font-size: 1.2em;
}

.description {
    margin: 10px 0;
    font-size: 1em;
    color: #666;
}

.controls {
    margin: 20px 0;
}

.controls button {
    padding: 8px 16px;
    margin: 0 5px;
    border: none;
    border-radius: 4px;
    background: none;
    color: #007bff;
    cursor: pointer;
    font-size: 1.5em;
    transition: color 0.3s, box-shadow 0.3s;
}

.controls button:hover {
    color: #0056b3;
}

.controls .play.glow {
    box-shadow: 0 0 10px #007bff;
}

.controls .volume-icon {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #007bff;
    cursor: pointer;
    position: relative;
}

.controls .volume {
    width: 100px;
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.progress {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

.progress-bar {
    height: 100%;
    background: #007bff;
    border-radius: 4px;
    width: 0;
}

.time {
    font-size: 0.9em;
    color: #666;
}

.playlist-container {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.playlist-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.playlist-container li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.playlist-container li:hover {
    background: #eee;
}

.playlist-container li.active {
    background: #e3f2fd;
    color: #007bff;
}
