.msb-followed-mix button,
.msb-followed-mix a,
.msb-followed-mix input {
    font-family: inherit;
}

.msb-followed-mix {
    --msb-mix-accent: var(--primary, #1ed760);
    --msb-mix-bg: var(--bg-card, #121212);
    --msb-mix-soft: var(--hover, #1d1d1d);
    position: relative;
    margin: 42px 20px 10px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 0%, rgba(30,215,96,.18), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.035), transparent 52%),
        var(--msb-mix-bg);
    box-shadow: 0 18px 55px rgba(0,0,0,.18);
    isolation: isolate;
}

.msb-followed-mix::before {
    content: "";
    position: absolute;
    inset: auto -80px -110px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(30,215,96,.08);
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}

.msb-followed-mix__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.msb-followed-mix__identity {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 13px;
}

.msb-followed-mix__icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #07130b;
    background: linear-gradient(135deg, #67f696, var(--msb-mix-accent));
    box-shadow: 0 10px 26px rgba(30,215,96,.26);
    font-size: 20px;
}

.msb-followed-mix__copy { min-width: 0; }

.msb-followed-mix__eyebrow {
    display: block;
    margin-bottom: 2px;
    color: var(--msb-mix-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
}

.msb-followed-mix__title {
    margin: 0;
    color: var(--text, #fff);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.45;
}

.msb-followed-mix__subtitle {
    margin: 3px 0 0;
    color: var(--text-sec, #a7a7a7);
    font-size: 12px;
    line-height: 1.7;
}

.msb-followed-mix__play-all {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    color: #061109;
    background: var(--msb-mix-accent);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(30,215,96,.22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.msb-followed-mix__play-all:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 14px 32px rgba(30,215,96,.3);
}

.msb-followed-mix__play-all:active { transform: scale(.97); }
.msb-followed-mix__play-all[hidden] { display: none; }

.msb-followed-mix__artists {
    min-height: 0;
    display: flex;
    align-items: center;
    gap: 0;
    margin: -2px 0 16px;
}

.msb-followed-mix__artist {
    width: 34px;
    height: 34px;
    display: block;
    overflow: hidden;
    border: 2px solid var(--msb-mix-bg);
    border-radius: 50%;
    background: var(--msb-mix-soft);
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    transition: transform .2s ease, z-index .2s ease;
}

.msb-followed-mix__artist + .msb-followed-mix__artist { margin-right: -8px; }
.msb-followed-mix__artist:hover { transform: translateY(-3px) scale(1.06); z-index: 3; }
.msb-followed-mix__artist img { width: 100%; height: 100%; object-fit: cover; display: block; }

.msb-followed-mix__artist-more {
    margin-right: 9px;
    color: var(--text-sec, #aaa);
    font-size: 11px;
    font-weight: 700;
}

.msb-followed-mix__tracks {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.msb-followed-mix__track {
    min-width: 0;
    padding: 10px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.msb-followed-mix__track:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.065);
    border-color: rgba(30,215,96,.32);
}

.msb-followed-mix__cover {
    position: relative;
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 12px;
    background: #202020;
}

.msb-followed-mix__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.msb-followed-mix__meta { min-width: 0; }
.msb-followed-mix__song,
.msb-followed-mix__singer {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.msb-followed-mix__song {
    color: var(--text, #fff);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.msb-followed-mix__song:hover { color: var(--msb-mix-accent); }
.msb-followed-mix__singer { margin-top: 4px; color: var(--text-sec, #999); font-size: 10px; }

.msb-followed-mix__track-play {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #061109;
    background: var(--msb-mix-accent);
    cursor: pointer;
    transition: transform .18s ease, filter .18s ease;
}

.msb-followed-mix__track-play:hover { transform: scale(1.08); filter: brightness(1.06); }
.msb-followed-mix__track-play:active { transform: scale(.93); }
.msb-followed-mix__track-play i { font-size: 12px; margin-left: 1px; }

.msb-followed-mix__state {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    color: var(--text-sec, #aaa);
    background: rgba(255,255,255,.025);
    text-align: center;
}

.msb-followed-mix__state[hidden] { display: none; }
.msb-followed-mix__state i { color: var(--msb-mix-accent); font-size: 22px; }
.msb-followed-mix__state strong { display: block; color: var(--text, #fff); font-size: 14px; margin-bottom: 4px; }
.msb-followed-mix__state p { margin: 0; font-size: 11px; line-height: 1.8; }

.msb-followed-mix__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(30,215,96,.35);
    border-radius: 999px;
    color: var(--msb-mix-accent);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}

.msb-followed-mix__skeleton {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
}

.msb-followed-mix__skeleton[hidden] { display: none; }
.msb-followed-mix__skeleton-item {
    height: 74px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.08), rgba(255,255,255,.035));
    background-size: 220% 100%;
    animation: msbMixShimmer 1.25s linear infinite;
}

@keyframes msbMixShimmer { to { background-position: -220% 0; } }

@media (max-width: 1180px) {
    .msb-followed-mix__tracks,
    .msb-followed-mix__skeleton { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 850px) {
    .msb-followed-mix { margin: 32px 12px 8px; padding: 16px; border-radius: 20px; }
    .msb-followed-mix__head { align-items: flex-start; }
    .msb-followed-mix__icon { width: 44px; height: 44px; flex-basis: 44px; border-radius: 15px; }
    .msb-followed-mix__tracks,
    .msb-followed-mix__skeleton {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 5px;
    }
    .msb-followed-mix__tracks::-webkit-scrollbar,
    .msb-followed-mix__skeleton::-webkit-scrollbar { display: none; }
    .msb-followed-mix__track,
    .msb-followed-mix__skeleton-item { min-width: min(82vw, 300px); scroll-snap-align: start; }
}

@media (max-width: 560px) {
    .msb-followed-mix__head { gap: 10px; }
    .msb-followed-mix__subtitle { max-width: 210px; }
    .msb-followed-mix__play-all { min-height: 40px; width: 40px; padding: 0; }
    .msb-followed-mix__play-all span { display: none; }
    .msb-followed-mix__artist { width: 31px; height: 31px; }
}

@media (prefers-reduced-motion: reduce) {
    .msb-followed-mix *,
    .msb-followed-mix *::before,
    .msb-followed-mix *::after { animation: none !important; transition: none !important; }
}

.msb-followed-mix__retry {
    appearance: none;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}
