/* 2026 music platform refresh: presentation only, DB bindings remain unchanged. */
body.music-body {
    --page-bg: #050607;
    --surface-1: #0c0f12;
    --surface-2: #11151a;
    --border-subtle: #425563;
    --text-primary: #e1e1e1;
    --text-secondary: #c6c9ca;
    --accent-cyan: #2ad2c9;
    --accent-magenta: #ff8d6d;
    --accent-lime: #01a982;
    --accent-muted: #5f7a76;
    --accent-purple: #614767;
    --accent-warm-muted: #80746e;
    --focus-ring: #2ad2c9;
    background: #0d0d0d;
    color: #f7f7f8;
    font-family: Inter, "Plus Jakarta Sans", Arial, sans-serif;
}

.music-main,
.music-section {
    background: var(--page-bg);
}

.music-main {
    position: relative;
}

.music-header {
    height: 72px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(0, 0, 0, .94), rgba(5, 6, 7, .88));
}

.music-logo {
    max-height: 42px;
}

.music-nav a {
    position: relative;
    min-height: 72px;
    display: inline-flex;
    align-items: center;
}

.music-nav a[href="/#artistas"]::after,
.music-nav a[href="/"]::after,
.music-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
}

.music-login,
.music-admin-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border-color: var(--border-subtle);
    background: rgba(255, 255, 255, .03);
}

.artists-page-shell {
    position: relative;
    width: min(1540px, calc(100% - 48px));
    margin: 0 auto;
    padding: 54px 0 82px;
    color: var(--text-primary);
}

.artists-page-shell::before {
    content: "";
    position: fixed;
    top: 40px;
    right: -140px;
    width: 520px;
    height: 520px;
    pointer-events: none;
    background:
        radial-gradient(circle at 35% 35%, rgba(0, 215, 215, .16), transparent 58%),
        radial-gradient(circle at 70% 50%, rgba(255, 45, 166, .12), transparent 62%);
    filter: blur(12px);
    z-index: -1;
}

.artists-page-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 28px;
    align-items: end;
    margin-bottom: 22px;
}

.artists-page-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--accent-lime);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.artists-page-title h1 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.artists-page-title p {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.artists-search {
    min-height: 48px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 8px;
    padding: 0 8px 0 15px;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    background: var(--surface-2);
}

.artists-search:focus-within {
    border-color: rgba(0, 215, 215, .62);
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.artists-search i {
    color: var(--text-secondary);
}

.artists-search input {
    min-width: 0;
    min-height: 46px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-primary);
    font-size: .95rem;
}

.artists-search input::placeholder {
    color: #737b86;
}

.artists-search-clear {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: var(--text-secondary);
}

.artists-search-clear:hover,
.artists-search-clear:focus-visible {
    color: var(--text-primary);
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.artists-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
    padding: 10px;
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    background: rgba(12, 15, 18, .72);
}

.artists-filter-chips {
    min-width: 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px;
    scrollbar-width: thin;
}

.artists-chip {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: #090b0d;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 800;
}

.artists-chip:hover,
.artists-chip:focus-visible {
    color: var(--text-primary);
    border-color: rgba(0, 215, 215, .42);
    outline: none;
}

.artists-chip.is-active {
    color: var(--text-primary);
    border-color: transparent;
    background:
        linear-gradient(var(--surface-1), var(--surface-1)) padding-box,
        linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta)) border-box;
}

.artists-sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.artists-sort-form label {
    color: var(--text-secondary);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.artists-sort-form select {
    min-height: 42px;
    min-width: 160px;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--text-primary);
    padding: 0 12px;
}

.artists-sort-form select:focus {
    border-color: var(--accent-cyan);
    outline: 0;
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.artists-results {
    min-height: 300px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.artists-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    background: var(--surface-1);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

@media (min-width: 1280px) {
    .artists-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 900px) and (max-width: 1279px) {
    .artists-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 620px) and (max-width: 899px) {
    .artists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

.artists-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 215, 215, .38);
    background: #0f1317;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
}

.artists-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 215, 215, .09), rgba(255, 45, 166, .10));
}

.artists-card-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(12, 15, 18, .88), transparent);
}

.artists-card-media a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

.artists-card-media img,
.artists-card-media .artist-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .2s ease;
}

.artists-card:hover .artists-card-media img {
    transform: scale(1.025);
}

.artists-card .artist-initials {
    color: rgba(255, 255, 255, .86);
    background:
        radial-gradient(circle at 25% 20%, rgba(0, 215, 215, .24), transparent 45%),
        linear-gradient(135deg, #161b22, #27153b);
}

.artists-card-play {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    background:
        linear-gradient(rgba(5, 6, 7, .72), rgba(5, 6, 7, .72)) padding-box,
        linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta)) border-box;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(12px);
}

.artists-card-play:focus-visible,
.artists-profile-btn:focus-visible,
.artists-edit-btn:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

.artists-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.artists-card-genre {
    width: max-content;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 4px 8px;
    border: 1px solid rgba(184, 255, 53, .2);
    border-radius: 999px;
    color: var(--accent-lime);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.artists-card h2 {
    position: relative;
    margin: 0;
    padding-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.18;
    font-weight: 700;
}

.artists-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
}

.artists-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artists-card p {
    min-height: 63px;
    margin: 12px 0 18px;
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artists-card-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.artists-profile-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 850;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.artists-card:hover .artists-profile-btn,
.artists-profile-btn:hover {
    border-color: rgba(184, 255, 53, .5);
    background: rgba(184, 255, 53, .1);
    color: var(--accent-lime);
}

.artists-edit-btn {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
}

.artists-empty-state {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    background: var(--surface-1);
}

.artists-empty-state i {
    color: var(--accent-cyan);
    font-size: 1.8rem;
}

.artists-empty-state h2 {
    margin: 10px 0 6px;
    color: var(--text-primary);
    font-size: 1.35rem;
}

.artists-empty-state p {
    margin: 0;
    color: var(--text-secondary);
}

.artists-empty-state a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border: 1px solid rgba(0, 215, 215, .42);
    border-radius: 12px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 850;
}

.artists-card-skeleton .artists-card-media,
.artists-card-skeleton span,
.artists-card-skeleton h2,
.artists-card-skeleton p,
.artists-card-skeleton .artists-card-actions {
    color: transparent;
    border-radius: 12px;
    background: linear-gradient(90deg, #0e1216, #151b21, #0e1216);
    background-size: 220% 100%;
    animation: artistsSkeleton 1.2s ease-in-out infinite;
}

.artists-card-skeleton span {
    width: 70px;
    height: 20px;
}

.artists-card-skeleton h2 {
    width: 65%;
    height: 24px;
}

.artists-card-skeleton p {
    width: 100%;
    height: 14px;
}

.artists-card-skeleton .artists-card-actions {
    height: 40px;
}

@keyframes artistsSkeleton {
    to {
        background-position: -220% 0;
    }
}
}

.music-hero {
    min-height: auto;
    max-width: 1240px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 42px;
    padding: 58px 34px 48px;
}

.music-hero-copy {
    max-width: 620px;
}

.music-hero h1 {
    max-width: 620px;
    margin: 18px 0 16px;
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
}

.music-hero h1 em {
    -webkit-text-stroke: .8px rgba(255, 255, 255, .72);
}

.music-hero-copy > p {
    max-width: 520px;
    font-size: .98rem;
    line-height: 1.65;
}

.music-hero-actions {
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.music-primary-btn {
    min-height: 42px;
    padding: 11px 17px;
    font-size: .88rem;
    font-weight: 800;
}

.music-text-btn {
    font-size: .88rem;
}

.music-hero-art {
    min-height: 340px;
}

.music-record {
    width: clamp(260px, 24vw, 320px);
    max-width: 320px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .8);
}

.music-record::before {
    box-shadow: inset 0 0 0 20px #7c3aed;
}

.music-now-playing {
    right: 10px;
    bottom: 12px;
    width: 218px;
    padding: 12px 14px;
    border-radius: 12px;
}

.music-now-playing span {
    font-size: .55rem;
}

.music-now-playing strong {
    font-size: .86rem;
}

.music-bars {
    height: 18px;
    margin-top: 9px;
}

.music-section {
    max-width: 1240px;
    padding: 58px 28px;
}

.music-section-heading {
    margin-bottom: 24px;
}

.music-section h2,
.music-release h2,
.music-youtube h2 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.artist-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.artist-card-shell {
    min-width: 0;
}

.artist-image {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
}

.artist-image img {
    object-fit: cover;
}

.artist-play {
    width: 40px;
    height: 40px;
    right: 12px;
    bottom: 12px;
}

.artist-meta {
    padding: 12px 2px 0;
}

.artist-meta strong {
    font-size: 1rem;
    line-height: 1.25;
}

.artist-meta small {
    margin-top: 6px;
    font-size: .875rem;
    line-height: 1.45;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.music-release,
.music-youtube,
.music-booking-cta {
    border-radius: 18px;
}

.music-release {
    max-width: 1180px;
    margin: 28px auto 58px;
    padding: 40px;
}

.music-youtube {
    max-width: 1180px;
    margin-bottom: 70px;
    padding: 32px 38px;
    border-radius: 18px;
}

.music-youtube-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.65rem;
}

.artist360-shell {
    max-width: 1240px;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 24px;
    padding: 26px 28px 42px;
}

.artist360-sidebar {
    max-width: 300px;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
}

.artist360-photo {
    border-radius: 12px;
}

