:root {
    --bg: #25252b;
    --bg-dark: #1a1a1f;
    --surface: rgba(26, 26, 31, 0.74);
    --surface-soft: rgba(255, 255, 255, 0.045);
    --accent: #e46033;
    --accent-dark: #d35400;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --line: rgba(228, 96, 51, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 14% 10%, rgba(228, 96, 51, 0.18), transparent 30%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-dark) 100%);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    min-height: 100vh;
}

a {
    color: inherit;
}

.site-header {
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(26, 26, 31, 0.82);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 78px;
    padding: 16px clamp(18px, 4vw, 52px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    align-items: center;
    display: inline-flex;
    text-decoration: none;
}

.brand-logo {
    display: block;
    height: auto;
    max-height: 52px;
    max-width: 184px;
    object-fit: contain;
    width: auto;
}

.site-nav {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.site-menu-toggle {
    display: none;
}

.site-language-switch {
    display: inline-flex;
    gap: 6px;
    margin-left: 10px;
    margin-right: 0;
}

.site-language-switch button {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(228, 96, 51, 0.35);
    border-radius: 7px;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    height: 36px;
    justify-content: center;
    padding: 0;
    width: 40px;
}

.site-language-switch button:hover,
.site-language-switch button.active {
    background: rgba(228, 96, 51, 0.16);
    border-color: var(--accent);
}

.site-language-switch img {
    border-radius: 3px;
    display: block;
    height: 20px;
    object-fit: cover;
    width: 28px;
}

.site-nav a,
.back-link {
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 12px;
    text-decoration: none;
}

.site-nav a:hover,
.back-link:hover {
    background: rgba(228, 96, 51, 0.15);
    color: var(--text);
}

.hero {
    align-items: center;
    display: grid;
    min-height: min(700px, calc(100vh - 78px));
    overflow: hidden;
    padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 52px);
}

.hero-inner,
.section,
.about-band,
.artist-profile-hero,
.detail-grid,
.site-footer {
    margin: 0 auto;
    max-width: 1180px;
    width: 100%;
}

.hero-inner {
    align-items: center;
    display: grid;
    gap: clamp(34px, 5vw, 72px);
    grid-template-columns: minmax(0, 0.78fr) minmax(430px, 0.92fr);
}

.hero-copy-block {
    min-width: 0;
}

.eyebrow {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero-copy {
    color: var(--muted);
    font-size: clamp(20px, 2.15vw, 28px);
    line-height: 1.45;
    max-width: 680px;
}

.release-showcase {
    aspect-ratio: 1.42;
    min-height: 360px;
    position: relative;
    width: min(100%, 680px);
}

.release-showcase::before {
    background:
        radial-gradient(circle at 68% 50%, rgba(228, 96, 51, 0.13), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 42%),
        linear-gradient(135deg, #4a3d38, #2f3037 48%, #1b1b20);
    border: 1px solid rgba(228, 96, 51, 0.42);
    border-radius: 8px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 -26px 44px rgba(0, 0, 0, 0.22),
        0 28px 60px rgba(0, 0, 0, 0.38);
    content: "";
    height: 92%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    z-index: 0;
}

.release-showcase::after {
    background: linear-gradient(135deg, #2ed573, #10ac84);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(46, 213, 115, 0.12), 0 0 18px rgba(46, 213, 115, 0.42);
    content: "";
    height: 12px;
    position: absolute;
    right: 6%;
    top: 80%;
    width: 12px;
    z-index: 3;
}

.release-cover,
.vinyl-record,
.tonearm {
    position: absolute;
}

.release-cover {
    background: #111115;
    border-radius: 4px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
    aspect-ratio: 1;
    height: 84%;
    left: 0;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

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

.vinyl-record {
    animation: vinyl-spin 3.8s linear infinite;
    aspect-ratio: 1;
    background:
        conic-gradient(from 16deg, rgba(255, 255, 255, 0.16), transparent 9deg 42deg, rgba(255, 255, 255, 0.08) 52deg, transparent 76deg 360deg),
        radial-gradient(circle at center, transparent 0 14%, rgba(255, 255, 255, 0.55) 14.3% 14.8%, transparent 15.2%),
        repeating-radial-gradient(circle at center, #0c0c0e 0 2px, #19191d 2px 4px, #101014 4px 6px),
        radial-gradient(circle at center, #34343b 0, #0c0c0e 67%, #050506 100%);
    border-radius: 50%;
    box-shadow:
        0 0 0 10px rgba(0, 0, 0, 0.18),
        0 22px 58px rgba(0, 0, 0, 0.44);
    height: 74%;
    right: 9%;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: 50% 50%;
    z-index: 1;
}

.vinyl-record::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 58%);
    border-radius: inherit;
    content: "";
    inset: 0;
    position: absolute;
}

.vinyl-record img {
    border: 7px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    height: 48%;
    left: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48%;
}

.vinyl-record::after {
    background: #0b0b0d;
    border: 2px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    content: "";
    height: 4.8%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4.8%;
}

.tonearm {
    animation: needle-ride 1.15s ease-in-out infinite;
    background: linear-gradient(90deg, #f4eee6, #9f9b94 46%, #f6efe6);
    border-radius: 999px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.35);
    height: 9px;
    right: 5%;
    top: 18%;
    transform: rotate(-70deg);
    transform-origin: calc(100% - 18px) 50%;
    width: 40%;
    z-index: 3;
}

.tonearm::before {
    background: linear-gradient(135deg, #25252b, #0f0f12);
    border: 4px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    content: "";
    height: 46px;
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
}

.tonearm::after {
    background: linear-gradient(135deg, #ece5dc, #555);
    border-radius: 3px;
    content: "";
    height: 24px;
    left: -7px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-16deg);
    width: 20px;
}

@keyframes vinyl-spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes needle-ride {
    0%,
    100% {
        transform: rotate(-70deg);
    }

    50% {
        transform: rotate(-69.1deg);
    }
}

.section {
    padding: 30px clamp(18px, 4vw, 52px) 86px;
}

.compact-section {
    min-height: 52vh;
    padding-top: 90px;
}

.section-heading {
    align-items: end;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 18px;
}

.section-heading h2,
.about-band h2,
.detail-panel h2 {
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.12;
    margin-bottom: 0;
}

.artist-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}

.artist-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 20px;
    min-height: 470px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.artist-card:hover,
.artist-card:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    outline: none;
    transform: translateY(-3px);
}

.artist-photo,
.profile-image {
    align-items: center;
    aspect-ratio: 1;
    background: #34343b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.artist-photo img,
.profile-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}


.artist-photo img.artist-fallback-logo,
.profile-image img.artist-fallback-logo {
    height: auto;
    max-height: 72%;
    max-width: 72%;
    object-fit: contain;
    width: auto;
}
.artist-initial {
    color: rgba(255, 255, 255, 0.42);
    font-size: 72px;
    font-weight: 800;
}

.artist-name {
    align-self: center;
    color: var(--text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.notice {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    padding: 20px;
}

.about-band {
    align-items: center;
    background: rgba(228, 96, 51, 0.1);
    border-block: 1px solid var(--line);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
    max-width: none;
    padding: 48px clamp(18px, 4vw, 52px);
}

.about-band p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.artist-profile-hero {
    align-items: start;
    display: grid;
    gap: clamp(24px, 5vw, 64px);
    grid-template-columns: minmax(220px, 380px) minmax(0, 1fr);
    padding: clamp(46px, 8vw, 90px) clamp(18px, 4vw, 52px) 42px;
}

.profile-image {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.artist-profile-page {
    margin: 0 auto;
    max-width: 1180px;
    padding: clamp(14px, 2.4vw, 28px) clamp(18px, 4vw, 52px) 64px;
    width: 100%;
}

.artist-profile-page > h1 {
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1;
    margin: 0 0 20px;
    overflow-wrap: anywhere;
    text-align: center;
}

.artist-profile-layout {
    align-items: stretch;
    display: grid;
    column-gap: clamp(24px, 4vw, 48px);
    row-gap: 22px;
    grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
}

.artist-profile-column {
    display: grid;
    gap: 18px;
    height: 100%;
    min-width: 0;
}

.artist-link-table {
background:
    linear-gradient(
        90deg,
        #101215 0%,
        #101215 52%,
        rgba(15,16,20,.85) 70%,
        rgba(15,16,20,0) 100%
    ),
    url("../img/melody.jpg") right center / auto 100% no-repeat;

background-color: #0F1014;
    border: 1px solid rgba(228, 96, 51, 0.32);
    border-radius: 8px;
    display: grid;
    gap: 20px;
    grid-column: 1 / -1;
    padding: 18px;
}

.artist-text-grid {
    display: grid;
    gap: 18px;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
}

.artist-text-panel {
    background: rgba(18, 19, 23, 0.82);
    border: 1px solid rgba(228, 96, 51, 0.32);
    border-radius: 8px;
    padding: 22px;
}

.artist-text-panel h2 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.artist-text-panel p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.artist-video-panel {
    align-items: center;
    aspect-ratio: 16 / 9;
    background: rgba(26, 26, 31, 0.72);
    border: 1px solid rgba(228, 96, 51, 0.32);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.artist-profile-page .profile-image {
    aspect-ratio: auto;
    height: 100%;
    width: 100%;
}

.artist-video-panel iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.artist-video-logo {
    display: block;
    height: auto;
    max-height: 70%;
    max-width: 58%;
    object-fit: contain;
}

.profile-intro h1 {
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1;
    margin-bottom: 18px;
}

.profile-intro p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    max-width: 760px;
}

.artist-link-panel {
    min-width: 0;
}

.artist-link-panel h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    margin: 0 0 34px;
    overflow-wrap: anywhere;
}

.artist-link-section {
    display: grid;
    gap: 16px;
    margin-top: 0;
}

.artist-link-section h2 {
    color: var(--accent);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}

.icon-link-grid,
.store-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.icon-link,
.store-link {
    align-items: center;
    background: rgba(26, 26, 31, 0.72);
    border: 2px solid transparent;
    border-radius: 8px;
    background:
        linear-gradient(rgba(26, 26, 31, 0.86), rgba(26, 26, 31, 0.86)) padding-box,
        linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5) border-box;
    display: inline-flex;
    justify-content: center;
    overflow: visible;
    position: relative;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.icon-link::before,
.store-link::before {
    background: linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5) border-box;
    border: 2px solid transparent;
    border-radius: 8px;
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.icon-link img,
.store-link img {
    border-radius: 0;
}

.icon-art {
    border-radius: 6px;
    display: block;
    inset: 2px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
}

.icon-link::after,
.store-link::after {
    background: rgba(26, 26, 31, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    bottom: -34px;
    color: #fff;
    content: attr(data-label);
    font-size: 12px;
    font-weight: 800;
    left: 50%;
    line-height: 1;
    opacity: 0;
    padding: 7px 9px;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
    z-index: 4;
}

.icon-link:hover,
.icon-link:focus-visible,
.store-link:hover,
.store-link:focus-visible {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24), 0 0 18px rgba(214, 41, 118, 0.28);
    outline: none;
    transform: translateY(-2px);
}

.icon-link:hover::after,
.icon-link:focus-visible::after,
.store-link:hover::after,
.store-link:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.icon-link {
    height: 72px;
    padding: 0;
    width: 72px;
}

.icon-link img {
    display: block;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    width: 100%;
}

.artist-link-table .icon-link,
.artist-link-table .store-link {
    height: 54px;
    width: 54px;
}

.store-link {
    height: 72px;
    padding: 0;
    width: 72px;
}

.store-link img {
    display: block;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    width: 100%;
}

.store-link[data-label="Deezer"] img,
.store-link[data-label="Qobuz"] img,
.store-link[data-label="Spotify"] img,
.store-link[data-label="Tidal"] img {
    object-fit: contain;
    transform: scale(0.88);
}

.store-link[data-label="Deezer"] img {
    transform: scale(0.78);
}

.store-link[data-label="Amazon Music UK"] img,
.store-link[data-label="Amazon Music US"] img {
    transform: scale(1.24);
}

.detail-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 clamp(18px, 4vw, 52px) 84px;
}

.detail-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
}

.detail-panel h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    background: var(--surface-soft);
    border: 1px solid rgba(228, 96, 51, 0.22);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    padding: 12px 14px;
}

.info-list dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.info-list dd {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    overflow-wrap: anywhere;
}

.rich-text,
.muted {
    color: var(--muted);
    line-height: 1.65;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-list a {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 14px;
    text-decoration: none;
}

.site-footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    padding: 24px clamp(18px, 4vw, 52px);
}

@media (max-width: 820px) {
    .site-header {
        align-items: center;
        flex-direction: row;
        min-height: 68px;
        padding-block: 11px;
    }

    .site-menu-toggle {
        align-items: center;
        background: rgba(228, 96, 51, 0.12);
        border: 1px solid var(--accent);
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
        height: 40px;
        justify-content: center;
        padding: 0;
        width: 44px;
    }

    .site-menu-toggle {
        margin-left: auto;
    }

    .site-language-switch {
        margin-left: 8px;
    }

    .site-menu-toggle span {
        background: var(--text);
        border-radius: 2px;
        display: block;
        height: 2px;
        transition: transform 0.2s ease, opacity 0.2s ease;
        width: 20px;
    }

    .site-header.menu-open .site-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.menu-open .site-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .site-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
        background: rgba(26, 26, 31, 0.98);
        border: 1px solid var(--line);
        border-radius: 8px;
        display: none;
        flex-direction: column;
        gap: 4px;
        left: clamp(18px, 4vw, 52px);
        padding: 8px;
        position: absolute;
        right: clamp(18px, 4vw, 52px);
        top: calc(100% + 6px);
    }

    .site-header.menu-open .site-nav {
        display: flex;
    }

    .site-nav a {
        background: rgba(255, 255, 255, 0.045);
        text-align: center;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .release-showcase {
        justify-self: center;
        min-height: 300px;
        width: min(100%, 560px);
    }

    .section-heading,
    .about-band,
    .artist-profile-hero,
    .artist-profile-layout,
    .artist-text-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid {
        padding-bottom: 56px;
    }
}

@media (max-width: 520px) {
    .site-nav {
        width: auto;
    }

    .site-nav a {
        background: rgba(255, 255, 255, 0.045);
        flex: none;
        text-align: center;
    }

    .artist-grid {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        max-height: 44px;
        max-width: 158px;
    }

    .release-showcase {
        min-height: 230px;
    }

    .artist-card {
        min-height: 0;
        padding: 16px;
    }

    .artist-name {
        font-size: 18px;
    }
}

[hidden] {
    display: none !important;
}

.artist-action-table {
    background: rgba(18, 19, 23, 0.86);
    border: 1px solid rgba(228, 96, 51, 0.36);
    border-radius: 8px;
    display: grid;
    gap: 18px;
    grid-column: 1 / -1;
    padding: 18px;
}

.artist-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.artist-action-buttons button {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    min-height: 44px;
    padding: 0 18px;
    text-transform: uppercase;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.artist-action-buttons button:hover,
.artist-action-buttons button:focus-visible,
.artist-action-buttons button.active {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16), 0 0 18px rgba(228, 96, 51, 0.3);
    outline: none;
    transform: translateY(-1px);
}

.artist-action-content {
    border-top: 1px solid rgba(228, 96, 51, 0.24);
    padding-top: 18px;
}

.artist-tab-panel h2 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.artist-tab-panel p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.release-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.release-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(228, 96, 51, 0.32);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: grid;
    font: inherit;
    gap: 10px;
    padding: 12px;
    text-align: left;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.release-card:hover,
.release-card:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), 0 0 18px rgba(228, 96, 51, 0.18);
    outline: none;
    transform: translateY(-2px);
}

.release-card-cover {
    align-items: center;
    aspect-ratio: 1;
    background: #34343b;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.release-card-cover img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.release-card-title {
    font-weight: 900;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.release-card-type {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.release-detail {
    display: grid;
    gap: 18px;
}

.release-back {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(228, 96, 51, 0.36);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    justify-self: start;
    min-height: 38px;
    padding: 0 14px;
}

.release-back:hover,
.release-back:focus-visible {
    border-color: var(--accent);
    outline: none;
}

.release-detail-top {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(160px, 240px) 1fr;
}

.release-detail-cover {
    align-items: center;
    aspect-ratio: 1;
    background: #34343b;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.release-detail-cover img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.release-detail-info h2 {
    color: #fff;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.05;
    margin: 0 0 16px;
}

.release-store-grid {
    margin-top: 10px;
}

.track-list {
    display: grid;
    gap: 8px;
}

.track-row {
    align-items: center;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(228, 96, 51, 0.18);
    border-radius: 8px;
    display: grid;
    gap: 7px;
    grid-template-columns: 32px 26px minmax(0, 1fr);
    padding: 12px;
}

.track-row span {
    color: var(--accent);
    font-weight: 900;
    text-align: center;
}

.track-row strong {
    color: #fff;
    overflow-wrap: anywhere;
}

.track-title-button {
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    justify-self: start;
    overflow-wrap: anywhere;
    padding: 0;
    text-align: left;
}

.track-title-button:hover,
.track-title-button:focus-visible,
.track-title-button.active {
    color: var(--accent);
    outline: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.track-title-cell {
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 0;
}

.track-player-buttons {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 6px;
}

.track-play-button {
    align-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 32px;
    font-size: 15px;
    height: 32px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 32px;
}

.track-play-button:hover,
.track-play-button:focus-visible,
.track-play-button.active {
    box-shadow: 0 0 0 3px rgba(228, 96, 51, 0.2);
    outline: none;
}

.track-play-button:disabled {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.youtube-play-button {
    background: #1db954;
    border: 2px solid var(--accent);
    text-indent: 3px;
}

.youtube-play-button:disabled {
    background: #1db954;
    border-color: var(--accent);
    opacity: 0.35;
}

.track-content-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.track-content-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(228, 96, 51, 0.36);
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    min-height: 34px;
    padding: 0 12px;
    justify-content: center;
    text-decoration: none;
}

.track-content-button:hover,
.track-content-button:focus-visible,
.track-content-button.active {
    border-color: var(--accent);
    outline: none;
}

.lyrics-label-mobile {
    display: none;
}

.track-content-panel {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(228, 96, 51, 0.24);
    border-radius: 8px;
    grid-column: 1 / -1;
    padding: 16px;
    position: relative;
}

.track-content-panel h4 {
    color: var(--accent);
    font-size: 15px;
    margin: 0 40px 8px 0;
}

.track-content-panel p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    white-space: normal;
}

.track-details-panel dl {
    display: grid;
    column-gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.track-details-panel dl div {
    align-items: baseline;
    border-bottom: 1px solid rgba(228, 96, 51, 0.18);
    display: grid;
    gap: 8px;
    grid-template-columns: 150px minmax(0, 1fr);
    padding: 5px 2px;
}

.track-details-panel dl div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.track-details-panel dt {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
}

.track-details-panel dt::after {
    content: ":";
}

.track-details-panel dd {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-details-panel {
    padding: 7px 32px 7px 7px;
}

.track-details-panel .track-content-close {
    font-size: 15px;
    height: 25px;
    width: 28px;
}

.track-details-panel dl + .track-detail-stores {
    border-top: 1px solid rgba(228, 96, 51, 0.18);
    margin-top: 7px;
    padding-top: 7px;
}

@media (max-width: 600px) {
    .track-details-panel dl {
        grid-template-columns: 1fr;
    }

    .track-details-panel dl div:nth-last-child(2) {
        border-bottom: 1px solid rgba(228, 96, 51, 0.18);
    }
}

.track-store-panel .store-link-grid {
    padding-right: 42px;
}

.track-player-panel {
    overflow: hidden;
    padding: 0;
}

.track-player-panel iframe {
    border: 0;
    border-radius: 8px;
    display: block;
    height: 270px;
    width: 100%;
}

.audiomack-player-panel iframe {
    height: 252px;
}

.spotify-player-panel iframe {
    height: 152px;
}

.track-content-close {
    align-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 1px solid var(--accent);
    border-radius: 0 7px 0 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    height: 34px;
    justify-content: center;
    position: absolute;
    right: -1px;
    top: -1px;
    width: 40px;
}

@media (min-width: 701px) {
    .track-row {
        grid-template-columns: 32px 26px minmax(0, 1fr) auto;
    }
}

@media (max-width: 700px) {
    .lyrics-label-desktop {
        display: none;
    }

    .lyrics-label-mobile {
        display: inline;
    }

    .track-song-title {
        display: block;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
    }

    .track-song-title span {
        display: inline-block;
        white-space: nowrap;
    }

    .track-song-title.is-overflowing span {
        animation: track-title-marquee 6s ease-in-out infinite alternate;
    }

    .track-content-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
        width: 100%;
    }

    .track-content-actions .track-content-button {
        flex: 1 1 0;
        padding-left: 7px;
        padding-right: 7px;
    }
}

@keyframes track-title-marquee {
    0%, 18% {
        transform: translateX(0);
    }

    82%, 100% {
        transform: translateX(calc(0px - var(--marquee-distance)));
    }
}

@media (max-width: 820px) {
    .release-detail-top {
        grid-template-columns: 1fr;
    }

    .artist-action-buttons button {
        flex: 1 1 150px;
    }
}
.release-detail .release-back {
    justify-self: end;
    margin-bottom: 2px;
}

.release-artist-name {
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.release-meta-list {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
}

.release-meta-list div {
    display: grid;
    gap: 2px;
}

.release-meta-list dt,
.release-store-block h3 {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.release-meta-list dd {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    margin: 0;
    overflow-wrap: anywhere;
}

.release-store-block {
    display: grid;
    gap: 10px;
}

.release-detail-info {
    align-self: center;
}

.release-detail-info h2 {
    margin-bottom: 22px;
    text-transform: uppercase;
}

[hidden], .release-detail[hidden], .artist-tab-panel[hidden] {
    display: none !important;
}

.artist-action-table {
    position: relative;
    z-index: 5;
}

.artist-action-table button,
.artist-action-table a {
    pointer-events: auto;
    position: relative;
    z-index: 6;
}

.artist-action-content {
    position: relative;
    z-index: 5;
}
.artist-action-button {
    align-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0;
    min-height: 44px;
    padding: 0 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.artist-action-button:hover,
.artist-action-button:focus-visible,
.artist-action-button.active {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16), 0 0 18px rgba(228, 96, 51, 0.3);
    outline: none;
    transform: translateY(-1px);
}

.release-card {
    text-decoration: none;
}

.release-back {
    align-items: center;
    display: inline-flex;
    text-decoration: none;
}
.track-list h3 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 4px;
    text-transform: uppercase;
}
.release-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.release-card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 980px) {
    .release-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .release-grid {
        grid-template-columns: 1fr;
    }
}
.release-meta-list {
    gap: 6px;
    margin: 0 0 10px;
}

.release-meta-list div {
    align-items: baseline;
    display: flex;
    gap: 8px;
}

.release-meta-list dt::after {
    content: ":";
}

.release-meta-list dd {
    color: #fff;
    font-weight: 700;
}

.release-store-block {
    gap: 8px;
    margin-top: 0;
}

.release-store-grid {
    margin-top: 0;
}
.release-artist-name {
    color: var(--accent);
}

.release-detail-info h2 {
    box-sizing: border-box;
    font-size: clamp(22px, 3vw, 34px);
    max-width: 100%;
    white-space: nowrap;
    width: 100%;
}

.release-title-block {
    min-width: 0;
    width: 100%;
}

.release-meta-list dt,
.release-meta-list dd {
    font-weight: 400;
}

.release-meta-list dt {
    color: var(--muted);
}

.release-meta-list dd {
    color: #fff;
}
.release-detail-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.release-description-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(228, 96, 51, 0.36);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    min-height: 38px;
    padding: 0 14px;
    text-decoration: none;
}

.release-description-button:hover,
.release-description-button:focus-visible,
.release-description-button.active {
    border-color: var(--accent);
    outline: none;
}

.release-detail-top {
    align-items: stretch;
}

.release-detail-info {
    align-self: stretch;
    display: grid;
    gap: 14px;
    grid-template-rows: auto 1fr auto;
    min-height: 100%;
}

.release-title-block {
    align-self: start;
}

.release-meta-list {
    align-self: center;
    margin: 0;
}

.release-store-block {
    align-self: end;
}

.release-description-panel {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(228, 96, 51, 0.24);
    border-radius: 8px;
    padding: 16px;
}

.release-description-panel h3 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.release-description-panel p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}
.release-detail-actions {
    justify-content: flex-end;
}

.release-back {
    order: 2;
}

.release-description-button {
    order: 1;
}

.release-description-panel {
    position: relative;
}

.release-description-close {
    align-items: center;
    background: linear-gradient(#e5e5e5, #bfbfbf);
    border: 1px solid #8c8c8c;
    border-radius: 3px;
    color: #333;
    display: inline-flex;
    font-size: 22px;
    font-weight: 400;
    height: 28px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 10px;
    text-decoration: none;
    top: 10px;
    width: 34px;
}

.release-description-close:hover,
.release-description-close:focus-visible {
    background: linear-gradient(#f36b5b, #c94332);
    border-color: #7d241a;
    color: #fff;
    outline: none;
}

.release-description-panel h3 {
    padding-right: 48px;
}
.release-description-close {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 1px solid rgba(228, 96, 51, 0.92);
    border-radius: 0 7px 0 7px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    height: 34px;
    line-height: 1;
    right: -1px;
    top: -1px;
    width: 42px;
}

.release-description-close:hover,
.release-description-close:focus-visible {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border-color: rgba(228, 96, 51, 1);
    color: #fff;
}
.release-description-close {
    border-radius: 0 0 0 6px;
    height: 36px;
    right: -1px;
    top: -14px;
    width: 44px;
}

.release-description-panel {
    overflow: visible;
}
/* Release description close button alignment */
.release-description-panel {
    overflow: visible;
    padding: 18px 64px 18px 16px;
    position: relative;
}

.release-description-panel h3 {
    padding-right: 0;
}

.release-description-close {
    align-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 1px solid rgba(228, 96, 51, 0.92);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 22px;
    font-weight: 800;
    height: 36px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 12px;
    text-decoration: none;
    top: 12px;
    width: 44px;
}

.release-description-close:hover,
.release-description-close:focus-visible {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border-color: rgba(228, 96, 51, 1);
    color: #fff;
    outline: none;
}

.release-description-panel .release-description-close {
    left: auto !important;
    right: -1px !important;
    top: -1px !important;
    bottom: auto !important;
    border-radius: 0 7px 0 7px !important;
    height: 34px !important;
    width: 42px !important;
    transform: none !important;
}
.release-description-panel .release-description-close {
    align-items: center !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    border: 1px solid rgba(228, 96, 51, 1) !important;
    border-radius: 0 0 0 6px !important;
    color: #fff !important;
    display: inline-flex !important;
    height: 34px !important;
    justify-content: center !important;
    left: auto !important;
    position: absolute !important;
    right: -1px !important;
    top: -8px !important;
    width: 40px !important;
    z-index: 10 !important;
}
.release-description-panel .release-description-close {
    right: 0 !important;
    top: 0 !important;
    border-radius: 0 7px 0 6px !important;
}
.release-detail-actions,
.release-back {
    display: none !important;
}

.release-title-row {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.release-title-row .release-artist-name {
    margin-bottom: 0;
}

.release-title-row .release-description-button {
    flex: 0 0 auto;
    min-height: 34px;
}

.artist-action-table .track-content-panel .track-content-close {
    left: auto;
    position: absolute;
    right: -1px;
    top: -1px;
}

/* Release details and full player */
.release-title-actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.player-preference-select {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(228, 96, 51, 0.36);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    min-height: 34px;
    overflow: hidden;
    position: relative;
}

.player-preference-select::after {
    border: solid var(--accent);
    border-width: 0 2px 2px 0;
    content: "";
    height: 7px;
    pointer-events: none;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-62%) rotate(45deg);
    width: 7px;
}

.player-preference-select > span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    padding: 0 8px 0 10px;
}

.player-preference-select select {
    appearance: none;
    align-self: stretch;
    -moz-appearance: none;
    background: #24242a;
    border: 0;
    border-left: 1px solid rgba(228, 96, 51, 0.28);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    outline: none;
    padding: 0 36px 0 8px;
    -webkit-appearance: none;
}

.player-preference-select select::-ms-expand {
    display: none;
}

.player-preference-select:focus-within {
    border-color: var(--accent);
}

.player-preference-mobile {
    display: none;
}

.release-play-button {
    align-items: center;
    align-self: center;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 39px;
    height: 86px;
    justify-content: center;
    justify-self: start;
    line-height: 1;
    position: relative;
    top: -15px;
    padding: 0;
    transition: box-shadow 160ms ease, transform 160ms ease;
    width: 86px;
}

.release-play-button::after {
    background: rgba(26, 26, 31, 0.96);
    border: 1px solid rgba(228, 96, 51, 0.38);
    border-radius: 6px;
    color: #fff;
    content: attr(data-play-label);
    font-size: 12px;
    font-weight: 800;
    left: calc(100% + 8px);
    right: auto;
    opacity: 0;
    padding: 6px 9px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(3px, -50%);
    transition: opacity 0.16s ease, transform 0.16s ease;
    white-space: nowrap;
    z-index: 20;
}

.release-play-button:not(:disabled):hover::after,
.release-play-button:not(:disabled):focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.release-detail-top {
    gap: 26px;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
}

.release-detail-cover,
.release-detail-info {
    min-width: 0;
}

.release-detail-cover {
    align-self: start;
    width: 100%;
}

.release-store-grid {
    gap: 4px;
}

.release-store-grid .store-link,
.track-detail-stores .store-link {
    border-width: 1px;
    height: 36px;
    width: 36px;
}

.release-store-grid .store-link::before,
.track-detail-stores .store-link::before {
    border-width: 1px;
}

.release-store-grid .store-link .icon-art,
.track-detail-stores .store-link .icon-art {
    inset: 1px;
}

.release-store-block {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    width: 100%;
}

.release-store-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    justify-content: flex-end;
    margin-left: auto;
}

@media (max-width: 620px) {
    .release-detail {
        gap: 12px;
    }

    .release-store-block {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .release-store-actions {
        justify-content: center;
        order: 3;
        width: 100%;
    }

    .release-title-row {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .release-title-row .release-artist-name {
        text-align: center;
        white-space: nowrap;
    }

    .release-title-actions {
        align-self: stretch;
        width: 100%;
    }

    .player-preference-select {
        width: 100%;
    }

    .player-preference-desktop {
        display: none;
    }

    .player-preference-mobile {
        display: inline-flex;
        order: 2;
    }

    .player-preference-select select {
        flex: 1 1 auto;
        min-width: 0;
    }

    .release-detail-info h2 {
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 12px;
        text-align: center;
    }

    .release-play-button {
        justify-self: center;
        margin-left: auto;
        margin-right: auto;
        top: -5px;
    }

    .release-play-button::after {
        left: calc(100% + 8px);
        top: 50%;
        transform: translate(3px, -50%);
    }

    .release-play-button:not(:disabled):hover::after,
    .release-play-button:not(:disabled):focus-visible::after {
        transform: translate(0, -50%);
    }

    .release-store-grid {
        justify-content: center;
        width: 100%;
    }

    .release-store-grid.is-crowded {
        gap: 3px;
    }

    .release-store-grid.is-crowded .store-link {
        height: 30px;
        width: 30px;
    }
}

@media (max-width: 820px) {
    .release-detail-top {
        gap: 18px;
        grid-template-columns: 1fr;
    }
}

.release-play-button:hover,
.release-play-button:focus-visible,
.release-play-button.active {
    box-shadow: 0 0 0 5px rgba(228, 96, 51, 0.22);
    outline: none;
    transform: scale(1.04);
}

.release-play-button:disabled {
    cursor: not-allowed;
    transform: none;
}

.release-player-panel {
    margin-top: 0;
    position: relative;
}

.release-information-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.release-information-list > div {
    align-items: baseline;
    border-bottom: 1px solid rgba(228, 96, 51, 0.18);
    display: grid;
    gap: 12px;
    grid-template-columns: 150px minmax(0, 1fr);
    padding: 0 0 9px;
}

.release-information-list > div:nth-last-child(-n + 2) {
    border-bottom: 0;
    padding-bottom: 0;
}

.release-information-list dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.release-information-list dd {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 620px) {
    .release-title-row {
        align-items: stretch;
    }

    .release-title-row .release-artist-name {
        align-self: stretch;
        text-align: center;
        width: 100%;
    }

    .release-title-actions {
        justify-content: flex-start;
    }

    .release-information-list > div {
        gap: 8px;
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .release-information-list {
        grid-template-columns: 1fr;
    }

    .release-information-list > div:nth-last-child(2) {
        border-bottom: 1px solid rgba(228, 96, 51, 0.18);
        padding-bottom: 9px;
    }
}

.artist-comments-section {
    border: 1px solid rgba(228, 96, 51, 0.45);
    border-radius: 8px;
    box-sizing: border-box;
    margin-top: 0;
    padding: 16px;
    width: 100%;
}

.artist-comments-section h2 {
    color: var(--orange);
    font-size: 20px;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.artist-comment-message {
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
    padding: 10px 12px;
}

.artist-comment-message.success {
    background: rgba(32, 190, 110, 0.14);
    border: 1px solid rgba(32, 190, 110, 0.45);
    color: #8ff0bc;
}

.artist-comment-message.error {
    background: rgba(228, 96, 51, 0.14);
    border: 1px solid rgba(228, 96, 51, 0.5);
    color: #ffb299;
}

.artist-comment-message[hidden] {
    display: none;
}

.artist-comment-form {
    display: grid;
    gap: 11px;
    margin-bottom: 18px;
}

.artist-comment-fields {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artist-comment-form label {
    display: grid;
    gap: 6px;
}

.artist-comment-form label span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.artist-comment-form input,
.artist-comment-form textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(228, 96, 51, 0.42);
    border-radius: 7px;
    box-sizing: border-box;
    color: #fff;
    font: inherit;
    padding: 10px 11px;
    width: 100%;
}

.artist-comment-form textarea {
    min-height: 112px;
    resize: vertical;
}

.artist-comment-form input:focus,
.artist-comment-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(228, 96, 51, 0.16);
    outline: none;
}

.artist-comment-emoji {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.artist-comment-emoji button {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(228, 96, 51, 0.42);
    border-radius: 7px;
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    height: 34px;
    justify-content: center;
    padding: 0;
    width: 34px;
}

.artist-comment-submit {
    display: flex;
    justify-content: flex-end;
}

.artist-comment-list {
    display: grid;
    gap: 10px;
}

.artist-comment-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(228, 96, 51, 0.24);
    border-radius: 8px;
    padding: 12px;
}

.artist-comment-meta {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 8px;
}

.artist-comment-meta strong {
    color: var(--muted);
    font-size: 12px;
}

.artist-comment-meta span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.artist-comment-card p {
    color: #f5f5f5;
    line-height: 1.55;
    margin: 0;
    overflow-wrap: anywhere;
    white-space: normal;
}

.artist-comment-pagination {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}

.artist-comment-pagination span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.artist-comment-pagination .artist-action-button {
    min-height: 34px;
    padding: 8px 13px;
}

@media (max-width: 620px) {
    .artist-comments-section {
        padding: 13px;
    }

    .artist-comment-fields {
        grid-template-columns: 1fr;
    }

    .artist-comment-submit {
        justify-content: center;
    }
}
