.audio-player {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.audio-waveform-container {
    position: relative;
    width: 100%;
    height: 80px;
    background: #0d0d0d;
    border-radius: 4px;
    margin-bottom: 15px;
    cursor: pointer;
    overflow: hidden;
}

.audio-waveform {
    width: 100%;
    height: 100%;
    display: block;
}

.audio-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgba(139, 0, 255, 0.1);
    pointer-events: none;
    transition: none;
}

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

.audio-play-btn {
    background: #4a0070;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-play-btn:hover {
    background: #6b00a0;
    transform: scale(1.05);
}

.audio-play-btn:active {
    transform: scale(0.95);
}

.audio-play-btn svg {
    fill: #e0e0e0;
    width: 24px;
    height: 24px;
}

.audio-time {
    color: #e0e0e0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
}

.audio-separator {
    margin: 0 4px;
    color: #666;
}

.audio-current-time {
    color: #8b00ff;
}

.audio-duration {
    color: #999;
}

@media (max-width: 600px) {
    .audio-player {
        padding: 15px;
    }
    
    .audio-waveform-container {
        height: 60px;
    }
    
    .audio-play-btn {
        width: 40px;
        height: 40px;
    }
    
    .audio-time {
        font-size: 12px;
    }
}