:root {
    --bg: #0a0b0e;
    --bg-soft: #11141a;
    --panel: rgba(255,255,255,0.04);
    --panel-border: rgba(255,255,255,0.08);
    --text: #f2f2f0;
    --muted: #b7bcc7;
    --accent: #d1b07a;
    --accent-soft: rgba(209, 176, 122, 0.16);
    --line: rgba(255,255,255,0.08);
    --shadow: 0 20px 60px rgba(0,0,0,0.45);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(61, 83, 124, 0.16), transparent 35%),
        radial-gradient(circle at left center, rgba(209, 176, 122, 0.08), transparent 30%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(10, 11, 14, 0.72);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.logo span {
    color: var(--muted);
    font-weight: 400;
}

.site-nav {
    display: flex;
    gap: 24px;
}

.site-nav a {
    color: var(--muted);
    transition: color 0.25s ease;
}

.site-nav a:hover {
    color: var(--text);
}

.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15)),
        radial-gradient(circle at 80% 20%, rgba(209,176,122,0.10), transparent 25%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 36px;
    align-items: center;
    padding: 90px 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
}

h1, h2, h3 {
    line-height: 1.1;
    margin-top: 0;
}

h1 {
    font-size: clamp(1.55rem, 2.5vw, 2.7rem);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.08;
    max-width: 680px;
    font-weight: 600;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.lead {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: #141414;
}

.btn-secondary {
    background: transparent;
    border-color: var(--panel-border);
    color: var(--text);
}

.hero-card,
.info-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 28px;
}

.card-label,
.meta,
.small-note,
.section-heading p,
.info-card p,
.feature-list li,
.footer-text,
.time {
    color: var(--muted);
}

.now-playing h2 {
    margin-bottom: 6px;
}

.meta {
    margin: 0 0 22px;
}

.waveform {
    height: 90px;
    display: flex;
    align-items: end;
    gap: 6px;
    margin-bottom: 18px;
    padding: 14px 0;
}

.waveform span {
    display: block;
    width: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), rgba(255,255,255,0.35));
    animation: pulse 1.6s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 24px; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 48px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 62px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 34px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 70px; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 40px; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 64px; animation-delay: 0.6s; }
.waveform span:nth-child(8) { height: 24px; animation-delay: 0.7s; }
.waveform span:nth-child(9) { height: 56px; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 78px; animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 28px; animation-delay: 1s; }
.waveform span:nth-child(12) { height: 60px; animation-delay: 1.1s; }
.waveform span:nth-child(13) { height: 36px; animation-delay: 1.2s; }
.waveform span:nth-child(14) { height: 72px; animation-delay: 1.3s; }
.waveform span:nth-child(15) { height: 22px; animation-delay: 1.4s; }
.waveform span:nth-child(16) { height: 52px; animation-delay: 1.5s; }
.waveform span:nth-child(17) { height: 32px; animation-delay: 1.6s; }
.waveform span:nth-child(18) { height: 66px; animation-delay: 1.7s; }

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.play-btn {
    background: var(--text);
    color: #111;
    border: 0;
    border-radius: 999px;
    min-height: 42px;
    padding: 0 18px;
    font-weight: 700;
    cursor: pointer;
    min-width: 148px;
}

.section {
    padding: 88px 0;
}

