.vp-player-container {
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid #bf8331;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    box-sizing: border-box;
    background-color: #121212;
}

/* Compact Premium Vinyl Disc */
.vp-vinyl-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    perspective: 800px;
}

.vp-vinyl-disc {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #0d0d0d;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    border: 3px solid #bf8331;
}

/* Vinyl concentric grooves */
.vp-vinyl-grooves {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    background: repeating-radial-gradient(
        circle,
        #0a0a0a,
        #0a0a0a 1.5px,
        #151515 2px,
        #151515 4px
    );
    pointer-events: none;
}

/* Center Logo resembling premium Vinyl Record Sticker */
.vp-vinyl-center-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #000;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.6);
}

.vp-vinyl-center-logo::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.8);
}

/* Spin animation applied dynamically when playing */
.vp-player-container.playing .vp-vinyl-disc {
    animation: vp-spin 4s linear infinite;
}

@keyframes vp-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Track Information */
.vp-track-info {
    margin-bottom: 16px;
}

.vp-current-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
}

.vp-current-artist {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.6;
    color: #eaeaea;
}

/* Controls Panel */
.vp-controls-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vp-control-btn {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.vp-control-btn svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.vp-control-btn:hover svg {
    transform: scale(1.1);
}

.vp-btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bf8331;
}

.vp-btn-play svg {
    width: 22px;
    height: 22px;
}

.vp-btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Progress and Timeline */
.vp-timeline-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vp-time {
    font-size: 0.75rem;
    opacity: 0.6;
    width: 35px;
}

.vp-progress-bar-track {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.vp-progress-bar-current {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: width 0.1s linear;
    background-color: #bf8331;
}

/* Playlist Section */
.vp-playlist-wrapper {
    max-height: 150px;
    overflow-y: auto;
    text-align: left;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 8px;
}

.vp-playlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 4px;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.vp-playlist-item:hover {
    background: rgba(255,255,255,0.05);
}

.vp-playlist-item.active {
    background: rgba(255,255,255,0.08);
}

.vp-item-details {
    display: flex;
    flex-direction: column;
}

.vp-item-title {
    font-size: 0.85rem;
    font-weight: 500;
}

.vp-item-artist {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 1px;
}

.vp-item-duration {
    font-size: 0.8rem;
    opacity: 0.5;
}
