.angie-audio-player-container-e9a3fadd {
    background: #1e1e24;
    border-radius: 12px;
    padding: 24px;
    color: #ffffff;
    max-width: 1000px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Montserrat', sans-serif;
    border-left: 5px solid #1e80ef;
}
.angie-audio-player-title-e9a3fadd {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e80ef;
}
.angie-audio-player-meta-e9a3fadd {
    font-size: 0.9rem;
    color: #a0a0a9;
    margin-bottom: 16px;
    display: flex;
    gap: 15px;
}
.angie-audio-controls-e9a3fadd {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #2a2a35;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.angie-play-btn-e9a3fadd {
    background: #1e80ef;
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.angie-play-btn-e9a3fadd:hover {
    background: #1562bc;
    transform: scale(1.05);
}
.angie-progress-container-e9a3fadd {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.angie-progress-bar-e9a3fadd {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #4a4a5a;
    outline: none;
    cursor: pointer;
}
.angie-progress-bar-e9a3fadd::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1e80ef;
    cursor: pointer;
    transition: transform 0.1s;
}
.angie-progress-bar-e9a3fadd::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}
.angie-time-e9a3fadd {
    font-size: 0.85rem;
    color: #a0a0a9;
    min-width: 45px;
}
.angie-download-section-e9a3fadd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #2a2a35;
    padding-top: 15px;
    margin-top: 15px;
}
.angie-download-btn-e9a3fadd {
    background: #2d7633;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}
.angie-download-btn-e9a3fadd:hover {
    background: #1f5024;
    transform: scale(1.03);
    color: white;
}
.angie-stats-e9a3fadd {
    font-size: 0.9rem;
    color: #a0a0a9;
    display: flex;
    align-items: center;
    gap: 5px;
}