﻿:root {
    --mint: #2ec5a7;
    --mint-d: #1f7e6f;
    --ink: #1f2d3b;
    --muted: #6a7f92;
    --card: #fff;
}

.audio-player {
    display: flex;
    align-items: center;
    gap:1rem;
/*    background: var(--card);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(26,52,73,.12);*/
}

@media (max-width:680px) {
    .audio-player {
        grid-template-columns: 1fr
    }
}

.ap-cover {
    border-radius: 20px;
    background: linear-gradient(135deg,#eef7ff,#ffffff);
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow: inset 0 0 0 2px #edf4fb;
    overflow: hidden;
    padding:5.5rem;
}

    .ap-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.ap-cover-ph {
    font-size: 56px
}

.ap-title {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 8px
}

.ap-wave {
    height: 64px
}

    .ap-wave svg {
        width: 100%;
        height: 100%
    }

    .ap-wave rect {
        rx: 2;
        fill: #7de0cf
    }

.ap-timebar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px
}

.ap-time {
    font-weight: 900;
    min-width: 54px;
    color: var(--ink)
}

.ap-progress {
    flex: 1;
    height: 10px;
    background: #e7eef6;
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 1px 0 #fff
}

    .ap-progress > span {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(90deg,var(--mint-d),var(--mint));
        border-radius: 999px
    }

.ap-controls {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.ap-btn {
    border: 0;
    background: #fff;
    border-radius: 16px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(26,52,73,.12);
    cursor: pointer;
    font-weight: 900;
    color: #3a4b58
}

    .ap-btn:active {
        transform: translateY(1px)
    }

.ap-primary {
    border-radius: 18px
}

.ap-chip {
    background: #f6f9ff;
    border-radius: 14px;
    padding: 8px 12px;
    box-shadow: 0 10px 30px rgba(26,52,73,.12);
    font-weight: 900;
    cursor: pointer
}