.artist360-side-copy h1 {
    font-size: clamp(1.45rem, 2vw, 2.1rem);
    font-weight: 750;
    line-height: 1.08;
}

.artist360-side-copy p {
    font-size: .88rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
}

.artist360-outline,
.artist360-actions .music-primary-btn {
    min-height: 40px;
    font-size: .84rem;
}

.artist360-stats span {
    border-radius: 10px;
    font-size: .66rem;
}

.artist360-stats strong {
    font-size: .96rem;
}

.artist360-nav {
    gap: 4px;
}

.artist360-nav a {
    min-height: 38px;
    border-radius: 9px;
    font-size: .84rem;
}

.artist360-tabs {
    position: sticky;
    top: 86px;
    z-index: 8;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(13, 13, 13, .88);
    backdrop-filter: blur(16px);
}

.artist360-tabs a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    color: #d8d8df;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 800;
}

.artist360-tabs a:hover,
.artist360-tabs a.is-active {
    border-color: rgba(184, 255, 53, .55);
    background: rgba(184, 255, 53, .12);
    color: #b8ff35;
}

.artist360-section-head h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.35rem);
}

.artist360-section-head p {
    font-size: .9rem;
}

.artist360-video-grid,
.artist360-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.artist360-video-card,
.artist360-content-card,
.artist360-audio-card,
.artist360-link-card,
.artist360-about,
.artist360-booking,
.artist360-empty {
    border-radius: 12px;
}

.artist360-video-card h2,
.artist360-content-card strong {
    font-size: .98rem;
}

.artist360-video-card p,
.artist360-content-card p {
    font-size: .84rem;
}

.artist360-empty {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    text-align: left;
    background: linear-gradient(135deg, rgba(139, 92, 246, .12), rgba(184, 255, 53, .08));
}

.artist360-empty strong {
    display: block;
    color: #f5f5f7;
    font-size: .96rem;
}

.artist360-empty span {
    display: block;
    margin-top: 3px;
    color: #b8b8c1;
    font-size: .84rem;
}

.artist360-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.artist360-empty-actions a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: #f7f7f8;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 800;
}

.artist360-empty-actions a:first-child {
    border-color: rgba(184, 255, 53, .48);
    color: #b8ff35;
}

.store-assist {
    right: 16px;
    bottom: 14px;
}

.store-assist-launch {
    min-height: 44px;
    padding: 8px 11px !important;
    border-radius: 999px !important;
    font-size: .78rem !important;
}

.store-assist-launch-icon {
    width: 30px;
    height: 30px;
    font-size: .9rem;
}

.store-assist-launch-copy strong {
    font-size: .78rem;
}

.store-assist-launch-copy small {
    font-size: .66rem;
}

@media (max-width: 900px) {
    .music-hero {
        grid-template-columns: 1fr;
        padding: 46px 22px 36px;
    }

    .music-hero-art {
        min-height: 300px;
    }

    .music-now-playing {
        right: calc(50% - 150px);
    }

    .artist360-shell {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .artist360-sidebar {
        max-width: none;
        position: relative;
        top: auto;
    }

    .artist360-tabs {
        position: relative;
        top: auto;
    }

    .artists-page-header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .artists-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .artists-filter-chips {
        width: 100%;
    }

    .artists-sort-form {
        justify-content: space-between;
        width: 100%;
    }

    .artists-sort-form select {
        flex: 1 1 auto;
    }
}

@media (max-width: 560px) {
    .music-hero h1 {
        font-size: 2.45rem;
    }

    .music-record {
        width: 250px;
    }

    .music-now-playing {
        width: 200px;
        right: 16px;
    }

    .music-section {
        padding: 46px 18px;
    }

    .artist360-empty {
        align-items: flex-start;
        flex-direction: column;
    }

    .artist360-empty-actions {
        justify-content: flex-start;
    }

    .artists-page-shell {
        width: calc(100% - 32px);
        padding: 34px 0 58px;
    }

    .artists-page-title h1 {
        font-size: 2.1rem;
    }

    .artists-search {
        grid-template-columns: 22px minmax(0, 1fr) 34px;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .artists-card-body {
        padding: 16px;
    }

    .artists-empty-state {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-assist-launch-copy {
        display: none;
    }

    .store-assist-launch {
        width: 48px !important;
        min-width: 48px;
        height: 48px;
        padding: 0 !important;
        justify-content: center;
    }
}

@supports (padding: max(0px)) {
    .store-assist {
        right: max(24px, env(safe-area-inset-right));
        bottom: max(24px, env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {
    .artists-card,
    .artists-card-media img,
    .artists-card-skeleton .artists-card-media,
    .artists-card-skeleton span,
    .artists-card-skeleton h2,
    .artists-card-skeleton p,
    .artists-card-skeleton .artists-card-actions {
        animation: none !important;
        transition: none !important;
    }

    .artists-card:hover {
        transform: none;
    }
}

/* Keep the artist directory focused on search, filters, and results. */
body.music-body .artists-page-header {
    min-height: 0 !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px) !important;
    grid-template-areas: "copy search" !important;
    gap: 24px !important;
    align-items: center !important;
    margin-bottom: 14px !important;
    padding: 20px 24px !important;
    border-radius: 18px !important;
    background: #0c0f12 !important;
    box-shadow: none !important;
}

body.music-body .artists-page-title {
    justify-content: center !important;
}

body.music-body .artists-page-eyebrow,
body.music-body .artists-page-stats,
body.music-body .artists-page-visual {
    display: none !important;
}

body.music-body .artists-page-title h1 {
    margin: 0 0 5px !important;
    font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
    line-height: 1.1 !important;
}

body.music-body .artists-page-title p {
    max-width: 560px !important;
    font-size: .9rem !important;
    line-height: 1.4 !important;
}

body.music-body .artists-search {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 900px) {
    body.music-body .artists-page-header {
        grid-template-columns: 1fr !important;
        grid-template-areas: "copy" "search" !important;
        gap: 14px !important;
        padding: 18px !important;
    }
}

/* Final reset for the public artists directory. These nodes are structural, never panels. */
body.music-body .artists-page-shell,
body.music-body .artists-page-header,
body.music-body .artists-toolbar,
body.music-body .artists-results,
body.music-body .artists-grid,
body.music-body .artists-card,
body.music-body .artists-card:hover,
body.music-body .artists-card:focus-within {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.music-body .artists-page-shell {
    width: min(calc(100% - 48px), 1440px) !important;
    margin-inline: auto !important;
    padding: 40px 0 64px !important;
}

body.music-body .artists-page-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px) !important;
    grid-template-areas: "copy search" !important;
    align-items: center !important;
    gap: 32px !important;
    margin: 0 !important;
    padding: 28px 0 24px !important;
    border-bottom: 1px solid var(--border-subtle) !important;
}

body.music-body .artists-toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 22px 0 28px !important;
    border-bottom: 1px solid var(--border-subtle) !important;
}

body.music-body .artists-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 40px 26px !important;
    margin: 0 !important;
    padding: 36px 0 0 !important;
}

body.music-body .artists-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    overflow: visible !important;
    transform: none !important;
}

body.music-body .artists-card-media {
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 16px !important;
}

body.music-body .artists-card-body {
    min-height: 0 !important;
    padding: 16px 4px 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    body.music-body .artists-page-shell { width: calc(100% - 40px) !important; }
    body.music-body .artists-page-header {
        grid-template-columns: 1fr !important;
        grid-template-areas: "copy" "search" !important;
    }
    body.music-body .artists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    body.music-body .artists-page-shell { width: calc(100% - 32px) !important; }
    body.music-body .artists-grid { grid-template-columns: 1fr !important; }
}

/* Final reset for the public artists directory. These nodes are structural, never panels. */
body.music-body .artists-page-shell,
body.music-body .artists-page-header,
body.music-body .artists-toolbar,
body.music-body .artists-results,
body.music-body .artists-grid,
body.music-body .artists-card,
body.music-body .artists-card:hover,
body.music-body .artists-card:focus-within {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.music-body .artists-page-shell {
    width: min(calc(100% - 48px), 1440px) !important;
    margin-inline: auto !important;
    padding: 40px 0 64px !important;
}

body.music-body .artists-page-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px) !important;
    grid-template-areas: "copy search" !important;
    align-items: center !important;
    gap: 32px !important;
    margin: 0 !important;
    padding: 28px 0 24px !important;
    border-bottom: 1px solid var(--border-subtle) !important;
}

body.music-body .artists-toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 22px 0 28px !important;
    border-bottom: 1px solid var(--border-subtle) !important;
}

body.music-body .artists-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 40px 26px !important;
    margin: 0 !important;
    padding: 36px 0 0 !important;
}

body.music-body .artists-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    overflow: visible !important;
    transform: none !important;
}

body.music-body .artists-card-media {
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 16px !important;
}

body.music-body .artists-card-body {
    min-height: 0 !important;
    padding: 16px 4px 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    body.music-body .artists-page-shell { width: calc(100% - 40px) !important; }
    body.music-body .artists-page-header {
        grid-template-columns: 1fr !important;
        grid-template-areas: "copy" "search" !important;
    }
    body.music-body .artists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    body.music-body .artists-page-shell { width: calc(100% - 32px) !important; }
    body.music-body .artists-grid { grid-template-columns: 1fr !important; }
}

/* Final public layout guard: keep the directory open and aligned with the site header. */
body.music-body .artists-page-shell {
    width: min(calc(100% - 48px), 1440px) !important;
}

