.audio-player-container-bf54d3d9 {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 16px 24px;
    gap: 24px;
    width: 100%;
    background: #5DBBD1;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.controls-wrapper-bf54d3d9 {
    flex-shrink: 0;
}

.control-btn-bf54d3d9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #DD3663;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
    outline: none;
    padding: 0;
}

.control-btn-bf54d3d9:hover {
    opacity: 0.8;
}

.icon-svg-bf54d3d9 {
    fill: #FFFFFF;
    width: 20px;
    height: 20px;
}

.right-content-bf54d3d9 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
    gap: 8px; /* controlled by widget settings now, but fallback here */
}

.top-row-bf54d3d9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.player-text-bf54d3d9 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: 'Hanken Grotesk', sans-serif;
    white-space: nowrap;
}

.title-bf54d3d9 {
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.time-bf54d3d9 {
    flex-shrink: 0;
    margin-left: 16px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}

.time-bf54d3d9:hover {
    opacity: 0.8;
}

.title-tablet-bf54d3d9, .title-mobile-bf54d3d9 {
    display: none;
}

@media (max-width: 1024px) {
    .title-desktop-bf54d3d9 { display: none; }
    .title-tablet-bf54d3d9 { display: block; }
}

@media (max-width: 767px) {
    .title-tablet-bf54d3d9 { display: none; }
    .title-mobile-bf54d3d9 { display: block; }
}

.progress-wrapper-bf54d3d9 {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.progress-container-bf54d3d9 {
    height: 4px;
    background: rgba(255,255,255,0.3);
    width: 100%;
    position: relative;
    border-radius: 2px;
    pointer-events: none;
}

.progress-bar-bf54d3d9 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: #DD3663;
    border-radius: 2px;
    transition: width 0.1s linear;
}