
#tvdj-player {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
    color: #0ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 10000;
    font-family: 'Courier New', monospace;
    box-shadow: 0 -5px 15px rgba(0, 255, 255, 0.3);
    border-top: 2px solid #0ff;
}
.tvdj-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.tvdj-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid #0ff;
    box-shadow: 0 0 10px #0ff;
}
.tvdj-info .pulse {
    animation: pulse-glow 1.5s infinite;
    font-weight: bold;
    font-size: 14px;
}
.track-title {
    font-size: 13px;
    margin-top: 4px;
}
.tvdj-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
#playPauseBtn {
    background: transparent;
    border: 2px solid #0ff;
    color: #0ff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    text-shadow: 0 0 6px #0ff;
    transition: 0.3s;
}
#playPauseBtn:hover {
    background: #0ff;
    color: #000;
}
#volume-control {
    width: 100px;
}
@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 8px #0ff; }
    50% { text-shadow: 0 0 20px #00ffff; }
}
@media (max-width: 600px) {
    #tvdj-player {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    .tvdj-left, .tvdj-right {
        width: 100%;
        justify-content: center;
    }
    .tvdj-left {
        margin-bottom: 10px;
    }
}
