/* —— Çalma listeleri —— */
.page--spotify .dash-section--playlists .dash-section__head--playlists {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.page--spotify .dash-playlist-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: rgba(30, 215, 96, 0.14);
    border: 1px solid rgba(30, 215, 96, 0.28);
    font-family: "DM Mono", monospace;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--sp-accent-bright, #1ed760);
    vertical-align: middle;
}

.page--spotify .dash-section--playlists .dash-section__hint {
    margin-top: -0.45rem;
}

.page--spotify .dash-playlists-rail {
    margin-top: 0.65rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.page--spotify .dash-playlists-rail .dash-playlists--scroll {
    margin: 0;
    padding: 0.85rem 0.85rem 0.55rem;
    gap: 1.35rem;
    mask-image: none;
    -webkit-mask-image: none;
}

.page--spotify .dash-section--playlists .dash-playlist {
    gap: 0.5rem;
    padding: 0.55rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.page--spotify .dash-section--playlists .dash-playlist:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(30, 215, 96, 0.22);
    box-shadow: 0 0.5rem 1.1rem rgba(0, 0, 0, 0.24);
}

.page--spotify .dash-section--playlists .dash-playlist__name {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--sp-text, #fff);
}

.page--spotify .dash-section--playlists .dash-playlist__meta {
    font-family: "DM Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--sp-text-sub, #b3b3b3);
}

.page--spotify .dash-section--playlists .dash-playlist__cover {
    border-radius: 0.5rem;
    box-shadow: 0 0.35rem 0.85rem rgba(0, 0, 0, 0.28);
}

.page--spotify .dash-section--playlists .dash-playlist__cover img,
.page--spotify .dash-section--playlists .dash-playlist__cover .dash-playlist__ph {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

