@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@500;700;800&display=swap');

:root {
    --bg-color: #070707;
    --panel-color: #111111;
    --primary-color: #d4af37;
    --accent-color: #9fd3c7;
    --text-color: #ffffff;
    --text-muted: #b7b7b7;
    --line-color: rgba(255, 255, 255, 0.12);
    --card-bg: rgba(255, 255, 255, 0.055);
    --glass-border: rgba(255, 255, 255, 0.13);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
.font-heading {
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0;
    line-height: 1.05;
    text-transform: uppercase;
}

h1 span,
h2 span {
    color: var(--primary-color);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 86px 0;
}

.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 16px 0;
    background: rgba(7, 7, 7, 0.78);
    border-bottom: 1px solid var(--line-color);
    backdrop-filter: blur(14px);
    transition: var(--transition);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo img {
    width: auto;
    height: 58px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
}

nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-color);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(212, 175, 55, 0.72);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.eyebrow {
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.muted {
    color: var(--text-muted);
}

.glass {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hero-slider {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    overflow: hidden;
    background: #050505;
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.025);
    transition: opacity 700ms ease, transform 1400ms ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    content: "";
    background: linear-gradient(0deg, var(--bg-color), rgba(7, 7, 7, 0));
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) 390px;
    gap: clamp(28px, 5vw, 72px);
    align-items: end;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 82px;
}

.hero-copy {
    max-width: 700px;
}

.hero-copy h1 {
    margin: 14px 0 18px;
    font-size: clamp(2.35rem, 5.8vw, 5.45rem);
    line-height: 0.93;
}

.hero-copy p:not(.eyebrow) {
    max-width: 560px;
    color: var(--text-muted);
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-panel {
    display: grid;
    gap: 20px;
}

.hero-editorial-note {
    position: relative;
    padding: 26px 0 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-editorial-note::before {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 13px;
    height: 13px;
    content: "";
    background: var(--primary-color);
}

.hero-editorial-note > span {
    display: block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-editorial-note strong {
    display: block;
    max-width: 360px;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 2.05rem);
    line-height: 1.04;
}

.hero-editorial-note p {
    max-width: 330px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
}

.hero-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hero-controls button,
.hero-dots button {
    cursor: pointer;
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-color);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.7rem;
    transition: var(--transition);
}

.hero-controls > button:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.16);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.hero-dots button {
    width: 28px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.hero-dots button.active {
    background: var(--primary-color);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-heading h2,
.about-copy h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.video-section {
    background: #080808;
}

.video-player-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 22px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        rgba(10, 10, 10, 0.62);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.video-main-column {
    display: grid;
    gap: 12px;
}

.main-display {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.main-display::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.player-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 7px 10px;
    background: rgba(0, 0, 0, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

.main-display iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
}

.player-fallback {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: none;
    align-items: center;
    gap: 12px;
    max-width: calc(100% - 36px);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
}

.player-fallback.show {
    display: flex;
}

.player-fallback p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.player-fallback .btn {
    min-height: 38px;
    padding: 0 14px;
    white-space: nowrap;
}

.playlist-share-row {
    display: flex;
    justify-content: flex-end;
}

.playlist-share-row .btn {
    min-height: 36px;
    padding: 0 16px;
    font-size: 0.78rem;
}

.playlist-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 492px;
    overflow-y: auto;
    padding: 2px 6px 2px 0;
}

.playlist-sidebar::-webkit-scrollbar {
    width: 5px;
}

.playlist-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 999px;
}

.playlist-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    padding: 9px;
    text-align: left;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.playlist-item:hover,
.playlist-item.active {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.12);
}

.thumb-small {
    min-height: 66px;
    border-radius: 6px;
    background-position: center;
    background-size: cover;
}

.video-info {
    display: grid;
    align-content: center;
    min-width: 0;
}