body.music-body .artists-page-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px) !important;
    grid-template-areas: "copy search" !important;
    align-items: center !important;
    gap: 32px !important;
    margin: 0 !important;
    padding: 0 0 28px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    body.music-body .artists-page-shell {
        width: calc(100% - 40px) !important;
    }

    body.music-body .artists-page-header {
        grid-template-columns: 1fr !important;
        grid-template-areas: "copy" "search" !important;
        gap: 18px !important;
    }
}

@media (max-width: 600px) {
    body.music-body .artists-page-shell {
        width: calc(100% - 32px) !important;
    }
}

/* Artists public layout: Intranet10 theme behavior with a permanently dark header. */
html[data-theme="light"] body.music-body {
    --page-bg: #f6f8fb;
    --surface-1: #ffffff;
    --surface-2: #f1f5f9;
    --border-subtle: #dbe4f0;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --accent-cyan: #01a982;
    --accent-magenta: #ff8d6d;
    --accent-lime: #01a982;
    background: #f6f8fb !important;
    color: #0f172a !important;
}

html[data-theme="light"] body.music-body .music-main,
html[data-theme="light"] body.music-body .artists-page-shell,
html[data-theme="light"] body.music-body .music-section {
    background: #f6f8fb !important;
    color: #0f172a !important;
}

body.music-body .music-header,
body.music-body .music-nav,
body.music-body .music-actions {
    background: #050b18 !important;
}

html[data-theme="light"] body.music-body .music-nav a,
html[data-theme="light"] body.music-body .music-nav a span,
html[data-theme="light"] body.music-body .music-icon-link,
html[data-theme="light"] body.music-body .music-login,
html[data-theme="light"] body.music-body .music-lang {
    color: #f8fafc !important;
    -webkit-text-fill-color: #f8fafc !important;
}

html[data-theme="light"] body.music-body .music-nav a:hover,
html[data-theme="light"] body.music-body .music-nav a.is-active,
html[data-theme="light"] body.music-body .music-icon-link:hover,
html[data-theme="light"] body.music-body .music-login:hover,
html[data-theme="light"] body.music-body .music-lang:hover {
    color: #2ad2c9 !important;
    -webkit-text-fill-color: #2ad2c9 !important;
}

.music-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #425563;
    border-radius: 8px;
    background: #172033;
    color: #f8fafc;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
}

.music-theme-toggle:hover,
.music-theme-toggle:focus-visible {
    border-color: #2ad2c9;
    background: #1e293b;
    color: #2ad2c9;
}

html[data-theme="light"] body.music-body .artists-page-header,
html[data-theme="light"] body.music-body .artists-toolbar,
html[data-theme="light"] body.music-body .artists-card,
html[data-theme="light"] body.music-body .artists-empty-state,
html[data-theme="light"] body.music-body .artists-search {
    border-color: #dbe4f0 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08) !important;
}

html[data-theme="light"] body.music-body .artists-page-title h1,
html[data-theme="light"] body.music-body .artists-card h2,
html[data-theme="light"] body.music-body .artists-card h2 a,
html[data-theme="light"] body.music-body .artists-empty-state h2 {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

html[data-theme="light"] body.music-body .artists-page-title p,
html[data-theme="light"] body.music-body .artists-card p,
html[data-theme="light"] body.music-body .artists-sort-form label,
html[data-theme="light"] body.music-body .artists-empty-state p {
    color: #64748b !important;
    -webkit-text-fill-color: #64748b !important;
}

html[data-theme="light"] body.music-body .artists-search input,
html[data-theme="light"] body.music-body .artists-sort-form select {
    border-color: #cbd5e1 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

@media (max-width: 700px) {
    .music-theme-toggle span { display: none; }
    .music-theme-toggle { width: 34px; padding: 0; }
}

[data-theme="light"] body.music-body {
    --page-bg: #f4f6f8;
    --surface-1: #ffffff;
    --surface-2: #edf1f5;
    --border-subtle: rgba(15, 23, 42, .12);
    --text-primary: #101827;
    --text-secondary: #586174;
    --focus-ring: rgba(0, 160, 190, .20);
    background: var(--page-bg);
    color: var(--text-primary);
}

[data-theme="light"] body.music-body .music-main,
[data-theme="light"] body.music-body .music-section {
    background: var(--page-bg) !important;
}

[data-theme="light"] .artists-page-shell,
[data-theme="light"] .artists-page-title h1,
[data-theme="light"] .artists-card h2 a {
    color: var(--text-primary);
}

[data-theme="light"] .artists-toolbar,
[data-theme="light"] .artists-card,
[data-theme="light"] .artists-empty-state,
[data-theme="light"] .artists-search {
    background: var(--surface-1);
    border-color: var(--border-subtle);
}

[data-theme="light"] .artists-chip,
[data-theme="light"] .artists-sort-form select {
    background: var(--surface-2);
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

[data-theme="light"] .artists-card p,
[data-theme="light"] .artists-page-title p,
[data-theme="light"] .artists-sort-form label {
    color: var(--text-secondary);
}

[data-theme="light"] .artists-profile-btn {
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

html[data-theme="dark"] body.music-body,
html[data-theme="dark"] body.music-body .music-main,
html[data-theme="dark"] body.music-body .artists-page-shell {
    background-color: var(--page-bg) !important;
    color: var(--text-primary) !important;
}

html[data-theme="dark"] body.music-body .artists-page-shell,
html[data-theme="dark"] body.music-body .artists-page-shell h1,
html[data-theme="dark"] body.music-body .artists-page-shell h2,
html[data-theme="dark"] body.music-body .artists-page-shell h3,
html[data-theme="dark"] body.music-body .artists-card h2 a,
html[data-theme="dark"] body.music-body .artists-profile-btn {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary);
}

html[data-theme="dark"] body.music-body .artists-page-title p,
html[data-theme="dark"] body.music-body .artists-card p,
html[data-theme="dark"] body.music-body .artists-sort-form label,
html[data-theme="dark"] body.music-body .artists-chip,
html[data-theme="dark"] body.music-body .artists-edit-btn,
html[data-theme="dark"] body.music-body .artists-empty-state p {
    color: var(--text-secondary) !important;
    -webkit-text-fill-color: var(--text-secondary);
}

html[data-theme="dark"] body.music-body .artists-page-kicker,
html[data-theme="dark"] body.music-body .artists-card-genre,
html[data-theme="dark"] body.music-body .artists-profile-btn:hover {
    color: var(--accent-lime) !important;
    -webkit-text-fill-color: var(--accent-lime);
}

html[data-theme="dark"] body.music-body .artists-toolbar,
html[data-theme="dark"] body.music-body .artists-card,
html[data-theme="dark"] body.music-body .artists-empty-state {
    background-color: var(--surface-1) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-subtle) !important;
}

html[data-theme="dark"] body.music-body .artists-search,
html[data-theme="dark"] body.music-body .artists-chip,
html[data-theme="dark"] body.music-body .artists-sort-form select {
    background-color: var(--surface-2) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-subtle) !important;
}

html[data-theme="dark"] body.music-body .artists-search input,
html[data-theme="dark"] body.music-body .artists-sort-form select,
html[data-theme="dark"] body.music-body .artists-sort-form option {
    background-color: var(--surface-2) !important;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary);
}

html[data-theme="dark"] body.music-body .artists-search input::placeholder {
    color: #88909c !important;
    -webkit-text-fill-color: #88909c;
}

html[data-theme="dark"] body.music-body .artists-chip.is-active {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary);
    background:
        linear-gradient(var(--surface-1), var(--surface-1)) padding-box,
        linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta)) border-box !important;
}

html[data-theme="dark"] body.music-body .artist360-shell {
    background:
        radial-gradient(circle at 88% 4%, rgba(0, 215, 215, .12), transparent 34%),
        radial-gradient(circle at 62% 18%, rgba(255, 45, 166, .10), transparent 32%),
        var(--page-bg) !important;
    color: var(--text-primary) !important;
}

html[data-theme="dark"] body.music-body .artist360-sidebar,
html[data-theme="dark"] body.music-body .artist360-main,
html[data-theme="dark"] body.music-body .artist360-tabs,
html[data-theme="dark"] body.music-body .artist360-video-card,
html[data-theme="dark"] body.music-body .artist360-content-card,
html[data-theme="dark"] body.music-body .artist360-audio-card,
html[data-theme="dark"] body.music-body .artist360-link-card,
html[data-theme="dark"] body.music-body .artist360-about,
html[data-theme="dark"] body.music-body .artist360-booking,
html[data-theme="dark"] body.music-body .artist360-empty,
html[data-theme="dark"] body.music-body .artist360-player,
html[data-theme="dark"] body.music-body .artist360-modal-panel {
    background-color: var(--surface-1) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-subtle) !important;
}

html[data-theme="dark"] body.music-body .artist360-tabs,
html[data-theme="dark"] body.music-body .artist360-nav a,
html[data-theme="dark"] body.music-body .artist360-stats span,
html[data-theme="dark"] body.music-body .artist360-outline,
html[data-theme="dark"] body.music-body .artist360-empty-actions a {
    background-color: var(--surface-2) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-subtle) !important;
}

