.rp-container-f5c75af5 {
    padding: 50px 20px;
    font-family: sans-serif;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rp-bg-image {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(20px);
    z-index: 1;
    transition: background-image 0.5s ease-in-out;
}
.rp-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.rp-eq-canvas-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}
.rp-eq-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.rp-content-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    z-index: 4;
    position: relative;
    align-items: flex-end;
    justify-content: flex-start;
}

.rp-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}
.rp-album-wrapper {
    position: relative;
    width: 300px; 
    height: 300px; 
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2), 0 0 0 6px rgba(255, 255, 255, .2);
    overflow: visible;
}
.rp-album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rp-album-inner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
    z-index: 2;
}

.rp-overlay-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.rp-mini-eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}
.rp-mini-bar {
    width: 3px;
    height: 14px;
    background-color: #fff;
    animation: rp-mini-bounce 0.8s infinite ease-in-out;
}
.rp-mini-bar:nth-child(1) { animation-delay: 0.1s; }
.rp-mini-bar:nth-child(2) { animation-delay: 0.3s; }
.rp-mini-bar:nth-child(3) { animation-delay: 0.5s; }

@keyframes rp-mini-bounce {
    0%, 100% { height: 4px; }
    50% { height: 14px; }
}

.rp-volume-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rp-volume-toggle {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.rp-volume-toggle:hover {
    background: none !important;
    box-shadow: none !important;
    transform: scale(1.1);
}
.rp-volume-slider-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 0px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    width: 36px;
    margin-bottom: 8px;
}
.rp-volume-slider-popup::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}
.rp-volume-container:hover .rp-volume-slider-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.rp-volume-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 6px;
    background: #ffffff;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transform: rotate(-90deg);
    transform-origin: center;
    margin: 0;
    padding: 0;
}
.rp-volume-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #ffffff;
    border-radius: 3px;
}
.rp-volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff !important;
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    border: none;
}
.rp-volume-range::-moz-range-track {
    width: 100%;
    height: 6px;
    background: #ffffff;
    border-radius: 3px;
}
.rp-volume-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff !important;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.player-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}
.player-social-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}
.player-social-link:hover {
    transform: scale(1.1);
    background-color: var(--color-brand, #ffffff);
    border-color: var(--color-brand, #ffffff);
    box-shadow: 0 0 10px 0 var(--color-brand, rgba(255,255,255,0.5));
}
.player-social-link i,
.player-social-link svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.rp-col-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
}
.player-info {
    margin-bottom: 20px;
}
.rp-status-top {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.rp-status-text-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rp-eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}
.rp-eq-bar {
    width: 3px;
    background-color: currentColor;
    animation: eq-bounce 1s infinite ease-in-out;
}
.rp-eq-bar:nth-child(1) { animation-delay: 0s; }
.rp-eq-bar:nth-child(2) { animation-delay: 0.2s; }
.rp-eq-bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes eq-bounce {
    0%, 100% { height: 4px; }
    50% { height: 12px; }
}

.badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}
.rp-title {
    font-size: 48px;
    font-weight: 800;
    margin: 5px 0 25px;
    line-height: 1.2;
    word-wrap: break-word;
    color: #fff;
}
.rp-controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.rp-play-btn {
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.rp-play-btn svg {
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
}

.rp-main-share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 15px;
    padding: 0;
}
.rp-main-share-btn:hover {
    transform: scale(1.08);
}
.rp-main-share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.rp-apps {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.header-app-item {
    display: block;
}
.header-app-item img {
    max-width: 150px; 
    height: auto;
    display: block;
}

/* Sticky player footer bar */
.rp-sticky-bar-f5c75af5 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(90deg, #091a2f 0%, #0c2543 100%);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    padding: 0;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.rp-sticky-bar-f5c75af5.rp-sticky-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.rp-sticky-blur-bg {
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(25px);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.rp-sticky-canvas-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 90px;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.rp-sticky-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.rp-sticky-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.rp-sticky-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.rp-sticky-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    border: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.rp-sticky-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.rp-sticky-badge {
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rp-sticky-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: rp-dot-pulse 1.2s infinite;
}

@keyframes rp-dot-pulse {
    0% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

.rp-sticky-title {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.2px;
}

.rp-sticky-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.rp-sticky-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.rp-sticky-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.rp-sticky-play-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.rp-sticky-vol-btn,\n.rp-sticky-share-btn {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: all 0.2s ease;
}

.rp-sticky-vol-btn {
    color: rgba(255,255,255,0.7);
}
.rp-sticky-vol-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.rp-sticky-share-btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.rp-sticky-share-btn:hover {
    transform: scale(1.08);
}

.rp-sticky-vol-btn svg,\n.rp-sticky-share-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 991px) {
    .rp-content-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }
    .rp-col-right {
        text-align: center;
        align-items: center;
        margin-left: 0 !important;
    }
    .rp-status-top {
        justify-content: center;
    }
    .rp-controls {
        justify-content: center;
    }
    .rp-apps {
        justify-content: center;
        margin-top: 20px !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 767px) {
    .rp-sticky-bar-f5c75af5 {
        height: 90px;
        padding: 0;
    }
    .rp-sticky-content {
        padding: 0 15px;
    }
    .rp-sticky-img {
        width: 90px;
        height: 90px;
    }
    .rp-sticky-title {
        font-size: 13px;
        max-width: 140px;
    }
    .rp-sticky-right {
        gap: 10px;
    }
    .rp-sticky-play-btn {
        width: 40px;
        height: 40px;
    }
    .rp-sticky-play-btn svg {
        width: 18px;
        height: 18px;
    }
}
