/* Shared Buzzen profile audio player — Build 0176 */
.buzzen-profile-audio-shell {
    width: 100%;
}

.buzzen-profile-audio {
    display: block;
    width: 100%;
    min-height: 42px;
}

.buzzen-profile-audio-shell.is-enhanced > .buzzen-profile-audio {
    display: none;
}

.buzzen-profile-audio-controls {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    gap: 10px;
    align-items: center;
    min-height: 62px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(27,121,189,.28);
    border-radius: 13px;
    background:
        radial-gradient(circle at 92% 14%, rgba(255,210,74,.18), transparent 31%),
        linear-gradient(135deg, #103b5b, #155d8c 62%, #124b70);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 6px 16px rgba(17,71,111,.12);
}

.buzzen-profile-audio-controls::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 0;
    left: 10px;
    height: 2px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, #1b79bd, #ffd24a);
    opacity: .9;
}

.buzzen-profile-audio-play,
.buzzen-profile-audio-mute {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 0;
    cursor: pointer;
    transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.buzzen-profile-audio-play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffd955, #f2ab1f);
    color: #123d5c;
    box-shadow: 0 5px 12px rgba(4,30,47,.25), inset 0 1px 0 rgba(255,255,255,.55);
    font-size: 14px;
}

.buzzen-profile-audio-play i.fa-play {
    transform: translateX(1px);
}

.buzzen-profile-audio-mute {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.11);
    color: #eaf7ff;
    font-size: 14px;
}

.buzzen-profile-audio-play:hover,
.buzzen-profile-audio-mute:hover {
    transform: translateY(-1px);
}

.buzzen-profile-audio-play:hover {
    box-shadow: 0 7px 15px rgba(4,30,47,.3), inset 0 1px 0 rgba(255,255,255,.55);
}

.buzzen-profile-audio-mute:hover {
    background: rgba(255,255,255,.18);
}

.buzzen-profile-audio-play:focus-visible,
.buzzen-profile-audio-mute:focus-visible,
.buzzen-profile-audio-progress:focus-visible {
    outline: 2px solid #ffd24a;
    outline-offset: 2px;
}

.buzzen-profile-audio-track {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.buzzen-profile-audio-progress {
    --profile-audio-progress: 0%;
    display: block;
    width: 100%;
    height: 16px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.buzzen-profile-audio-progress::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd24a 0 var(--profile-audio-progress), rgba(255,255,255,.25) var(--profile-audio-progress) 100%);
}

.buzzen-profile-audio-progress::-webkit-slider-thumb {
    width: 13px;
    height: 13px;
    margin-top: -4px;
    border: 2px solid #ffd24a;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(3,30,48,.35);
    appearance: none;
    -webkit-appearance: none;
}

.buzzen-profile-audio-progress::-moz-range-track {
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.25);
}

.buzzen-profile-audio-progress::-moz-range-progress {
    height: 5px;
    border-radius: 999px;
    background: #ffd24a;
}

.buzzen-profile-audio-progress::-moz-range-thumb {
    width: 11px;
    height: 11px;
    border: 2px solid #ffd24a;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(3,30,48,.35);
}

.buzzen-profile-audio-progress:disabled {
    cursor: default;
    opacity: .55;
}

.buzzen-profile-audio-time {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 1px;
    color: rgba(234,247,255,.88);
    font-size: 12px;
    font-weight: 750;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.buzzen-profile-audio-status {
    margin: 8px 0 0;
    color: #9a4d11;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}
