#player {
    display: flex;
    flex-direction: column;
    height: 120px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.player-top {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 20px;
}

.player-bottom {
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(255,255,255,0.05);
}

.player-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .player-bottom {
        display: flex;
    }

    #volume {
        display: none;
    }
}

.cover img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

#playBtn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #1f3b63;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.meta {
    flex: 1;
    overflow: hidden;
}

.title {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist {
    font-size: 13px;
    color: #9ecbff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#quality {
    background: #1f3b63;
    border: none;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
}

#volume {
    width: 90px;
}

.live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}