
.crp-player {
    width: 100%;
    max-width: 540px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #18252c 0%, #263940 100%);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(0,0,0,.20);
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    position: relative;
    isolation: isolate;
}

.crp-cover {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #13a6b8, #63e4df);
    box-shadow: 0 8px 25px rgba(19,166,184,.30);
}

.crp-eq {
    height: 28px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.crp-eq span {
    width: 4px;
    height: 10px;
    display: block;
    border-radius: 5px;
    background: #fff;
}

.crp-player.is-playing .crp-eq span {
    animation: crpBars .8s infinite ease-in-out;
}
.crp-player.is-playing .crp-eq span:nth-child(2) { animation-delay: .12s; }
.crp-player.is-playing .crp-eq span:nth-child(3) { animation-delay: .24s; }
.crp-player.is-playing .crp-eq span:nth-child(4) { animation-delay: .36s; }

@keyframes crpBars {
    0%, 100% { height: 8px; }
    50% { height: 27px; }
}

.crp-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.crp-live {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    color: #71edf0;
}

.crp-live-dot {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #71edf0;
    animation: crpPulse 1.7s infinite;
}

@keyframes crpPulse {
    0% { box-shadow: 0 0 0 0 rgba(113,237,240,.55); }
    70% { box-shadow: 0 0 0 8px rgba(113,237,240,0); }
    100% { box-shadow: 0 0 0 0 rgba(113,237,240,0); }
}

.crp-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.crp-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,.56);
}

.crp-play {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50%;
    background: #fff !important;
    color: #18252c !important;
    cursor: pointer !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.20);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.crp-play * {
    pointer-events: none !important;
}

.crp-play:hover {
    transform: scale(1.07);
    background: #71edf0 !important;
    box-shadow: 0 8px 24px rgba(113,237,240,.25);
}

.crp-play:focus-visible {
    outline: 3px solid rgba(113,237,240,.45);
    outline-offset: 3px;
}

.crp-play-icon {
    font-size: 18px;
    line-height: 1;
}

.crp-player.is-loading .crp-play-icon {
    animation: crpBlink .8s infinite;
}

@keyframes crpBlink {
    50% { opacity: .35; }
}

.crp-volume {
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 20;
}

.crp-volume-icon {
    font-size: 14px;
}

.crp-volume-slider {
    width: 72px;
    cursor: pointer;
    accent-color: #63e4df;
    pointer-events: auto !important;
}

@media (max-width: 600px) {
    .crp-player {
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
    }

    .crp-cover {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .crp-title {
        font-size: 15px;
    }

    .crp-play {
        width: 48px;
        height: 48px;
    }

    .crp-volume {
        display: none;
    }
}