html[data-theme="dark"] body.music-body .artist360-shell h1,
html[data-theme="dark"] body.music-body .artist360-shell h2,
html[data-theme="dark"] body.music-body .artist360-shell h3,
html[data-theme="dark"] body.music-body .artist360-shell h4,
html[data-theme="dark"] body.music-body .artist360-shell strong,
html[data-theme="dark"] body.music-body .artist360-shell b,
html[data-theme="dark"] body.music-body .artist360-side-copy h1,
html[data-theme="dark"] body.music-body .artist360-section-head h2,
html[data-theme="dark"] body.music-body .artist360-video-card h2,
html[data-theme="dark"] body.music-body .artist360-content-card strong,
html[data-theme="dark"] body.music-body .artist360-link-card strong,
html[data-theme="dark"] body.music-body .artist360-audio-card strong,
html[data-theme="dark"] body.music-body .artist360-modal-panel h2 {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary);
}

html[data-theme="dark"] body.music-body .artist360-shell p,
html[data-theme="dark"] body.music-body .artist360-shell span,
html[data-theme="dark"] body.music-body .artist360-shell small,
html[data-theme="dark"] body.music-body .artist360-shell time,
html[data-theme="dark"] body.music-body .artist360-section-head p,
html[data-theme="dark"] body.music-body .artist360-video-card p,
html[data-theme="dark"] body.music-body .artist360-content-card p,
html[data-theme="dark"] body.music-body .artist360-link-card span,
html[data-theme="dark"] body.music-body .artist360-audio-card span,
html[data-theme="dark"] body.music-body .artist360-booking p,
html[data-theme="dark"] body.music-body .artist360-about p,
html[data-theme="dark"] body.music-body .artist360-about div {
    color: var(--text-secondary) !important;
    -webkit-text-fill-color: var(--text-secondary);
}

html[data-theme="dark"] body.music-body .artist360-shell a:not(.music-primary-btn),
html[data-theme="dark"] body.music-body .artist360-nav a,
html[data-theme="dark"] body.music-body .artist360-tabs a,
html[data-theme="dark"] body.music-body .artist360-outline,
html[data-theme="dark"] body.music-body .artist360-content-card,
html[data-theme="dark"] body.music-body .artist360-link-card {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary);
    text-decoration: none;
}

html[data-theme="dark"] body.music-body .artist360-tabs a:hover,
html[data-theme="dark"] body.music-body .artist360-tabs a.is-active,
html[data-theme="dark"] body.music-body .artist360-nav a:hover,
html[data-theme="dark"] body.music-body .artist360-nav a.is-active,
html[data-theme="dark"] body.music-body .artist360-empty-actions a:first-child,
html[data-theme="dark"] body.music-body .artist360-type,
html[data-theme="dark"] body.music-body .artist360-shell .music-kicker {
    color: var(--accent-lime) !important;
    -webkit-text-fill-color: var(--accent-lime);
    border-color: rgba(184, 255, 53, .46) !important;
}

html[data-theme="dark"] body.music-body .artist360-actions .music-primary-btn,
html[data-theme="dark"] body.music-body .artist360-booking .music-primary-btn {
    color: #050607 !important;
    -webkit-text-fill-color: #050607;
}

html[data-theme="dark"] body.music-body .artist360-video-thumb {
    background-color: #050607 !important;
    color: var(--text-primary) !important;
    border-color: var(--border-subtle) !important;
}

html[data-theme="dark"] body.music-body .artist360-video-thumb span,
html[data-theme="dark"] body.music-body .artist360-audio-play,
html[data-theme="dark"] body.music-body .artist360-modal-close {
    background-color: rgba(5, 6, 7, .82) !important;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary);
    border-color: rgba(0, 215, 215, .45) !important;
}

html[data-theme="dark"] body.music-body .artist360-adminbar {
    background-color: rgba(12, 15, 18, .92) !important;
    border-color: var(--border-subtle) !important;
}

html[data-theme="dark"] body.music-body .artist360-adminbar a {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary);
}

/* Artist profile visual direction inspired by modern music templates. */
body.music-body .artist360-shell {
    width: min(1480px, calc(100% - 48px));
    max-width: 1480px;
    margin: 0 auto;
    padding: 42px 0 76px;
    display: grid;
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

body.music-body .artist360-adminbar {
    grid-column: 1 / -1;
}

body.music-body .artist360-sidebar {
    max-width: none;
    position: sticky;
    top: 96px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(17, 21, 26, .96), rgba(7, 8, 10, .98)) padding-box,
        linear-gradient(145deg, rgba(0, 215, 215, .28), rgba(255, 45, 166, .20), rgba(184, 255, 53, .18)) border-box;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

body.music-body .artist360-photo {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: #050607;
}

body.music-body .artist360-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(5, 6, 7, .92), transparent);
}

body.music-body .artist360-photo img,
body.music-body .artist360-photo .artist-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.music-body .artist360-side-copy {
    padding: 2px 4px 0;
}

body.music-body .artist360-side-copy .music-kicker {
    display: none;
}

body.music-body .artist360-side-copy h1 {
    margin: 14px 0 8px;
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: .95;
    font-weight: 850;
    letter-spacing: 0;
}

body.music-body .artist360-type {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 0 10px;
    border: 1px solid rgba(0, 215, 215, .36);
    border-radius: 999px;
    background: rgba(0, 215, 215, .08);
    color: var(--accent-cyan) !important;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.music-body .artist360-side-copy p {
    margin: 13px 0 0;
    color: var(--text-secondary) !important;
    font-size: .92rem;
    line-height: 1.6;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

body.music-body .artist360-actions {
    display: grid;
    gap: 10px;
}

body.music-body .artist360-actions .music-primary-btn {
    min-height: 44px;
    border-radius: 14px;
    justify-content: center;
    background: linear-gradient(90deg, var(--accent-lime), #e7ff85);
    color: #050607 !important;
}

body.music-body .artist360-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

body.music-body .artist360-stats span {
    padding: 10px 7px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    color: var(--text-secondary) !important;
    text-align: center;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

body.music-body .artist360-stats strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text-primary) !important;
    font-size: 1.08rem;
}

body.music-body .artist360-nav {
    display: grid;
    gap: 6px;
    padding-top: 2px;
}

body.music-body .artist360-nav a {
    min-height: 42px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 13px;
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 850;
}

body.music-body .artist360-nav a:hover,
body.music-body .artist360-nav a.is-active {
    border-color: rgba(184, 255, 53, .25);
    background: rgba(184, 255, 53, .08);
    color: var(--text-primary) !important;
}

body.music-body .artist360-nav a.is-active i,
body.music-body .artist360-nav a.is-active span {
    color: var(--accent-lime) !important;
}

body.music-body .artist360-nav b {
    min-width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(0, 215, 215, .11);
    color: var(--accent-cyan) !important;
    font-size: .72rem;
}

body.music-body .artist360-main {
    min-width: 0;
    display: grid;
    gap: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background:
        radial-gradient(circle at 84% 0, rgba(255, 45, 166, .10), transparent 34%),
        linear-gradient(180deg, rgba(17, 21, 26, .78), rgba(8, 10, 12, .82));
}

body.music-body .artist360-tabs {
    position: sticky;
    top: 86px;
    z-index: 8;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    background: rgba(5, 6, 7, .88);
    backdrop-filter: blur(18px);
}

body.music-body .artist360-tabs a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 900;
}

body.music-body .artist360-tabs a:hover,
body.music-body .artist360-tabs a.is-active {
    border-color: rgba(0, 215, 215, .42);
    background: linear-gradient(90deg, rgba(0, 215, 215, .10), rgba(255, 45, 166, .08));
    color: var(--text-primary) !important;
}

body.music-body .artist360-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 4px 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

body.music-body .artist360-section-head h2 {
    margin: 4px 0 5px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 850;
}

body.music-body .artist360-section-head p {
    margin: 0;
    color: var(--text-secondary) !important;
}

body.music-body .artist360-section-head > strong {
    min-width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--accent-lime);
    color: #050607 !important;
}

body.music-body .artist360-video-grid,
body.music-body .artist360-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

body.music-body .artist360-video-card,
body.music-body .artist360-content-card,
body.music-body .artist360-audio-card,
body.music-body .artist360-link-card,
body.music-body .artist360-about,
body.music-body .artist360-booking,
body.music-body .artist360-empty {
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: rgba(12, 15, 18, .88);
    color: var(--text-primary) !important;
    overflow: hidden;
    box-shadow: none;
}

body.music-body .artist360-video-card,
body.music-body .artist360-content-card,
body.music-body .artist360-link-card {
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

body.music-body .artist360-video-card:hover,
body.music-body .artist360-content-card:hover,
body.music-body .artist360-link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 215, 215, .34);
    background: rgba(17, 21, 26, .96);
}

body.music-body .artist360-video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: #050607;
    cursor: pointer;
}

body.music-body .artist360-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

body.music-body .artist360-video-card:hover .artist360-video-thumb img {
    transform: scale(1.025);
}

body.music-body .artist360-video-thumb span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(184, 255, 53, .5);
    border-radius: 50%;
    background: rgba(5, 6, 7, .78);
    color: var(--accent-lime) !important;
    backdrop-filter: blur(12px);
}

body.music-body .artist360-video-thumb b {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 4px 7px;
    border-radius: 7px;
    background: rgba(5, 6, 7, .74);
    color: var(--text-primary) !important;
    font-size: .72rem;
}

body.music-body .artist360-video-card > div,
body.music-body .artist360-content-card > div {
    display: grid;
    gap: 8px;
    padding: 15px;
}