.section-dark {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 32px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-card {
    padding: 24px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.feature-list li {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,0.02);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.footer-brand {
    margin: 0 0 6px;
    font-weight: 700;
}

.footer-text {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

@keyframes pulse {
    0%, 100% { opacity: 0.65; transform: scaleY(0.94); }
    50% { opacity: 1; transform: scaleY(1.05); }
}

.release-layout {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 36px;
    align-items: start;
}

.release-cover-wrap {
    position: sticky;
    top: 110px;
}

.release-cover {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--panel-border);
    box-shadow: var(--shadow);
    background: #0f1116;
}

.release-details {
    min-width: 0;
}

.release-meta-large {
    margin: -6px 0 18px;
    color: var(--muted);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

.release-panel {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    margin: 24px 0;
}

.release-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.waveform-static {
    margin-top: 10px;
}

.archive-cover-frame {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #0f1116;
}

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

.release-card {
    display: flex;
    flex-direction: column;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 24px;
}

.release-tile {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.release-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.release-tile-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.release-tile-cover {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background: #0f1116;
    border-bottom: 1px solid var(--line);
    display: grid;
    place-items: center;
}

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

.release-tile-body {
    padding: 22px;
}

.release-tile-body h3 {
    margin-bottom: 8px;
}

.release-tile-placeholder {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background:
        radial-gradient(circle at top right, rgba(209,176,122,0.18), transparent 28%),
        linear-gradient(135deg, #1a1d24 0%, #101216 60%, #0c0d10 100%);
}

.artist-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 58px;
    background:
        radial-gradient(circle at top right, rgba(209,176,122,0.12), transparent 26%),
        radial-gradient(circle at left center, rgba(72,95,148,0.16), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    border-bottom: 1px solid var(--line);
}

.artist-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0,0,0,0.32), rgba(0,0,0,0.08));
}

.artist-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.artist-hero-image-wrap {
    max-width: 520px;
    margin-left: auto;
}

.artist-hero-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 24px;
}

.artist-tile {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.artist-tile-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.artist-tile-image-wrap {
    aspect-ratio: 16 / 10;
    width: 100%;
    overflow: hidden;
    background: #0f1116;
    border-bottom: 1px solid var(--line);
    display: grid;
    place-items: center;
}

.artist-tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-tile-body {
    padding: 22px;
}

.artist-tile-placeholder {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background:
        radial-gradient(circle at top right, rgba(209,176,122,0.18), transparent 28%),
        linear-gradient(135deg, #1a1d24 0%, #101216 60%, #0c0d10 100%);
}

.premium-player {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.premium-player.release-panel {
    padding: 22px;
    margin: 24px 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025)),
        rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.premium-player .card-kicker {
    margin: 0;
}

.premium-player .small-note {
    margin: 8px 0 0;
}

.player-shell {
    position: relative;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at top right, rgba(209,176,122,0.10), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.player-shell::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.player-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.player-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
}

.player-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(209, 176, 122, 0.55);
}

.player-title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.player-subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.audio-native {
    width: 100%;
    display: block;
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    accent-color: var(--accent);
    filter: saturate(1.02) brightness(0.97);
}

.audio-native::-webkit-media-controls-panel {
    background: linear-gradient(180deg, rgba(25,27,33,0.98), rgba(16,18,23,0.98));
}

.audio-native::-webkit-media-controls-enclosure {
    border-radius: 12px;
}

.progress-wrap {
    cursor: pointer;
    outline: none;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.progress-fill {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.85));
    transition: width 0.08s linear;
}

.progress-wrap:focus .progress-bar,
.progress-wrap:hover .progress-bar {
    box-shadow: 0 0 0 4px rgba(209,176,122,0.08);
}

.product-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.paypal-box {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    margin: 16px 0 20px;
}

.paypal-box p {
    margin: 0 0 8px;
}

.paypal-box p:last-child {
    margin-bottom: 0;
}

.shop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tracklist {
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 10px;
    color: var(--text);
}

.tracklist li {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.tracklist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.compact-tracklist {
    gap: 8px;
}

.compact-tracklist li {
    color: var(--muted);
}

@media (max-width: 980px) {
    .release-layout,
    .artist-hero-grid {
        grid-template-columns: 1fr;
    }

    .release-cover-wrap {
        position: static;
        max-width: 560px;
    }

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

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

@media (max-width: 920px) {
    .hero-grid,
    .info-grid,
    .split-section,
    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .site-nav {
        gap: 14px;
        font-size: 0.95rem;
    }

    .nav-wrap {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 14px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 54px 0;
    }
}

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

@media (max-width: 560px) {
    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-actions,
    .shop-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .player-controls,
    .player-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .player-shell {
        padding: 14px;
    }

    .audio-native {
        margin-top: 12px;
    }
}

.tracklist {
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.tracklist-title {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}

.tracklist-list {
    margin: 0;
    padding-left: 20px;
    line-height: 2;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
}

.tracklist-list li {
    margin-bottom: 4px;
}

.legal-page {
    min-height: 100vh;
    background: #000;
    color: rgba(255,255,255,0.85);
    padding: 80px 20px;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
}

.legal-kicker {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 18px;
    color: #fff;
}

.legal-divider {
    width: 64px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 42px;
}

.legal-page section {
    margin-bottom: 34px;
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 14px;
}

.legal-page p,
.legal-page li,
.legal-page label,
.legal-page input,
.legal-page textarea {
    font-size: 16px;
    line-height: 1.9;
}

.legal-page a {
    color: rgba(255,255,255,0.88);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page ul {
    margin: 12px 0 0 20px;
}

.legal-stand {
    margin-top: 48px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.contact-form {
    margin-top: 30px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
}

.contact-form label {
    display: block;
    margin: 14px 0 8px;
    color: rgba(255,255,255,0.82);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.45);
    color: #fff;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 22px;
}

.checkbox-line input[type="checkbox"] {
    width: auto;
    margin-top: 7px;
}

.contact-form button {
    margin-top: 22px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
}

.contact-form button:hover {
    background: rgba(255,255,255,0.05);
}

.contact-note {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #050505;
    padding: 18px 24px;
}

.footer-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.footer-right {
    display: flex;
    gap: 32px;
}

.footer-right a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.footer-right a:hover {
    opacity: 0.6;
}

.release-page {
    min-height: 100vh;
    background: #050505;
    color: rgba(255,255,255,0.85);
    padding: 80px 20px;
}

.release-hero,
.release-preview,
.release-tracklist,
.release-credits,
.release-download,
.artist-links {
    max-width: 1180px;
    margin: 0 auto 70px;
}

.release-hero {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 56px;
    align-items: start;
}

.release-cover img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.release-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}

.release-meta h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #fff;
}

.release-artist {
    font-size: 22px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 24px;
}

.release-description {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.68);
    margin-bottom: 30px;
}

.release-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.release-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.release-btn:hover {
    background: rgba(255,255,255,0.05);
}

.release-btn-primary {
    background: #fff;
    color: #000;
}

.release-btn-primary:hover {
    background: rgba(255,255,255,0.9);
}

.release-info-grid,
.credits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 20px 28px;
}

.release-info-grid span,
.credits-grid span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.42);
    margin-bottom: 8px;
}

.release-info-grid strong,
.credits-grid strong {
    color: #fff;
    font-weight: 500;
}

.release-preview h2,
.release-tracklist h2,
.release-credits h2,
.release-download h2,
.artist-links h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #fff;
}

.release-preview audio {
    width: 100%;
    max-width: 680px;
}

.release-tracklist ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.release-tracklist li {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 17px;
}

.artist-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.artist-link-row a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 10px 18px;
    transition: all 0.2s ease;
}

.artist-link-row a:hover {
    border-color: rgba(255,255,255,0.28);
    color: #fff;
}

@media (max-width: 900px) {
    .release-hero {
        grid-template-columns: 1fr;
    }

    .release-meta h1 {
        font-size: 42px;
    }

    .release-info-grid,
    .credits-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO FADE-IN ANIMATION */
.hero-panel {
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeIn 1.2s ease forwards;
    animation-delay: 0.25s;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    opacity: 0;
    transform: translateY(8px);
    animation: heroFadeIn 1s ease forwards;
    animation-delay: 0.6s;
}

/* PLAYER WRAP FIX */
.player-wrap {
    margin-top: 34px;
    margin-bottom: 40px;
    max-width: 690px;
}