/* Контейнер */
.playlist-container {
    max-width: 800px;
    margin: 0 auto;
     margin-top: 20px;
    width: 100%;
}

.playlist-header {
    text-align: left;
    margin-bottom: 40px;
}

.badge-playlist {
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.playlist-header h1 {
   font-size: 22px;
font-family: "Roboto Condensed", Arial;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.playlist-header p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}


.playlist-item {
    padding: 14px 15px;
}


.now-playing-row {
    background: rgba(99, 102, 241, 0.03);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 16px 16px 0;
}


.played-time-status {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    width: 90px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.now-playing-row .played-time-status {
    color: var(--primary-color);
}

.live-dot-mini {
    width: 6px; height: 6px; background: var(--primary-color);
    border-radius: 50%; animation: pulse 1.5s infinite;
}


.exact-time {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.03);
    padding: 4px 10px;
    border-radius: 10px;
}


.btn-youtube-link {
    color: #cbd5e1; 
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.btn-youtube-link .material-icons-round {
    font-size: 26px;
}


.btn-youtube-link:hover {
    color: #ff0000;
    transform: scale(1.1);
}


@media (max-width: 550px) {
    .playlist-item {
        position: relative;
        padding-bottom: 20px;
    }
    .played-time-status {
        position: absolute;
        top: 12px;
        left: 82px;
    }
    .playlist-item .chart-item-cover {
        margin-top: 15px; 
    }
    .playlist-item .item-details {
        margin-top: 15px;
    }
}