.artist-track-catalog {
    --track-card: #18181e;
    --track-card-hover: #202027;
    --track-border: rgba(255, 255, 255, 0.08);
    --track-text: #f8f7fb;
    --track-muted: #96939f;
    --track-purple: #a855f7;
    --track-pink: #ec4899;

    width: 100%;
    color: var(--track-text);
}

.artist-track-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Строка песни */

.artist-track {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    width: 100%;
    height: 150px;
    min-height: 150px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(168, 85, 247, 0.1),
            transparent 32%
        ),
        var(--track-card);
    border: 1px solid var(--track-border);
    border-radius: 18px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.24),
        inset 0 1px rgba(255, 255, 255, 0.025);
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.artist-track:hover {
    background-color: var(--track-card-hover);
    border-color: rgba(168, 85, 247, 0.42);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.34),
        0 0 40px rgba(168, 85, 247, 0.06);
    transform: translateY(-2px);
}

/* Картинка */

.artist-track__image {
    position: relative;
    display: block;
    width: 230px;
    height: 150px;
    overflow: hidden;
    background: #09090c;
    border-radius: 17px 0 0 17px;
}

.artist-track__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        filter 0.4s ease,
        transform 0.4s ease;
}

.artist-track:hover .artist-track__image img {
    filter: brightness(0.82);
    transform: scale(1.055);
}

.artist-track__image-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.04),
            rgba(0, 0, 0, 0.22)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.32),
            transparent 60%
        );
}

.artist-track__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #fff;
    background: rgba(12, 12, 16, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    transform: translate(-50%, -50%);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.artist-track__play svg {
    margin-left: 3px;
}

.artist-track:hover .artist-track__play {
    background: linear-gradient(
        135deg,
        var(--track-purple),
        var(--track-pink)
    );
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.38);
    transform: translate(-50%, -50%) scale(1.08);
}

/* Контент */

.artist-track__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
    height: 150px;
    padding: 22px 25px;
}

.artist-track__content {
    min-width: 0;
}

.artist-track__badge {
    display: inline-flex;
    align-items: center;
    height: 23px;
    margin-bottom: 8px;
    padding: 0 9px;
    color: #d8b4fe;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(168, 85, 247, 0.13);
    border: 1px solid rgba(168, 85, 247, 0.19);
    border-radius: 20px;
}

.artist-track__title {
    max-width: 700px;
    margin: 0;
    overflow: hidden;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.artist-track__title a {
    color: var(--track-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.artist-track__title a:hover {
    color: #d8b4fe;
}

.artist-track__meta {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 24px;
    margin-top: 13px;
}

.artist-track__counter {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--track-muted);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.artist-track__counter svg {
    color: #c084fc;
}

.artist-track__counter strong {
    color: #d5d2db;
    font-weight: 700;
}

.artist-track__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.11);
}

.artist-track__favorite {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    color: var(--track-muted);
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.artist-track__favorite:hover {
    color: #f0abfc;
}

.artist-track__favorite-icon {
    transition:
        fill 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.artist-track__favorite:hover .artist-track__favorite-icon {
    transform: scale(1.1);
}

.artist-track__favorite.is-active {
    color: #f472b6;
}

.artist-track__favorite.is-active .artist-track__favorite-icon {
    color: #f472b6;
    fill: #f472b6;
}

/* Кнопка */

.artist-track__action {
    flex: 0 0 auto;
}

.artist-track__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 150px;
    height: 46px;
    padding: 0 19px;
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    background: linear-gradient(
        135deg,
        #7c3aed,
        #a855f7 48%,
        #db2777
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    box-shadow:
        0 10px 24px rgba(126, 34, 206, 0.25),
        inset 0 1px rgba(255, 255, 255, 0.18);
    transition:
        filter 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.artist-track__button:hover {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.08);
    box-shadow: 0 14px 30px rgba(126, 34, 206, 0.35);
    transform: translateY(-2px);
}

/* Пагинация */

.artist-track-pagination {
    width: 100%;
    margin-top: 32px;
}

/* Пустой список */

.artist-track-empty {
    padding: 58px 30px;
    color: var(--track-muted);
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(168, 85, 247, 0.1),
            transparent 40%
        ),
        #18181e;
    border: 1px solid var(--track-border);
    border-radius: 20px;
}

.artist-track-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 19px;
    color: #c084fc;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50%;
}

.artist-track-empty__title {
    color: var(--track-text);
    font-size: 21px;
    font-weight: 750;
}

.artist-track-empty__text {
    margin-top: 8px;
    font-size: 14px;
}

@media (max-width: 850px) {
    .artist-track {
        grid-template-columns: 200px minmax(0, 1fr);
    }

    .artist-track__image {
        width: 200px;
    }

    .artist-track__body {
        gap: 16px;
        padding: 18px;
    }

    .artist-track__title {
        font-size: 19px;
    }

    .artist-track__button {
        min-width: 132px;
        padding: 0 15px;
    }

    .artist-track__favorite span {
        display: none;
    }
}

@media (max-width: 650px) {
    .artist-track-list {
        gap: 16px;
    }

    .artist-track {
        display: block;
        height: auto;
        min-height: 0;
    }

    .artist-track:hover {
        transform: none;
    }

    .artist-track__image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 17px 17px 0 0;
    }

    .artist-track__body {
        display: block;
        height: auto;
        padding: 19px;
    }

    .artist-track__title {
        max-width: 100%;
        font-size: 20px;
    }

    .artist-track__meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .artist-track__favorite span {
        display: inline;
    }

    .artist-track__action {
        margin-top: 20px;
    }

    .artist-track__button {
        width: 100%;
        height: 48px;
    }
}