.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    border: 1px solid #c9a84c;
    border-radius: 50px;
    padding: 10px 16px;
    margin: 16px 0;
    box-shadow: 0 2px 10px rgba(201,168,76,0.15);
}

.ap-play {
    background: #c9a84c;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.1s;
}
.ap-play:hover { opacity: 0.85; transform: scale(1.05); }
@keyframes ap-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); } 50% { box-shadow: 0 0 0 10px rgba(201,168,76,0); } }
.ap-pulse { animation: ap-pulse 1.4s ease-in-out infinite; }
.ap-play svg { width: 20px; height: 20px; fill: #000; }

.ap-progress-track {
    flex: 1;
    height: 5px;
    background: #333;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.ap-progress-fill {
    height: 100%;
    width: 0%;
    background: #c9a84c;
    border-radius: 3px;
    transition: width 0.1s linear;
    pointer-events: none;
}

.ap-time {
    color: #c9a84c;
    font-size: 0.75rem;
    font-family: monospace;
    min-width: 36px;
    text-align: right;
    flex-shrink: 0;
}

.ap-vol-icon {
    width: 18px;
    height: 18px;
    fill: #c9a84c;
    flex-shrink: 0;
}

.ap-volume {
    -webkit-appearance: none;
    appearance: none;
    width: 68px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
}
.ap-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c9a84c;
    cursor: pointer;
}
.ap-volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c9a84c;
    cursor: pointer;
    border: none;
}