body.music-body .artist360-video-card small,
body.music-body .artist360-content-card span,
body.music-body .artist360-audio-card span {
    color: var(--accent-cyan) !important;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

body.music-body .artist360-video-card h2 {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.25;
}

body.music-body .artist360-video-card p,
body.music-body .artist360-content-card p {
    margin: 0;
    color: var(--text-secondary) !important;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

body.music-body .artist360-youtube-subscribe {
    width: max-content;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 77, 77, .46);
    border-radius: 9px;
    background: rgba(255, 0, 0, .08);
    color: #f6f7f8 !important;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}

body.music-body .artist360-youtube-subscribe i {
    color: #ff4d4d !important;
    font-size: 1rem;
}

body.music-body .artist360-youtube-subscribe:hover,
body.music-body .artist360-youtube-subscribe:focus-visible {
    border-color: #ff4d4d;
    background: rgba(255, 0, 0, .15);
    outline: none;
}

html[data-theme="light"] body.music-body .artist360-youtube-subscribe {
    background: rgba(204, 0, 0, .06);
    color: #172033 !important;
    -webkit-text-fill-color: #172033 !important;
}

body.music-body .artist360-audio-list {
    display: grid;
    gap: 10px;
}

body.music-body .artist360-audio-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 13px 15px;
}

body.music-body .artist360-audio-play {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(184, 255, 53, .45);
    border-radius: 50%;
    background: rgba(184, 255, 53, .12);
    color: var(--accent-lime) !important;
}

body.music-body .artist360-content-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #050607;
}

body.music-body .artist360-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

body.music-body .artist360-link-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
}

body.music-body .artist360-link-card > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(0, 215, 215, .11);
    color: var(--accent-cyan) !important;
}

@media (max-width: 1050px) {
    body.music-body .artist360-shell {
        grid-template-columns: 300px minmax(0, 1fr);
        width: calc(100% - 32px);
        gap: 22px;
    }

    body.music-body .artist360-main {
        padding: 18px;
    }

    body.music-body .artist360-link-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body.music-body .artist360-shell {
        display: block;
        width: calc(100% - 24px);
        padding: 24px 0 68px;
    }

    body.music-body .artist360-sidebar {
        position: relative;
        top: auto;
        margin-bottom: 20px;
    }

    body.music-body .artist360-photo {
        aspect-ratio: 16 / 11;
    }

    body.music-body .artist360-main {
        padding: 14px;
        border-radius: 20px;
    }

    body.music-body .artist360-tabs {
        position: relative;
        top: auto;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    body.music-body .artist360-tabs a {
        white-space: nowrap;
    }

    body.music-body .artist360-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    body.music-body .artist360-audio-card {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    body.music-body .artist360-audio-card time {
        grid-column: 2;
    }
}

/* Strong artist profile redesign: visible page structure, not just theme polish. */
body.music-body .artist360-shell {
    width: min(1560px, calc(100% - 48px)) !important;
    max-width: 1560px !important;
    margin: 0 auto !important;
    padding: 38px 0 84px !important;
    display: grid !important;
    grid-template-columns: 260px minmax(0, 1fr) !important;
    gap: 26px !important;
    align-items: start !important;
}

body.music-body .artist360-hero {
    grid-column: 1 / -1 !important;
    min-height: 360px !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr) !important;
    gap: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 30px !important;
    background:
        radial-gradient(circle at 82% 12%, rgba(0, 215, 215, .24), transparent 30%),
        radial-gradient(circle at 68% 80%, rgba(255, 45, 166, .18), transparent 34%),
        linear-gradient(135deg, #12161b 0%, #070809 62%, #020303 100%) !important;
    box-shadow: 0 34px 95px rgba(0, 0, 0, .42) !important;
}

body.music-body .artist360-hero-media {
    min-height: 360px !important;
    position: relative !important;
    overflow: hidden !important;
    background: #050607 !important;
}

body.music-body .artist360-hero-media::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, transparent 58%, rgba(7, 8, 9, .92)),
        linear-gradient(0deg, rgba(5, 6, 7, .72), transparent 42%) !important;
    pointer-events: none !important;
}

body.music-body .artist360-hero-media img,
body.music-body .artist360-hero-media .artist-placeholder {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

body.music-body .artist360-hero-copy {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: clamp(26px, 4vw, 58px) !important;
}

body.music-body .artist360-hero-copy h1 {
    max-width: 820px !important;
    margin: 14px 0 16px !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(2.7rem, 5.2vw, 5.4rem) !important;
    line-height: .88 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 34px rgba(0, 215, 215, .16), 0 12px 46px rgba(0, 0, 0, .42) !important;
}

body.music-body .artist360-hero-copy p {
    max-width: 760px !important;
    margin: 0 !important;
    color: #c5cad2 !important;
    -webkit-text-fill-color: #c5cad2 !important;
    font-size: clamp(.96rem, 1.15vw, 1.08rem) !important;
    line-height: 1.7 !important;
}

body.music-body .artist360-hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 28px !important;
}

body.music-body .artist360-hero-actions .music-primary-btn,
body.music-body .artist360-hero-actions .artist360-outline {
    min-height: 46px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
}

body.music-body .artist360-social-strip {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 28px !important;
}

body.music-body .artist360-social-strip a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 999px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)) padding-box,
        linear-gradient(115deg, rgba(0, 215, 215, .55), rgba(255, 45, 166, .36), rgba(184, 255, 53, .44)) border-box !important;
    color: #f7fafc !important;
    -webkit-text-fill-color: #f7fafc !important;
    text-decoration: none !important;
    font-size: .86rem !important;
    font-weight: 850 !important;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .10) !important;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease !important;
}

body.music-body .artist360-social-strip a i {
    color: var(--accent-lime) !important;
    -webkit-text-fill-color: var(--accent-lime) !important;
    font-size: 1rem !important;
    filter: drop-shadow(0 0 10px rgba(184, 255, 53, .28)) !important;
}

body.music-body .artist360-social-strip a:hover,
body.music-body .artist360-social-strip a:focus-visible {
    transform: translateY(-3px) !important;
    border-color: transparent !important;
    background:
        linear-gradient(180deg, rgba(15, 20, 24, .98), rgba(10, 12, 16, .98)) padding-box,
        linear-gradient(115deg, var(--accent-cyan), var(--accent-magenta), var(--accent-lime)) border-box !important;
    box-shadow: 0 18px 48px rgba(0, 215, 215, .16), 0 12px 40px rgba(255, 45, 166, .10) !important;
}

body.music-body .artist360-social-mini {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

body.music-body .artist360-social-mini a {
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: var(--accent-lime) !important;
    text-decoration: none !important;
}

body.music-body .artist360-social-mini a:hover,
body.music-body .artist360-social-mini a:focus-visible {
    border-color: rgba(0, 215, 215, .48) !important;
    background: rgba(0, 215, 215, .12) !important;
    color: #fff !important;
}

body.music-body .artist360-hero-stats {
    max-width: 680px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 28px !important;
}

body.music-body .artist360-hero-stats.has-audio {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.music-body .artist360-hero-stats span {
    min-height: 76px !important;
    display: grid !important;
    align-content: center !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .045) !important;
    color: #aeb6c0 !important;
    -webkit-text-fill-color: #aeb6c0 !important;
    font-size: .72rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

body.music-body .artist360-hero-stats strong {
    display: block !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1.42rem !important;
    line-height: 1 !important;
}

body.music-body .artist360-wave {
    height: 42px !important;
    display: flex !important;
    align-items: end !important;
    gap: 6px !important;
    margin-top: 30px !important;
    opacity: .95 !important;
}

body.music-body .artist360-wave span {
    width: 5px !important;
    height: 18px !important;
    display: block !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-lime)) !important;
    box-shadow: 0 0 18px rgba(0, 215, 215, .24) !important;
    animation: artistWave 1.4s ease-in-out infinite alternate !important;
}

body.music-body .artist360-wave span:nth-child(2n) {
    height: 30px !important;
    background: linear-gradient(180deg, var(--accent-magenta), var(--accent-lime)) !important;
    animation-delay: .18s !important;
}

body.music-body .artist360-wave span:nth-child(3n) {
    height: 38px !important;
    animation-delay: .34s !important;
}

body.music-body .artist360-wave span:nth-child(5n) {
    height: 24px !important;
    animation-delay: .52s !important;
}

@keyframes artistWave {
    to {
        transform: scaleY(.45);
        opacity: .58;
    }
}

body.music-body .artist360-sidebar {
    position: sticky !important;
    top: 92px !important;
    max-width: none !important;
    padding: 12px !important;
    border-radius: 22px !important;
    background: rgba(12, 15, 18, .86) !important;
    border: 1px solid rgba(255, 255, 255, .10) !important;
    box-shadow: none !important;
}

body.music-body .artist360-sidebar > .artist360-photo,
body.music-body .artist360-sidebar > .artist360-side-copy,
body.music-body .artist360-sidebar > .artist360-actions,
body.music-body .artist360-sidebar > .artist360-stats {
    display: none !important;
}

body.music-body .artist360-nav {
    display: grid !important;
    gap: 8px !important;
}

body.music-body .artist360-nav a {
    min-height: 48px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 15px !important;
    background: rgba(255, 255, 255, .025) !important;
}

body.music-body .artist360-nav a.is-active {
    background:
        linear-gradient(rgba(16, 20, 24, .95), rgba(16, 20, 24, .95)) padding-box,
        linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta)) border-box !important;
    border-color: transparent !important;
}

body.music-body .artist360-main {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.music-body .artist360-tabs {
    margin-bottom: 2px !important;
    border-radius: 22px !important;
    background: rgba(12, 15, 18, .86) !important;
}

body.music-body .artist360-section-head {
    padding: 22px 24px !important;
    border: 1px solid rgba(255, 255, 255, .10) !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at 90% 0, rgba(0, 215, 215, .14), transparent 26%),
        rgba(12, 15, 18, .88) !important;
}