.video-info strong,
.video-info small {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.video-info strong {
    -webkit-line-clamp: 2;
    font-size: 0.86rem;
    line-height: 1.25;
}

.video-info small {
    -webkit-line-clamp: 2;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

.about-section {
    background: linear-gradient(180deg, #080808 0%, #111 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: center;
}

.about-copy p:not(.eyebrow) {
    margin: 20px 0 28px;
    color: var(--text-muted);
    font-size: 1.03rem;
}

.about-media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;
    background: #050505;
    box-shadow: var(--shadow);
}

.about-media::before {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    content: "";
    pointer-events: none;
    z-index: 1;
}

.about-media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

footer {
    border-top: 1px solid var(--line-color);
    background: #070707;
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.footer-inner a {
    color: var(--primary-color);
}

.music-player {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.play-btn {
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.progress-container {
    position: relative;
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
}

.time-info {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.discography-page {
    padding-top: 88px;
    padding-bottom: 112px;
}

.discography-banner {
    padding: 34px 0 12px;
    background:
        linear-gradient(180deg, #070707 0%, rgba(7, 7, 7, 0.84) 100%),
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 42%);
}

.discography-banner img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.discography-hero {
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.35), #080808 92%),
        radial-gradient(circle at 78% 12%, rgba(159, 211, 199, 0.13), transparent 32%);
}

.discography-hero h1 {
    margin-top: 10px;
    max-width: 760px;
    font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.discography-intro {
    max-width: 430px;
    color: var(--text-muted);
}

.featured-release {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow);
}

.featured-cover {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;
    background: #050505;
}

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

.featured-copy h2 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 5vw, 4.4rem);
}

.featured-copy > p:not(.eyebrow) {
    max-width: 660px;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.release-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0;
}

.release-meta div {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.release-meta dt {
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.release-meta dd {
    margin-top: 5px;
    color: #fff;
}

.release-actions,
.track-actions,
.catalog-tools,
.stream-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.stream-links {
    margin-top: 16px;
}

.stream-links a,
.stream-links span,
.track-actions button,
.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.filter-chip {
    cursor: pointer;
}

.catalog-search {
    margin: 0;
}

.catalog-search input {
    width: min(280px, 70vw);
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    font: inherit;
    font-size: 0.86rem;
    outline: none;
}

.catalog-search input:focus {
    border-color: var(--primary-color);
}

.catalog-count {
    min-height: 20px;
    margin: -12px 0 18px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.filter-chip.active,
.track-actions button:hover,
.stream-links a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.catalog-section {
    background: #080808;
}

.compact-heading {
    margin-bottom: 24px;
}

.track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
    justify-content: start;
    gap: 18px;
}

.track-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    min-width: 0;
}

.track-card:hover,
.track-card.active {
    border-color: rgba(212, 175, 55, 0.72);
    background: rgba(212, 175, 55, 0.08);
}

.track-cover {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 8px;
    background: #111;
    cursor: pointer;
}

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

.track-cover span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #050505;
}

.card-play-icon::before,
.track-play-button::before,
.play-toggle::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid currentColor;
}

.track-card.is-playing .card-play-icon::before,
.track-play-button.is-playing::before,
.play-toggle.is-playing::before {
    width: 12px;
    height: 16px;
    margin-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-right: 4px solid currentColor;
    border-left: 4px solid currentColor;
}

.track-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    min-width: 0;
}

.track-title-row h3 {
    overflow-wrap: anywhere;
    font-size: 1.18rem;
    line-height: 1.08;
    min-width: 0;
}

.track-title-row span {
    flex: 0 0 auto;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(159, 211, 199, 0.16);
    color: var(--accent-color);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.track-content {
    min-width: 0;
    overflow: hidden;
}

.track-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.track-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
}

.track-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.track-actions button {
    cursor: pointer;
}

.track-actions button:not(.track-play-button) {
    flex: 1 1 150px;
    min-width: 0;
    max-width: 100%;
    min-height: 36px;
    padding: 8px 10px;
    line-height: 1.15;
    text-align: center;
    overflow-wrap: anywhere;
    white-space: normal;
}

.track-play-button {
    flex: 0 0 36px;
    width: 36px;
    min-height: 34px;
    place-items: center;
    padding: 0;
    color: var(--primary-color);
}

.stream-links.small {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.stream-links.small a,
.stream-links.small span {
    flex: 1 1 120px;
    max-width: 100%;
    min-height: 32px;
    padding: 8px 10px;
    line-height: 1.15;
    overflow-wrap: anywhere;
    white-space: normal;
}

.lyrics {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.lyrics summary {
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 800;
}

.media-page {
    padding-top: 88px;
}

.media-banner {
    padding: 34px 0 12px;
    background:
        linear-gradient(180deg, #070707 0%, rgba(7, 7, 7, 0.84) 100%),
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 42%);
}

.media-banner img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.media-hero {
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.2), #080808 92%),
        radial-gradient(circle at 12% 20%, rgba(212, 175, 55, 0.13), transparent 34%);
}

.media-hero h1 {
    margin-top: 10px;
    font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.media-section {
    background: #080808;
}

.media-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.media-topic-card {
    min-height: 170px;
    padding: 18px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.media-topic-card:hover,
.media-topic-card.active {
    border-color: rgba(212, 175, 55, 0.72);
    background: rgba(212, 175, 55, 0.09);
    transform: translateY(-2px);
}

.media-topic-card span,
.media-category {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-topic-card strong {
    display: block;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.media-topic-card small {
    display: block;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.media-editorial-list {
    display: grid;
    gap: 34px;
}

.media-editorial {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.media-editorial-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.media-editorial-head h3 {
    font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.media-editorial-head p {
    max-width: 720px;
    margin-top: 8px;
    color: var(--text-muted);
}

.media-editorial-head a {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.media-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.media-featured-video {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 18px;
    align-items: center;
    margin: 18px 0;
    padding: 14px;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.07);
}

.media-featured-copy h3 {
    margin: 8px 0;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.media-featured-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 14px;
    color: var(--text-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.media-video-card {
    overflow: hidden;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.media-video-card > div:last-child {
    padding: 18px;
}

.media-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background-color: #000;
    background-position: center;
    background-size: cover;
}

.media-thumb::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}

.media-thumb span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #050505;
}

.media-thumb span::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid currentColor;
}

.media-video-card h3 {
    font-size: 1.2rem;
}

.media-video-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.92rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.media-embed {
    aspect-ratio: 16 / 9;
    background: #000;
}

.media-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.media-photo-grid {
    position: relative;
}

.media-photo-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    padding: 4px 0 14px;
}

.media-photo-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #111;
}

.media-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.media-photo-card:hover img {
    transform: scale(1.04);
}

.media-photo-nav {
    display: none;
}

.media-photo-nav.prev {
    left: 0;
}

.media-photo-nav.next {
    right: 0;
}

.modal-open {
    overflow: hidden;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: block;
    padding: 0;
}

.video-modal[hidden] {
    display: none;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.video-modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: min(1120px, 92vw);
    aspect-ratio: 16 / 9;
    max-height: 82vh;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
    transform: translate(-50%, -50%);
}

.video-modal-dialog iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.video-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: #080808;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.about-profile-page {
    padding-top: 88px;
}

.about-profile-hero {
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.12), #080808 96%),
        radial-gradient(circle at 78% 18%, rgba(212, 175, 55, 0.15), transparent 34%);
}

.about-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    gap: 44px;
    align-items: center;
}

.about-profile-grid h1 {
    margin: 12px 0 18px;
    font-size: clamp(2.6rem, 7vw, 6.2rem);
}

.about-profile-grid p:not(.eyebrow) {
    max-width: 700px;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.about-profile-media {
    display: grid;
    gap: 18px;
}

.about-profile-image {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-profile-image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
}

.about-profile-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.about-profile-actions a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-profile-actions a:first-child {
    border-color: rgba(212, 175, 55, 0.58);
    color: var(--primary-color);
}

.about-profile-actions a:hover {
    border-color: #fff;
    color: #fff;
}

.about-profile-summary {
    background: #080808;
}

.about-profile-summary > .container > p {
    max-width: 920px;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.22;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.pillar-card,
.timeline-item,
.editorial-grid article {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.pillar-card {
    padding: 20px;
}

.pillar-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pillar-card p,
.timeline-item p,
.editorial-grid article p,
.cta-inner p {
    margin-top: 10px;
    color: var(--text-muted);
}

.timeline-section {
    background: #0b0b0b;
}

.timeline-list {
    display: grid;
    gap: 12px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
}

.timeline-item > span {
    color: var(--accent-color);
    font-weight: 900;
    text-transform: uppercase;
}

.timeline-item h3 {
    font-size: 1.2rem;
}

.editorial-section {
    background: #080808;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.editorial-grid article {
    padding: 26px;
}

.editorial-grid article h2 {
    margin-top: 10px;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-band {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), rgba(159, 211, 199, 0.08));
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-inner h2 {
    margin-top: 8px;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.sticky-player {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1100;
    display: grid;
    grid-template-columns: 44px minmax(120px, 1fr) 34px 38px 34px minmax(140px, 280px) 74px;
    gap: 10px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(8, 8, 8, 0.88);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
}

.sticky-cover {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #111 center / cover no-repeat;
}

.sticky-info {
    display: grid;
    min-width: 0;
}

.sticky-info strong,
.sticky-info span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticky-info span {
    color: var(--text-muted);
    font-size: 0.74rem;
}

.sticky-info strong {
    font-size: 0.88rem;
}

.round-btn {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: #050505;
    cursor: pointer;
}

.round-btn.secondary {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
}

.sticky-progress {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    cursor: pointer;
}

.sticky-progress div {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: var(--primary-color);
}

.sticky-time {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.simple-page {
    padding-top: 78px;
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(159, 211, 199, 0.04)),
        #090909;
    border-bottom: 1px solid var(--line-color);
}

.compact-page-hero {
    padding-bottom: 54px;
}

.page-hero h1 {
    max-width: 760px;
    font-size: clamp(2.3rem, 6vw, 5.2rem);
}

.agenda-section,
.news-section {
    padding-top: 54px;
}

.agenda-list {
    display: grid;
    gap: 16px;
}

.agenda-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow);
}

.agenda-date {
    display: grid;
    min-height: 92px;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.08);
    text-align: center;
}

.agenda-date strong {
    color: var(--primary-color);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 2.35rem;
    line-height: 1;
}

.agenda-date span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.agenda-info h2 {
    margin-bottom: 5px;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.agenda-info p {
    color: var(--text-muted);
}

.empty-state {
    padding: 24px;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.news-card {
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    transition: var(--transition);
}

.news-card:hover {
    border-color: rgba(212, 175, 55, 0.72);
    transform: translateY(-4px);
}

.news-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    background-position: center;
    background-size: cover;
}

.news-content {
    padding: 22px;
}

.news-content span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-content h2 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.news-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.contact-hero {
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 500px);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}

.contact-grid h1 {
    margin: 14px 0 18px;
}

.contact-grid > div > p {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 1.03rem;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.contact-list article {
    padding: 18px 0;
    border-top: 1px solid var(--line-color);
}

.contact-list span,
.contact-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-list a,
.contact-list p {
    color: #fff;
    overflow-wrap: anywhere;
}

.contact-form {
    padding: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 15px;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
}

.auth-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px;
    background:
        radial-gradient(circle at 20% 10%, rgba(212, 175, 55, 0.14), transparent 34%),
        #070707;
}

.auth-card {
    width: min(100%, 460px);
    padding: 28px;
}

.auth-card h1 {
    margin: 10px 0 22px;
    font-size: clamp(2rem, 8vw, 3.2rem);
}

.auth-form {
    display: grid;
    gap: 12px;
}

.auth-form label,
.dashboard-card label {
    color: var(--accent-color);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-form input,
.dashboard-card input,
.dashboard-card textarea,
.dashboard-card select {
    width: 100%;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font: inherit;
    font-size: 0.9rem;
}

.notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.notice.success {
    border: 1px solid rgba(159, 211, 199, 0.35);
    background: rgba(159, 211, 199, 0.12);
}

.notice.error {
    border: 1px solid rgba(210, 76, 76, 0.38);
    background: rgba(210, 76, 76, 0.12);
}

.dashboard-page {
    padding: 12px 0 44px;
}

.dashboard-header,
.dashboard-actions,
.post-admin-list article,
.post-admin-list article > div:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-header {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    width: auto;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    padding: 0 0 10px;
    background: transparent;
    border-bottom: 1px solid var(--line-color);
    backdrop-filter: none;
}

.dashboard-header h1 {
    margin-top: 4px;
    font-size: clamp(1.35rem, 2.6vw, 2.05rem);
    line-height: 1;
}

.dashboard-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 4px;
}

.dashboard-actions .btn {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.64rem;
    letter-spacing: 0.03em;
}

.dashboard-grid-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 16px;
    align-items: start;
    margin-top: 4px;
}

.dashboard-card {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.dashboard-card h2 {
    font-size: 1rem;
}

.blog-dashboard {
    max-width: 1320px;
}

.blog-dashboard .dashboard-grid-panel {
    grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
    gap: 18px;
}

.blog-dashboard .dashboard-actions .btn {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.68rem;
}

.blog-editor-card {
    gap: 6px;
    padding: 18px;
}

.blog-editor-card label {
    margin-top: 2px;
    margin-bottom: 4px;
    font-size: 0.68rem;
}

.blog-editor-card input,
.blog-editor-card textarea,
.blog-editor-card select {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.075);
}

.blog-editor-card textarea {
    min-height: 98px;
}

.blog-editor-card #content {
    min-height: 220px;
}

.editor-slug {
    margin-top: -4px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.editor-slug span {
    color: var(--accent-color);
    font-weight: 800;
}

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.editor-toolbar button {
    min-width: 28px;
    min-height: 28px;
    padding: 0 7px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.blog-live-preview {
    display: grid;
    gap: 6px;
    margin-top: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.blog-live-preview > span {
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-live-preview #blogPreview {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
}

.cover-preview {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.editor-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-top: 6px;
}

.editor-actions .btn,
.dashboard-card > .btn {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
}

.post-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 8px;
    margin-bottom: 12px;
}

.post-tools input,
.post-tools select {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.9rem;
}

.post-admin-list {
    display: grid;
    gap: 10px;
}

.post-admin-list article {
    justify-content: space-between;
    padding: 12px;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.post-admin-list strong {
    font-size: 0.92rem;
}

.post-admin-list span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.post-admin-list a,
.post-admin-list button,
.news-content a {
    color: var(--primary-color);
    font: inherit;
    font-weight: 800;
}

.post-admin-list button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.blog-article h1 {
    max-width: 920px;
    margin: 10px 0 22px;
    font-size: clamp(2.2rem, 7vw, 5rem);
}

.blog-cover {
    width: 100%;
    margin: 0 0 26px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
}

.blog-content {
    max-width: 820px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.04rem;
    line-height: 1.8;
}

.blog-content p,
.blog-content h2,
.blog-content h3 {
    margin-bottom: 18px;
}

.blog-content h2,
.blog-content h3 {
    color: #fff;
}

.blog-content a,
.blog-live-preview a {
    color: var(--primary-color);
    font-weight: 800;
}

@media (max-width: 1040px) {
    nav ul {
        gap: 14px;
    }

    nav a {
        font-size: 0.72rem;
    }

    .hero-overlay,
    .video-player-container,
    .media-featured-video,
    .about-grid,
    .featured-release,
    .about-profile-grid,
    .editorial-grid,
    .contact-grid,
    .post-tools,
    .dashboard-grid-panel {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 620px;
    }

    .hero-editorial-note {
        max-width: 520px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    header {
        padding: 10px 0;
    }

    .logo img {
        height: 48px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        display: none;
        width: 100%;
        background: rgba(7, 7, 7, 0.97);
        border-bottom: 1px solid var(--line-color);
    }

    nav.open {
        display: block;
    }

    nav ul {
        display: grid;
        gap: 0;
        padding: 12px 20px 18px;
    }

    nav a {
        display: block;
        padding: 10px 0;
    }

    .hero-overlay {
        align-items: center;
        min-height: 100vh;
        padding-top: 110px;
        padding-bottom: 38px;
    }

    .hero-copy p:not(.eyebrow) {
        font-size: 0.98rem;
    }

    .hero-editorial-note {
        padding: 18px 0 0 18px;
    }

    .hero-editorial-note strong {
        font-size: 1.18rem;
    }

    .hero-editorial-note p {
        font-size: 0.84rem;
    }

    .section {
        padding: 64px 0;
    }

    .simple-page {
        padding-top: 68px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 12vw, 3.4rem);
    }

    .section-heading {
        display: block;
    }

    .agenda-card {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
        padding: 16px;
    }

    .agenda-card .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .agenda-date {
        min-height: 76px;
    }

    .agenda-date strong {
        font-size: 1.8rem;
    }

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

    .contact-form {
        padding: 18px;
    }

    .playlist-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .thumb-small {
        min-height: 56px;
    }

    .about-media img {
        min-height: 360px;
    }

    .footer-inner {
        display: grid;
    }

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

    .sticky-player {
        right: 10px;
        bottom: 10px;
        left: 10px;
        grid-template-columns: 40px minmax(0, 1fr) 32px 36px 32px;
        gap: 8px;
        padding: 8px;
    }

    .sticky-cover {
        width: 40px;
        height: 40px;
    }

    .sticky-progress {
        grid-column: 1 / 5;
    }

    .sticky-time {
        grid-column: 5;
        max-width: none;
        font-size: 0.66rem;
    }

    .timeline-item,
    .cta-inner {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-profile-image img {
        min-height: 380px;
    }
}

/* Discography card layout override: wide cover above title/content. */
.catalog-section .track-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
    justify-content: start;
}

.catalog-section .track-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 14px;
}

.catalog-section .track-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.catalog-section .track-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.catalog-section .track-content {
    min-width: 0;
    overflow: hidden;
}

.catalog-section .track-actions button:not(.track-play-button),
.catalog-section .stream-links.small a,
.catalog-section .stream-links.small span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}

.catalog-section .track-card {
    position: relative;
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.catalog-section .track-card:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    transform: translateY(-2px);
}

.catalog-section .track-card.is-playing,
.catalog-section .track-card.active.is-playing {
    border-color: rgba(255, 255, 255, 0.92);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(8, 8, 8, 0.92);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.52),
        0 0 22px rgba(255, 255, 255, 0.34),
        0 18px 46px rgba(0, 0, 0, 0.38);
}

.catalog-section .track-card.active:not(.is-playing) {
    border-color: rgba(212, 175, 55, 0.48);
    background: rgba(212, 175, 55, 0.055);
}

.catalog-section .track-cover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.catalog-section .track-cover .card-play-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.35);
}

.catalog-section .track-actions {
    gap: 6px;
    margin-bottom: 6px;
}

.catalog-section .track-actions button,
.catalog-section .stream-links.small a,
.catalog-section .stream-links.small span {
    min-height: 28px;
    padding: 6px 9px;
    border-color: rgba(255, 255, 255, 0.16);
    font-size: 0.64rem;
    letter-spacing: 0.025em;
}

.catalog-section .track-actions button:not(.track-play-button) {
    flex: 0 1 auto;
    min-width: 0;
}

.catalog-section .stream-links.small {
    gap: 6px;
}

.catalog-section .stream-links.small a,
.catalog-section .stream-links.small span {
    flex: 0 1 auto;
}
