.audio-player-card-e9a3fadd {
    background: #1c1f26;
    border: 1px solid #2f343f;
    border-radius: 12px;
    padding: 20px;
    margin: 15px auto;
    max-width: 550px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-header-e9a3fadd {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-icon-e9a3fadd {
    width: 48px;
    height: 48px;
    background: #0084ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.player-meta-e9a3fadd {
    flex-grow: 1;
}

.player-title-e9a3fadd {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.player-author-e9a3fadd {
    margin: 0;
    font-size: 13px;
    color: #8c96a3;
}

/* Controls */
.custom-player-controls-e9a3fadd {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #14161d;
    padding: 10px 15px;
    border-radius: 8px;
}

.btn-play-pause-e9a3fadd {
    background: #0084ff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s, transform 0.1s;
}

.btn-play-pause-e9a3fadd:hover {
    background: #0066cc;
    transform: scale(1.05);
}

.progress-container-e9a3fadd {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    font-size: 12px;
    color: #8c96a3;
}

.progress-bar-e9a3fadd {
    flex-grow: 1;
    height: 6px;
    background: #2f343f;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-filled-e9a3fadd {
    height: 100%;
    background: #0084ff;
    width: 0%;
    border-radius: 3px;
    position: relative;
}

/* Footer & download */
.player-footer-e9a3fadd {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-button-e9a3fadd {
    background: #23a455;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.download-button-e9a3fadd:hover {
    background: #1b8543;
    color: white;
}

.download-stats-e9a3fadd {
    font-size: 13px;
    color: #8c96a3;
}
.download-stats-e9a3fadd strong {
    color: #0084ff;
}