body.music-body .artist360-video-grid,
body.music-body .artist360-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

body.music-body .artist360-video-grid .artist360-video-card:first-child {
    grid-column: auto !important;
}

body.music-body .artist360-video-card,
body.music-body .artist360-content-card,
body.music-body .artist360-audio-card,
body.music-body .artist360-link-card,
body.music-body .artist360-about,
body.music-body .artist360-booking,
body.music-body .artist360-empty {
    border-radius: 22px !important;
    background: #0c0f12 !important;
    border-color: rgba(255, 255, 255, .11) !important;
}

body.music-body .artist360-video-card h2,
body.music-body .artist360-content-card strong,
body.music-body .artist360-audio-card strong,
body.music-body .artist360-link-card strong {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

body.music-body .artist360-video-card p,
body.music-body .artist360-content-card p,
body.music-body .artist360-link-card span,
body.music-body .artist360-audio-card span {
    color: #aeb6c0 !important;
    -webkit-text-fill-color: #aeb6c0 !important;
}

/* Keep artist video cards uniform; no featured card inside profiles. */
body.music-body .artist360-video-grid {
    align-items: stretch !important;
}

body.music-body .artist360-video-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
}

body.music-body .artist360-video-thumb {
    flex: 0 0 auto !important;
    aspect-ratio: 16 / 9 !important;
}

body.music-body .artist360-video-card > div {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 148px !important;
}

body.music-body .artist360-video-card h2 {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

body.music-body .artist360-video-card p {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}

@media (max-width: 1100px) {
    body.music-body .artist360-shell {
        width: calc(100% - 32px) !important;
        grid-template-columns: 1fr !important;
    }

    body.music-body .artist360-hero {
        grid-template-columns: 1fr !important;
    }

    body.music-body .artist360-hero-media {
        min-height: 320px !important;
    }

    body.music-body .artist360-hero-media::after {
        background: linear-gradient(0deg, rgba(7, 8, 9, .95), transparent 58%) !important;
    }

    body.music-body .artist360-sidebar {
        position: relative !important;
        top: auto !important;
    }

    body.music-body .artist360-nav {
        display: flex !important;
        overflow-x: auto !important;
        padding-bottom: 4px !important;
    }

    body.music-body .artist360-nav a {
        min-width: max-content !important;
    }

    body.music-body .artist360-video-grid,
    body.music-body .artist360-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    body.music-body .artist360-shell {
        width: calc(100% - 24px) !important;
        padding-top: 22px !important;
    }

    body.music-body .artist360-hero {
        min-height: 0 !important;
        border-radius: 24px !important;
    }

    body.music-body .artist360-hero-media {
        min-height: 260px !important;
    }

    body.music-body .artist360-hero-copy {
        padding: 24px !important;
    }

    body.music-body .artist360-hero-copy h1 {
        font-size: clamp(2.6rem, 16vw, 4rem) !important;
    }

    body.music-body .artist360-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.music-body .artist360-video-grid,
    body.music-body .artist360-card-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.music-body .artist360-wave span {
        animation: none !important;
    }
}

/* Public artists landing redesign. */
body.music-body .artists-page-shell {
    width: min(1560px, calc(100% - 48px)) !important;
    max-width: 1560px !important;
    padding: 38px 0 86px !important;
}

body.music-body .artists-page-shell::before {
    top: 78px !important;
    right: -80px !important;
    width: 680px !important;
    height: 680px !important;
    background:
        radial-gradient(circle at 26% 22%, rgba(0, 215, 215, .20), transparent 45%),
        radial-gradient(circle at 72% 42%, rgba(255, 45, 166, .15), transparent 54%),
        radial-gradient(circle at 54% 78%, rgba(184, 255, 53, .08), transparent 46%) !important;
}

body.music-body .artists-page-header {
    min-height: 300px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr) !important;
    grid-template-areas:
        "copy visual"
        "search search" !important;
    gap: 26px !important;
    align-items: stretch !important;
    margin-bottom: 18px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 30px !important;
    padding: clamp(22px, 3vw, 38px) !important;
    background:
        radial-gradient(circle at 82% 10%, rgba(0, 215, 215, .18), transparent 32%),
        radial-gradient(circle at 68% 82%, rgba(255, 45, 166, .16), transparent 36%),
        linear-gradient(135deg, #13181e 0%, #080a0d 62%, #030404 100%) !important;
    box-shadow: 0 34px 95px rgba(0, 0, 0, .38) !important;
}

body.music-body .artists-page-title {
    grid-area: copy !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

body.music-body .artists-page-eyebrow {
    width: max-content !important;
    max-width: 100% !important;
    min-height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 0 11px !important;
    border: 1px solid rgba(0, 215, 215, .35) !important;
    border-radius: 999px !important;
    background: rgba(0, 215, 215, .08) !important;
    color: var(--accent-cyan) !important;
    -webkit-text-fill-color: var(--accent-cyan) !important;
    font-size: .72rem !important;
    font-weight: 950 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

body.music-body .artists-page-title h1 {
    max-width: 850px !important;
    margin: 12px 0 12px !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(2.65rem, 5.2vw, 5.2rem) !important;
    line-height: .9 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

body.music-body .artists-page-title p {
    max-width: 620px !important;
    margin: 0 !important;
    color: #c3cad3 !important;
    -webkit-text-fill-color: #c3cad3 !important;
    font-size: clamp(.94rem, 1.05vw, 1.05rem) !important;
    line-height: 1.55 !important;
}

body.music-body .artists-page-stats {
    max-width: 540px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 20px !important;
}

body.music-body .artists-page-stats span {
    min-height: 58px !important;
    display: grid !important;
    align-content: center !important;
    padding: 9px 10px !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .045) !important;
    color: #aeb6c0 !important;
    -webkit-text-fill-color: #aeb6c0 !important;
    font-size: .72rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

body.music-body .artists-page-stats strong {
    display: block !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1.12rem !important;
    line-height: 1 !important;
}

body.music-body .artists-page-visual {
    grid-area: visual !important;
    min-height: 240px !important;
    position: relative !important;
    display: grid !important;
    place-items: center !important;
}

body.music-body .artists-visual-disc {
    width: min(68%, 255px) !important;
    aspect-ratio: 1 !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background:
        radial-gradient(circle, #0b0d10 0 16%, transparent 16.5%),
        repeating-radial-gradient(circle, #181d22 0 5px, #0b0d10 6px 10px) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .08),
        0 30px 80px rgba(0, 0, 0, .52) !important;
    animation: artistsDisc 28s linear infinite !important;
}

body.music-body .artists-visual-disc::before {
    content: "" !important;
    width: 38% !important;
    aspect-ratio: 1 !important;
    position: absolute !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta)) !important;
    box-shadow: inset 0 0 0 24px rgba(5, 6, 7, .88) !important;
}

body.music-body .artists-visual-disc span {
    position: relative !important;
    z-index: 1 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 950 !important;
    line-height: .9 !important;
    text-align: center !important;
}

body.music-body .artists-visual-card {
    position: absolute !important;
    right: 0 !important;
    bottom: 6px !important;
    width: min(270px, 86%) !important;
    padding: 14px !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 22px !important;
    background: rgba(12, 15, 18, .82) !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .38) !important;
    backdrop-filter: blur(18px) !important;
}

body.music-body .artists-visual-card small {
    color: var(--accent-lime) !important;
    -webkit-text-fill-color: var(--accent-lime) !important;
    font-size: .7rem !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
}

body.music-body .artists-visual-card strong {
    display: block !important;
    margin-top: 5px !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1.05rem !important;
}

body.music-body .artists-visual-wave {
    height: 34px !important;
    display: flex !important;
    align-items: end !important;
    gap: 5px !important;
    margin-top: 14px !important;
}

body.music-body .artists-visual-wave span {
    width: 5px !important;
    height: 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-lime)) !important;
    animation: artistsWave 1.2s ease-in-out infinite alternate !important;
}

body.music-body .artists-visual-wave span:nth-child(2n) {
    height: 25px !important;
    background: linear-gradient(180deg, var(--accent-magenta), var(--accent-lime)) !important;
    animation-delay: .16s !important;
}

body.music-body .artists-visual-wave span:nth-child(3n) {
    height: 32px !important;
    animation-delay: .28s !important;
}

body.music-body .artists-search {
    grid-area: search !important;
    width: min(760px, 100%) !important;
    min-height: 50px !important;
    align-self: center !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .065) !important;
    backdrop-filter: blur(14px) !important;
}

body.music-body .artists-search input {
    min-height: 48px !important;
    font-size: .95rem !important;
}

body.music-body .artists-toolbar {
    margin: 22px 0 24px !important;
    padding: 12px !important;
    border-radius: 22px !important;
    background: rgba(12, 15, 18, .82) !important;
    backdrop-filter: blur(16px) !important;
}

body.music-body .artists-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

body.music-body .artists-card {
    min-height: 100% !important;
    border-radius: 24px !important;
    background:
        linear-gradient(180deg, rgba(17, 21, 26, .95), rgba(10, 12, 15, .98)) !important;
    border: 1px solid var(--accent-muted) !important;
    box-shadow: 0 0 0 1px rgba(95, 122, 118, .14), 0 14px 34px rgba(0, 0, 0, .22) !important;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease !important;
}

