.audio-player-container-5dd7638e {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1e;
    color: #ffffff;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 650px;
    margin: 20px auto;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Track Information */
.player-info-5dd7638e {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    flex: 1 1 auto;
}

.player-disc-icon-5dd7638e {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    animation: rotateDisc5dd7638e 8s linear infinite;
    animation-play-state: paused;
}

.audio-player-container-5dd7638e.is-playing .player-disc-icon-5dd7638e {
    animation-play-state: running;
}

.player-disc-icon-5dd7638e svg {
    width: 24px;
    height: 24px;
}

.track-details-5dd7638e {
    display: flex;
    flex-direction: column;
}

.track-title-5dd7638e {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.track-artist-5dd7638e {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #a1a1aa;
    line-height: 1;
}

/* Controls and Progress */
.player-controls-container-5dd7638e {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 2 1 350px;
}

.primary-controls-5dd7638e {
    display: flex;
    align-items: center;
}

.btn-play-pause-5dd7638e {
    background: #10b981;
    border: none;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    padding: 0;
    outline: none;
}

.btn-play-pause-5dd7638e:hover {
    transform: scale(1.05);
    background: #34d399;
}

.btn-play-pause-5dd7638e svg {
    width: 20px;
    height: 20px;
}

/* Progress Slider */
.progress-bar-container-5dd7638e {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.time-current-5dd7638e,
.time-total-5dd7638e {
    font-size: 11px;
    color: #a1a1aa;
    width: 32px;
    text-align: center;
}

.progress-track-wrapper-5dd7638e {
    position: relative;
    flex-grow: 1;
    height: 6px;
    display: flex;
    align-items: center;
}

.progress-track-5dd7638e {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    position: relative;
}

.progress-fill-5dd7638e {
    height: 100%;
    background: #10b981;
    border-radius: 2px;
    width: 0%;
}

.progress-slider-5dd7638e {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

/* Volume Control */
.volume-container-5dd7638e {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.btn-volume-5dd7638e {
    background: none;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.btn-volume-5dd7638e:hover {
    color: #ffffff;
}

.btn-volume-5dd7638e svg {
    width: 18px;
    height: 18px;
}

.volume-slider-wrapper-5dd7638e {
    width: 60px;
    display: flex;
    align-items: center;
}

.volume-slider-5dd7638e {
    width: 100%;
    height: 4px;
    accent-color: #10b981;
    cursor: pointer;
}

/* Error styling */
.audio-player-error-5dd7638e {
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
}

@keyframes rotateDisc5dd7638e {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
