.video-player-container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 143, 57, 0.3);
    color: #fff;
}

.track-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

#track-title {
    flex-grow: 1;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff88;
}

#share-btn,
#download-request-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

#share-btn:hover,
#download-request-btn:hover {
    color: #00ff88;
    transform: scale(1.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    margin-bottom: 15px;
    background-color: #000;
    border-radius: 8px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.playlist {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
}

.playlist li {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 143, 57, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.playlist li:hover {
    background-color: rgba(0, 143, 57, 0.2);
}

.playlist li.active {
    background-color: rgba(0, 143, 57, 0.4);
    color: #00ff88;
    font-weight: bold;
}

.playlist::-webkit-scrollbar {
    width: 8px;
}

.playlist::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.playlist::-webkit-scrollbar-thumb {
    background-color: #008f39;
    border-radius: 10px;
}