body.music-body .artists-card:hover {
    transform: translateY(-6px) !important;
    border-color: var(--accent-purple) !important;
    background:
        linear-gradient(180deg, rgba(17, 24, 25, .98), rgba(10, 15, 15, .99)) !important;
    box-shadow: 0 0 0 1px rgba(1, 169, 130, .20), 0 20px 48px rgba(0, 0, 0, .42) !important;
}

body.music-body .artists-card-media {
    border-bottom: 1px solid var(--accent-muted);
}

body.music-body .artists-card h2::after {
    width: 42px !important;
    height: 2px !important;
    background: linear-gradient(90deg, var(--accent-muted), var(--accent-purple)) !important;
    box-shadow: 0 0 10px rgba(97, 71, 103, .45) !important;
}

body.music-body .artists-profile-btn {
    border-color: var(--accent-muted) !important;
}

body.music-body .artists-profile-btn:hover,
body.music-body .artists-card:hover .artists-profile-btn {
    border-color: var(--accent-purple) !important;
    color: #d8c8dc !important;
    background: rgba(97, 71, 103, .18) !important;
    box-shadow: 0 0 16px rgba(97, 71, 103, .20) !important;
}

body.music-body .artists-card-media {
    aspect-ratio: 4 / 3.7 !important;
    border-radius: 0 !important;
}

body.music-body .artists-card-media::after {
    height: 56% !important;
    background: linear-gradient(0deg, rgba(12, 15, 18, .96), transparent) !important;
}

body.music-body .artists-card-body {
    padding: 18px !important;
}

body.music-body .artists-card h2 {
    font-size: 1.35rem !important;
    font-weight: 850 !important;
}

body.music-body .artists-card p {
    min-height: 66px !important;
    font-size: .92rem !important;
}

body.music-body .artists-profile-btn {
    min-height: 44px !important;
    border-radius: 14px !important;
}

@keyframes artistsDisc {
    to {
        transform: rotate(360deg);
    }
}

@keyframes artistsWave {
    to {
        transform: scaleY(.45);
        opacity: .58;
    }
}

@media (max-width: 1280px) {
    body.music-body .artists-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    body.music-body .artists-page-header {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "copy"
            "visual"
            "search" !important;
        min-height: 0 !important;
    }

    body.music-body .artists-page-visual {
        min-height: 260px !important;
    }

    body.music-body .artists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    body.music-body .artists-page-shell {
        width: calc(100% - 24px) !important;
        padding-top: 22px !important;
    }

    body.music-body .artists-page-header {
        padding: 22px !important;
        border-radius: 24px !important;
    }

    body.music-body .artists-page-title h1 {
        font-size: clamp(2.4rem, 13vw, 3.5rem) !important;
    }

    body.music-body .artists-page-stats {
        grid-template-columns: 1fr !important;
    }

    body.music-body .artists-toolbar {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    body.music-body .artists-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.music-body .artists-visual-disc,
    body.music-body .artists-visual-wave span {
        animation: none !important;
    }
}

/* Footer alignment cleanup. */
body.music-body .music-footer {
    width: 100% !important;
    max-width: none !important;
    min-height: 96px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .10) !important;
    background: #050607 !important;
    color: #8f97a3 !important;
}

body.music-body .music-footer-inner {
    width: min(1320px, calc(100% - 48px)) !important;
    margin: 0 auto !important;
}

body.music-body .music-footer-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 2rem !important;
    padding: 28px 0 22px !important;
    flex-wrap: wrap !important;
}

body.music-body .music-brand-footer {
    justify-self: start !important;
    flex: 0 0 auto !important;
}

body.music-body .music-logo-footer {
    max-height: 48px !important;
}

body.music-body .music-footer-links {
    display: flex !important;
    justify-content: flex-end !important;
    max-width: min(820px, 100%) !important;
    text-align: left !important;
}

body.music-body .music-footer-links,
body.music-body .music-footer-links * {
    color: #a8adb5 !important;
}

body.music-body .music-footer-links a {
    display: inline-flex !important;
    align-items: center !important;
    margin: 4px 8px !important;
    color: #c4c9d1 !important;
    text-decoration: none !important;
}

body.music-body .music-footer-links a:hover {
    color: var(--accent-cyan) !important;
}

body.music-body .music-footer-bottom {
    display: flex !important;
    justify-content: center !important;
    padding: 14px 0 22px !important;
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
    text-align: center !important;
}

body.music-body .music-footer-bottom span {
    color: #8f97a3 !important;
    white-space: nowrap !important;
}

@media (max-width: 820px) {
    body.music-body .music-footer {
        padding: 0 !important;
    }

    body.music-body .music-footer-inner {
        width: calc(100% - 32px) !important;
    }

    body.music-body .music-footer-top {
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        padding: 26px 0 18px !important;
        text-align: center !important;
    }

    body.music-body .music-footer-links {
        justify-content: center !important;
        text-align: center !important;
    }

    body.music-body .music-footer-bottom {
        padding-bottom: calc(22px + env(safe-area-inset-bottom)) !important;
    }

    body.music-body .music-footer-bottom span {
        white-space: normal !important;
    }
}

/* Final public light-theme overrides must come after the landing-card skin. */
html[data-theme="light"] body.music-body {
    background: #f6f8fb !important;
    color: #0f172a !important;
}

html[data-theme="light"] body.music-body .music-main,
html[data-theme="light"] body.music-body .artists-page-shell,
html[data-theme="light"] body.music-body .artists-page-header,
html[data-theme="light"] body.music-body .artists-toolbar,
html[data-theme="light"] body.music-body .artists-card,
html[data-theme="light"] body.music-body .artists-empty-state,
html[data-theme="light"] body.music-body .artists-search {
    background: #ffffff !important;
    border-color: #dbe4f0 !important;
    color: #0f172a !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08) !important;
}

html[data-theme="light"] body.music-body .music-main {
    background: #f6f8fb !important;
}

html[data-theme="light"] body.music-body .artists-page-title h1,
html[data-theme="light"] body.music-body .artists-card h2,
html[data-theme="light"] body.music-body .artists-card h2 a,
html[data-theme="light"] body.music-body .artists-empty-state h2 {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

html[data-theme="light"] body.music-body .artists-page-title p,
html[data-theme="light"] body.music-body .artists-card p,
html[data-theme="light"] body.music-body .artists-sort-form label,
html[data-theme="light"] body.music-body .artists-empty-state p {
    color: #64748b !important;
    -webkit-text-fill-color: #64748b !important;
}

html[data-theme="light"] body.music-body .artists-search input,
html[data-theme="light"] body.music-body .artists-sort-form select {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

html[data-theme="light"] body.music-body .music-header {
    background: #050b18 !important;
}

/* Public site header: two distinct levels, following the Intranet10 hierarchy. */
body.music-body .music-header {
    height: 70px !important;
    padding: 0 !important;
    border-bottom: 1px solid #172033 !important;
    background: #050b18 !important;
}

body.music-body .music-header-inner {
    width: min(calc(100% - 48px), 1440px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-inline: auto;
}

body.music-body .music-brand {
    display: inline-flex !important;
    align-items: center !important;
    min-width: 0;
    flex: 0 0 auto;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

body.music-body .music-logo {
    display: block !important;
    width: auto !important;
    height: 42px !important;
    max-height: 42px !important;
    object-fit: contain !important;
}

body.music-body .music-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    min-width: 0;
    margin-left: auto;
    background: transparent !important;
}

body.music-body .music-nav {
    width: 100% !important;
    height: 66px !important;
    display: block !important;
    border-bottom: 1px solid #253145 !important;
    background: #111827 !important;
}

body.music-body .music-nav-inner {
    width: min(calc(100% - 48px), 1440px);
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    margin-inline: auto;
}

body.music-body .music-nav-inner > a {
    position: relative;
    height: 66px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Artist profile controls in light mode. Dark profile rules above remain unchanged. */
html[data-theme="light"] body.music-body .artist360-sidebar {
    border-color: #c6c9ca !important;
    background: #e7ecef !important;
    color: #172033 !important;
}

html[data-theme="light"] body.music-body .artist360-nav a,
html[data-theme="light"] body.music-body .artist360-tabs a {
    border-color: #c6c9ca !important;
    background: #ffffff !important;
    color: #425563 !important;
    -webkit-text-fill-color: #425563 !important;
}

html[data-theme="light"] body.music-body .artist360-nav a i,
html[data-theme="light"] body.music-body .artist360-nav a span,
html[data-theme="light"] body.music-body .artist360-tabs a i,
html[data-theme="light"] body.music-body .artist360-tabs a span {
    color: inherit !important;
    -webkit-text-fill-color: currentColor !important;
}

html[data-theme="light"] body.music-body .artist360-nav a:hover,
html[data-theme="light"] body.music-body .artist360-nav a.is-active,
html[data-theme="light"] body.music-body .artist360-tabs a:hover,
html[data-theme="light"] body.music-body .artist360-tabs a.is-active {
    border-color: #01a982 !important;
    background: rgba(1, 169, 130, .10) !important;
    color: #008567 !important;
    -webkit-text-fill-color: #008567 !important;
}

html[data-theme="light"] body.music-body .artist360-nav b {
    background: rgba(1, 169, 130, .12) !important;
    color: #008567 !important;
    -webkit-text-fill-color: #008567 !important;
}

html[data-theme="light"] body.music-body .artist360-tabs {
    border-color: #c6c9ca !important;
    background: rgba(231, 236, 239, .96) !important;
}

html[data-theme="light"] body.music-body .artist360-adminbar a,
html[data-theme="light"] body.music-body .artist360-outline {
    border-color: #c6c9ca !important;
    background: #e7ecef !important;
    color: #172033 !important;
    -webkit-text-fill-color: #172033 !important;
}

html[data-theme="light"] body.music-body .artist360-adminbar a:hover,
html[data-theme="light"] body.music-body .artist360-adminbar a:focus-visible,
html[data-theme="light"] body.music-body .artist360-outline:hover,
html[data-theme="light"] body.music-body .artist360-outline:focus-visible {
    border-color: #01a982 !important;
    background: rgba(1, 169, 130, .10) !important;
    color: #008567 !important;
    -webkit-text-fill-color: #008567 !important;
}

html[data-theme="light"] body.music-body .artist360-section-head,
html[data-theme="light"] body.music-body .artist360-video-card,
html[data-theme="light"] body.music-body .artist360-content-card,
html[data-theme="light"] body.music-body .artist360-audio-card,
html[data-theme="light"] body.music-body .artist360-link-card,
html[data-theme="light"] body.music-body .artist360-about,
html[data-theme="light"] body.music-body .artist360-booking,
html[data-theme="light"] body.music-body .artist360-empty {
    border-color: #c6c9ca !important;
    background: #e7ecef !important;
    color: #172033 !important;
}

html[data-theme="light"] body.music-body .artist360-section-head h2,
html[data-theme="light"] body.music-body .artist360-video-card h2,
html[data-theme="light"] body.music-body .artist360-content-card strong,
html[data-theme="light"] body.music-body .artist360-audio-card strong,
html[data-theme="light"] body.music-body .artist360-link-card strong,
html[data-theme="light"] body.music-body .artist360-about h2,
html[data-theme="light"] body.music-body .artist360-booking h2,
html[data-theme="light"] body.music-body .artist360-empty h2 {
    color: #172033 !important;
    -webkit-text-fill-color: #172033 !important;
}

html[data-theme="light"] body.music-body .artist360-section-head p,
html[data-theme="light"] body.music-body .artist360-video-card p,
html[data-theme="light"] body.music-body .artist360-content-card p,
html[data-theme="light"] body.music-body .artist360-audio-card span,
html[data-theme="light"] body.music-body .artist360-link-card span,
html[data-theme="light"] body.music-body .artist360-about p,
html[data-theme="light"] body.music-body .artist360-booking p,
html[data-theme="light"] body.music-body .artist360-empty p {
    color: #425563 !important;
    -webkit-text-fill-color: #425563 !important;
}

html[data-theme="light"] body.music-body .artist360-video-card small,
html[data-theme="light"] body.music-body .artist360-content-card > div > span {
    color: #008567 !important;
    -webkit-text-fill-color: #008567 !important;
}

html[data-theme="light"] body.music-body .artist360-section-head > strong {
    background: #01a982 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

body.music-body .music-nav-inner > a::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: transparent;
}

body.music-body .music-nav-inner > a:hover,
body.music-body .music-nav-inner > a:focus-visible,
body.music-body .music-nav-inner > a.is-active {
    color: #f8fafc !important;
    background: transparent !important;
}

body.music-body .music-nav-inner > a.is-active {
    font-weight: 750;
}

body.music-body .music-nav-inner > a.is-active::after {
    background: #14b8a6;
}

html[data-theme="light"] body.music-body .music-nav {
    border-bottom-color: #dbe4f0 !important;
    background: #ffffff !important;
}

html[data-theme="light"] body.music-body .music-nav-inner > a {
    color: #64748b !important;
    -webkit-text-fill-color: #64748b !important;
}

html[data-theme="light"] body.music-body .music-nav-inner > a:hover,
html[data-theme="light"] body.music-body .music-nav-inner > a:focus-visible,
html[data-theme="light"] body.music-body .music-nav-inner > a.is-active {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

html[data-theme="light"] body.music-body .music-nav-inner > a.is-active::after {
    background: #01a982;
}

@media (max-width: 760px) {
    body.music-body .music-header-inner,
    body.music-body .music-nav-inner {
        width: calc(100% - 32px);
    }

    body.music-body .music-header-inner {
        gap: 12px;
    }

    body.music-body .music-nav-inner {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    body.music-body .music-nav-inner::-webkit-scrollbar {
        display: none;
    }

    body.music-body .music-nav-inner > a {
        flex: 0 0 auto;
        padding: 0 14px !important;
    }

    body.music-body .music-actions {
        gap: 7px !important;
    }

    body.music-body .music-actions .music-user,
    body.music-body .music-actions .music-admin-link span,
    body.music-body .music-actions .music-theme-toggle span {
        display: none !important;
    }
}

/* Artists directory: open editorial layout, without section or artist cards. */
body.music-body .artists-page-shell {
    width: min(calc(100% - 48px), 1440px) !important;
    padding: 48px 0 64px !important;
    background: transparent !important;
}

body.music-body .artists-page-shell::before {
    display: none !important;
}

body.music-body .artists-page-header {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px) !important;
    grid-template-areas: "copy search" !important;
    align-items: center !important;
    gap: 32px !important;
    margin: 0 !important;
    padding: 0 0 28px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.music-body .artists-page-title {
    display: block !important;
}

body.music-body .artists-page-title h1 {
    margin: 0 0 8px !important;
    font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
    line-height: 1.05 !important;
}

body.music-body .artists-page-title p {
    max-width: 640px !important;
    margin: 0 !important;
    font-size: .95rem !important;
    line-height: 1.5 !important;
}

body.music-body .artists-search {
    width: 100% !important;
    min-height: 48px !important;
    margin: 0 !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 10px !important;
    background: var(--surface-1) !important;
    box-shadow: none !important;
}

body.music-body .artists-toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 20px 0 28px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.music-body .artists-filter-chips {
    display: flex !important;
    min-width: 0 !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

body.music-body .artists-chip {
    border-radius: 7px !important;
}

body.music-body .artists-sort-form {
    flex: 0 0 auto !important;
}

body.music-body .artists-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 42px 24px !important;
    padding-top: 36px !important;
    background: transparent !important;
}

body.music-body .artists-card,
body.music-body .artists-card:hover,
body.music-body .artists-card:focus-within {
    min-height: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

body.music-body .artists-card-media {
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22) !important;
}

body.music-body .artists-card-body {
    min-height: 0 !important;
    padding: 18px 4px 0 !important;
}

body.music-body .artists-card h2 {
    margin: 0 !important;
    padding-bottom: 10px !important;
    font-size: 1.18rem !important;
}

body.music-body .artists-card h2::after {
    width: 34px !important;
    height: 2px !important;
    background: var(--accent-lime) !important;
    box-shadow: none !important;
}

body.music-body .artists-card p {
    min-height: 0 !important;
    margin: 10px 0 16px !important;
    font-size: .86rem !important;
    line-height: 1.5 !important;
}

body.music-body .artists-card-actions {
    justify-content: flex-start !important;
    gap: 12px !important;
}

body.music-body .artists-profile-btn {
    min-height: 38px !important;
    border-radius: 7px !important;
}

html[data-theme="light"] body.music-body .artists-page-header,
html[data-theme="light"] body.music-body .artists-toolbar,
html[data-theme="light"] body.music-body .artists-card,
html[data-theme="light"] body.music-body .artists-card:hover,
html[data-theme="light"] body.music-body .artists-card:focus-within {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

html[data-theme="light"] body.music-body .artists-card-media {
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12) !important;
}

@media (max-width: 1280px) {
    body.music-body .artists-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    body.music-body .artists-page-shell {
        width: calc(100% - 40px) !important;
        padding-top: 34px !important;
    }

    body.music-body .artists-page-header {
        grid-template-columns: 1fr !important;
        grid-template-areas: "copy" "search" !important;
        gap: 18px !important;
    }

    body.music-body .artists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 34px 20px !important;
    }
}

@media (max-width: 600px) {
    body.music-body .artists-page-shell {
        width: calc(100% - 32px) !important;
        padding-top: 24px !important;
    }

    body.music-body .artists-toolbar {
        align-items: stretch !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    body.music-body .artists-filter-chips {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 4px !important;
    }

    body.music-body .artists-sort-form,
    body.music-body .artists-sort-form select {
        width: 100% !important;
    }

    body.music-body .artists-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding-top: 28px !important;
    }
}

/* Keep the artist directory focused on search, filters, and results. */
body.music-body .artists-page-header {
    min-height: 0 !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px) !important;
    grid-template-areas: "copy search" !important;
    gap: 24px !important;
    align-items: center !important;
    margin-bottom: 14px !important;
    padding: 20px 24px !important;
    border-radius: 18px !important;
    background: #0c0f12 !important;
    box-shadow: none !important;
}

body.music-body .artists-page-title {
    justify-content: center !important;
}

body.music-body .artists-page-eyebrow,
body.music-body .artists-page-stats,
body.music-body .artists-page-visual {
    display: none !important;
}

body.music-body .artists-page-title h1 {
    margin: 0 0 5px !important;
    font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
    line-height: 1.1 !important;
}

body.music-body .artists-page-title p {
    max-width: 560px !important;
    font-size: .9rem !important;
    line-height: 1.4 !important;
}

body.music-body .artists-search {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 900px) {
    body.music-body .artists-page-header {
        grid-template-columns: 1fr !important;
        grid-template-areas: "copy" "search" !important;
        gap: 14px !important;
        padding: 18px !important;
    }
}
