:root {
  --bg: #090a0d;
  --panel: #12141a;
  --panel-soft: #1b1e26;
  --paper: #f4f6fa;
  --white: #ffffff;
  --text: #11141b;
  --muted: #737b89;
  --line: #dfe4ec;
  --gold: #f4c430;
  --gold-dark: #c99700;
  --danger: #11141b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 196, 48, 0.12), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(120, 64, 32, 0.08), transparent 28%),
    linear-gradient(180deg, #f2f1eb 0%, #e8e9e4 48%, #f6f5f0 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

body.artist-body {
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 196, 48, 0.12), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(120, 64, 32, 0.08), transparent 28%),
    linear-gradient(180deg, #f2f1eb 0%, #e8e9e4 48%, #f6f5f0 100%);
  color: var(--text);
}

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

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(12, 14, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 104px;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand img {
  display: block;
  height: 82px;
  object-fit: contain;
  width: 184px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

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

.home-hero {
  display: block;
  min-height: auto;
  padding: clamp(22px, 4vw, 42px) clamp(18px, 6vw, 86px) clamp(14px, 2vw, 22px);
}

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

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

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

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-text,
.tagline,
.dashboard-intro p,
.release-detail p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
  line-height: 1.5;
}

.home-hero .hero-text {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.tagline {
  color: var(--gold);
  font-weight: 900;
}

.hero-actions,
.download-row,
.item-actions,
.mini-actions,
.file-editor-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-button,
.secondary-button,
.item-actions button {
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
}

.primary-button {
  background: var(--gold);
  color: #0b0c10;
}

.secondary-button,
.item-actions button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.secondary-button.disabled {
  opacity: 0.42;
  pointer-events: none;
}

.section-shell,
.dashboard-layout {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(12px, 2vw, 22px) clamp(18px, 4vw, 30px) clamp(24px, 4vw, 46px);
}

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

.feature-banner {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(244, 196, 48, 0.16), transparent 44%),
    #101116;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(0, 0.85fr);
  margin: 0 calc(50% - 50vw + 18px) 26px;
  min-height: 170px;
  overflow: hidden;
}

.feature-visual {
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 196, 48, 0.32), transparent 28%),
    #06070a;
  min-height: 170px;
  overflow: hidden;
  position: relative;
}

.feature-visual::before,
.feature-visual::after {
  background: rgba(255, 255, 255, 0.08);
  content: "";
  height: 170%;
  position: absolute;
  top: -35%;
  transform: rotate(-24deg);
  width: 34%;
}

.feature-visual::before {
  left: 10%;
}

.feature-visual::after {
  left: 52%;
}

.feature-visual img {
  border: 5px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  height: 126px;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  width: 126px;
  z-index: 2;
}

.feature-visual img.is-changing {
  opacity: 0.35;
  transform: translate(-50%, -50%) rotate(-2deg) scale(0.96);
}

.feature-copy {
  align-content: center;
  display: grid;
  justify-items: start;
  padding: clamp(16px, 2.4vw, 26px);
}

.feature-copy h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  margin-bottom: 6px;
  max-width: 520px;
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.35;
  margin-bottom: 14px;
  max-width: 520px;
}

.genre-strip {
  align-items: center;
  border-bottom: 1px solid rgba(17, 20, 27, 0.12);
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.genre-strip a {
  background: rgba(17, 20, 27, 0.06);
  border: 1px solid rgba(17, 20, 27, 0.1);
  border-radius: 999px;
  color: rgba(17, 20, 27, 0.76);
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 9px 13px;
}

.genre-strip a.is-current {
  background: var(--gold);
  border-color: var(--gold);
  color: #10131a;
}

.music-shelf {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.shelf-heading,
.artist-mini-heading {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.shelf-heading h3,
.artist-mini-heading h3 {
  color: #11141b;
  font-size: 1.25rem;
  margin: 0;
}

.shelf-heading a,
.artist-mini-heading a {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-grid {
  display: grid;
  gap: clamp(26px, 3vw, 38px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.release-card,
.submitted-release,
.admin-card,
.record-row {
  background: #fdfefe;
  border: 1px solid rgba(223, 228, 236, 0.95);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  color: var(--text);
  overflow: hidden;
}

.release-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 0;
  overflow: visible;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.release-card:hover {
  transform: translateY(-2px);
}

.release-cover,
.submitted-release img,
.admin-card > img {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.release-cover-frame {
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, var(--gold), #fff6b8 42%, var(--gold-dark));
  border-radius: 999px;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  height: auto;
  max-width: 220px;
  padding: 7px;
  width: 100%;
}

.release-card .release-cover {
  aspect-ratio: 1;
  border: 4px solid #10131a;
  border-radius: 999px;
  clip-path: none;
  height: 100%;
  width: 100%;
}

.release-body,
.admin-card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.release-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    #202329;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  align-content: center;
  justify-items: center;
  min-width: 0;
  padding: 16px 14px 15px;
  position: relative;
  text-align: center;
  width: min(100%, 260px);
}

.release-body::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  height: 2px;
  left: 18%;
  position: absolute;
  right: 18%;
  top: 0;
}

.release-body h3 {
  color: var(--white);
  font-size: 1.16rem;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-body span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-meta {
  color: var(--gold) !important;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-body p,
.submitted-release p,
.admin-card p {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.mini-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}

.mini-actions a {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
}

.listen-action {
  background: var(--gold);
  color: #10131a;
}

.dashboard-body,
.manager-body {
  background: var(--paper);
  color: var(--text);
}

.dashboard-body .site-header,
.manager-body .site-header {
  background: #24272e;
}

.dashboard-intro {
  background: #10131a;
  color: var(--white);
  margin-bottom: 22px;
  padding: clamp(28px, 5vw, 52px);
}

.dashboard-intro h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 900px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(20, 30, 44, 0.08);
  color: var(--text);
  margin-top: 22px;
  padding: clamp(20px, 4vw, 32px);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

label {
  color: #3f4652;
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
}

input,
textarea,
select {
  background: #f8fafc;
  border: 1px solid #dce1ea;
  border-radius: 6px;
  color: var(--text);
  min-height: 46px;
  outline: none;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.15);
}

.field-note,
.form-message {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-message[data-type="error"] {
  color: #a21c22;
}

.link-fields {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dashboard-home-preview {
  align-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(244, 196, 48, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(17, 20, 27, 0.04), rgba(17, 20, 27, 0.01));
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 300px);
  padding: clamp(16px, 3vw, 24px);
}

.dashboard-home-preview h3 {
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin: 0;
}

.dashboard-release-preview {
  margin: 0;
}

.dashboard-release-preview .listen-action {
  display: inline-flex;
  pointer-events: none;
}

.dashboard-upload-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
}

.compact-heading {
  margin-bottom: 0;
}

.compact-heading h3 {
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
}

.link-input span {
  align-items: center;
  display: flex;
  gap: 9px;
}

.link-input img {
  border-radius: 6px;
  height: 26px;
  object-fit: cover;
  width: 26px;
}

.release-list,
.approval-list,
.records-list,
.artist-release-list {
  display: grid;
  gap: 16px;
}

.submitted-release,
.admin-card {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
}

.submitted-release > div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.submitted-release.is-editing {
  border-color: rgba(244, 196, 48, 0.72);
  box-shadow: 0 18px 44px rgba(244, 196, 48, 0.16);
}

.item-actions button {
  background: #11141b;
}

.manager-link-fields {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  padding: 22px;
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 800;
}

.artist-hero {
  display: grid;
  gap: 12px;
  padding: clamp(14px, 3vw, 26px) clamp(18px, 6vw, 86px) 0;
  position: relative;
}

.artist-cover-glow {
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.78), rgba(12, 14, 18, 0.42), rgba(12, 14, 18, 0.84)),
    var(--artist-banner),
    #101116;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(244, 196, 48, 0.11);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 42px rgba(17, 20, 27, 0.12);
  filter: saturate(0.82);
  height: 138px;
}

.artist-profile-card {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: 168px minmax(0, 1fr);
  margin-top: -76px;
  max-width: 1180px;
  padding: 0 clamp(16px, 3vw, 28px);
  position: relative;
  z-index: 2;
}

.artist-profile-main {
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 196, 48, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025) 46%, rgba(66, 42, 28, 0.16)),
    #171a20;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: clamp(16px, 2.4vw, 22px);
}

.artist-photo,
.release-cover-large {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  width: 100%;
}

.artist-photo {
  background: #090a0d;
  border: 4px solid rgba(244, 196, 48, 0.72);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 0 7px rgba(255, 255, 255, 0.045);
}

.artist-profile-main h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 8px;
}

.artist-profile-main > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  line-height: 1.45;
  margin-bottom: 14px;
  max-width: 820px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.artist-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.artist-stats div {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(244, 196, 48, 0.1);
  border-radius: 8px;
  min-width: 104px;
  padding: 8px 11px;
}

.artist-stats strong {
  color: var(--white);
  display: block;
  font-size: 1.1rem;
}

.artist-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-tabs {
  border-bottom: 1px solid rgba(17, 20, 27, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px auto 0;
  max-width: 1180px;
  padding: 0 clamp(16px, 3vw, 28px) 14px;
  width: 100%;
}

.artist-tabs a {
  background: rgba(17, 20, 27, 0.06);
  border: 1px solid rgba(17, 20, 27, 0.1);
  border-radius: 999px;
  color: rgba(17, 20, 27, 0.76);
  font-weight: 900;
  padding: 9px 14px;
}

.artist-tabs a.is-current {
  background: var(--gold);
  color: #10131a;
}

.artist-track-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(28px, 5vw, 54px) clamp(18px, 4vw, 30px) 0;
}

.artist-track-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.artist-track-heading h2 {
  color: #11141b;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0;
  text-transform: uppercase;
}

.artist-catalog-page .section-heading h1,
.artist-catalog-page .section-heading h2 {
  color: #11141b;
}

.track-tabs {
  background: rgba(17, 20, 27, 0.06);
  border: 1px solid rgba(17, 20, 27, 0.1);
  border-radius: 999px;
  display: flex;
  gap: 6px;
  padding: 5px;
}

.track-tabs button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(17, 20, 27, 0.72);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 16px;
}

.track-tabs button.is-current {
  background: var(--gold);
  color: #10131a;
}

.artist-track-list {
  display: grid;
}

.artist-track-row {
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(244, 196, 48, 0.11), transparent 27%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02) 44%, rgba(244, 196, 48, 0.055)),
    #12141a;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  overflow: hidden;
  padding: clamp(20px, 3.5vw, 34px);
  position: relative;
  text-align: center;
}

.artist-track-row::after {
  background:
    linear-gradient(90deg, transparent, rgba(244, 196, 48, 0.2), transparent),
    rgba(255, 255, 255, 0.05);
  content: "";
  height: 1px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.track-star-frame {
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(244, 196, 48, 0.22), rgba(255, 255, 255, 0.08)),
    #171a21;
  border: 1px solid rgba(244, 196, 48, 0.16);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 18px 0 0 rgba(244, 196, 48, 0.08);
  display: grid;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.35));
  max-width: 320px;
  overflow: hidden;
  padding: 12px;
  place-items: center;
  position: relative;
  width: 100%;
}

.track-star-frame::before {
  background:
    linear-gradient(90deg, rgba(244, 196, 48, 0.18), transparent),
    rgba(255, 255, 255, 0.03);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px;
}

.track-cover {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.38),
    12px 12px 0 rgba(244, 196, 48, 0.07);
  display: block;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.track-copy {
  min-width: 0;
  max-width: 760px;
}

.track-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.track-copy .track-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.track-copy h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  letter-spacing: 0;
  margin: 0 0 8px;
}

.track-copy > span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-weight: 800;
  margin-bottom: 10px;
}

.track-tags {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.track-tags span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 7px 9px;
}

.track-tags span:first-child {
  color: rgba(255, 255, 255, 0.9);
}

.track-tags span:first-child::before {
  color: var(--gold);
  content: "⌖ ";
}

.track-listen {
  background:
    linear-gradient(180deg, #ffe27a, var(--gold));
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(244, 196, 48, 0.18);
  color: #10131a;
  font-weight: 900;
  justify-self: center;
  padding: 14px 20px;
}

.track-options {
  position: absolute;
  right: 18px;
  top: 18px;
}

.track-menu {
  background: rgba(255, 255, 255, 0.07);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  min-height: 42px;
  min-width: 42px;
}

.track-menu-panel {
  background: #11141b;
  border: 1px solid rgba(244, 196, 48, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 20, 27, 0.22);
  display: none;
  min-width: 156px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 5;
}

.track-options:focus-within .track-menu-panel,
.track-options:hover .track-menu-panel {
  display: grid;
}

.track-menu-panel strong {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 8px 12px 4px;
  text-transform: uppercase;
}

.track-menu-panel button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 10px 12px;
  text-align: left;
}

.track-menu-panel button span {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-size: 0.72rem;
  margin-bottom: 2px;
}

.track-menu-panel button:hover {
  background: rgba(244, 196, 48, 0.14);
  color: var(--gold);
}

.artist-more-section {
  margin-top: clamp(34px, 5vw, 58px);
}

.more-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.more-heading h2 {
  color: #11141b;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin: 0;
  text-transform: uppercase;
}

.more-heading a {
  color: rgba(17, 20, 27, 0.58);
  font-weight: 900;
  text-transform: uppercase;
}

.artist-more-circle-grid {
  display: grid;
  gap: clamp(12px, 1.8vw, 20px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.artist-more-circle-card {
  color: #11141b;
  display: grid;
  gap: 8px;
  justify-items: center;
  position: relative;
  text-align: center;
}

.artist-more-circle-link {
  color: inherit;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.artist-more-cover {
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(244, 196, 48, 0.45), rgba(255, 255, 255, 0.5)),
    rgba(17, 20, 27, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(17, 20, 27, 0.16);
  display: block;
  max-width: 230px;
  padding: 6px;
  width: 100%;
}

.artist-more-cover img {
  aspect-ratio: 1;
  border: 3px solid rgba(246, 245, 240, 0.86);
  border-radius: 999px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.artist-more-circle-card strong {
  font-size: 1.02rem;
}

.artist-more-circle-card > span:not(.artist-more-cover) {
  color: rgba(17, 20, 27, 0.62);
  font-weight: 800;
}

.icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.icon-links a {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: flex;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  width: 38px;
}

.icon-links a:hover {
  border-color: var(--gold);
}

.icon-links img {
  height: 17px;
  object-fit: cover;
  width: 17px;
}

.artist-release {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 720px;
  padding: clamp(18px, 4vw, 30px);
}

.release-head {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.release-head h3 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
}

.release-head span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.release-status {
  background: rgba(244, 196, 48, 0.16);
  border: 1px solid rgba(244, 196, 48, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  margin: 2px 0 0;
  padding: 7px 10px;
  text-transform: uppercase;
}

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

.modern-audio {
  width: 100%;
}

.streaming-list {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.streaming-list a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  font-weight: 900;
  gap: 12px;
  padding: 12px;
}

.streaming-list img {
  border-radius: 6px;
  height: 34px;
  object-fit: cover;
  width: 34px;
}

.link-hub-page {
  overflow: hidden;
  padding-top: clamp(34px, 5vw, 64px);
  position: relative;
}

.link-hub-page::before {
  background:
    radial-gradient(circle at 34% 18%, rgba(244, 196, 48, 0.2), transparent 25%),
    radial-gradient(circle at 68% 28%, rgba(42, 78, 88, 0.18), transparent 28%),
    radial-gradient(circle at 50% 74%, rgba(120, 64, 32, 0.12), transparent 32%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.link-hub-card {
  display: grid;
  justify-items: center;
  margin: 0 auto;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.link-cover-wrap {
  aspect-ratio: 1;
  border-radius: 8px;
  box-shadow:
    0 26px 56px rgba(17, 20, 27, 0.2),
    0 0 0 1px rgba(17, 20, 27, 0.08);
  max-width: 320px;
  overflow: hidden;
  position: relative;
  width: min(76vw, 320px);
}

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

.link-play-preview {
  align-items: center;
  background: rgba(246, 245, 240, 0.68);
  border: 0;
  border-radius: 999px;
  color: #11141b;
  cursor: pointer;
  display: flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 68px;
  justify-content: center;
  padding-left: 4px;
  width: 68px;
}

.cover-player {
  inset: 0;
  position: absolute;
}

.cover-progress {
  background: rgba(17, 20, 27, 0.45);
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cover-progress span {
  background: var(--gold);
  display: block;
  height: 100%;
  width: 0;
}

.cover-meta,
.cover-time {
  background: rgba(17, 20, 27, 0.64);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  position: absolute;
}

.cover-meta {
  display: grid;
  gap: 2px;
  left: 10px;
  max-width: 48%;
  padding: 8px 10px;
  top: 10px;
}

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

.cover-meta strong {
  font-size: 0.82rem;
}

.cover-meta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.cover-time {
  font-size: 0.86rem;
  font-weight: 900;
  padding: 8px 9px;
  right: 10px;
  top: 10px;
}

.cover-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cover-controls button {
  align-items: center;
  background: rgba(246, 245, 240, 0.55);
  border: 0;
  border-radius: 999px;
  color: #11141b;
  cursor: pointer;
  display: flex;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.cover-controls .link-play-preview {
  height: 70px;
  width: 70px;
}

.link-hub-title {
  margin: 24px 0 30px;
  text-align: center;
}

.link-hub-title p {
  color: rgba(17, 20, 27, 0.68);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.link-hub-title h1 {
  color: #11141b;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.05;
  margin-bottom: 6px;
}

.link-hub-title span {
  color: rgba(17, 20, 27, 0.62);
  font-size: 1rem;
  font-weight: 800;
}

.service-list {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 20, 27, 0.08);
  border-radius: 8px;
  box-shadow:
    0 28px 62px rgba(17, 20, 27, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  display: grid;
  overflow: hidden;
  width: 100%;
}

.service-row {
  align-items: center;
  border-bottom: 1px solid rgba(17, 20, 27, 0.08);
  color: #11141b;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 78px;
  padding: 15px 18px;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.service-brand img {
  border-radius: 8px;
  height: 46px;
  object-fit: contain;
  width: 46px;
}

.service-brand strong {
  font-size: 1.06rem;
}

.service-brand em {
  color: rgba(17, 20, 27, 0.58);
  font-style: normal;
  font-weight: 900;
  margin-left: 6px;
}

.service-action {
  background: #e8ebf1;
  border-radius: 6px;
  color: #11141b;
  flex: 0 0 auto;
  font-weight: 900;
  padding: 12px 18px;
}

.service-row:hover .service-action {
  background: var(--gold);
}

.service-row[aria-disabled="true"] {
  cursor: default;
}

.service-row[aria-disabled="true"] .service-action {
  opacity: 0.7;
}

.service-download-icon {
  align-items: center;
  background: #11141b;
  border-radius: 8px;
  color: var(--gold);
  display: flex;
  font-size: 1rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.service-row-donate .service-download-icon {
  color: #ffdf6f;
}

.video-page {
  padding-top: clamp(28px, 5vw, 58px);
}

.video-grid {
  display: grid;
  gap: 22px;
}

.video-section-heading {
  margin: clamp(20px, 4vw, 34px) auto 14px;
  max-width: 860px;
}

.video-section-heading h2 {
  color: #11141b;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
  text-transform: uppercase;
}

.video-card {
  background:
    radial-gradient(circle at 18% 14%, rgba(244, 196, 48, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02) 44%, rgba(244, 196, 48, 0.055)),
    #12141a;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 860px;
  overflow: hidden;
  padding: clamp(14px, 2.4vw, 22px);
  width: 100%;
}

.video-embed {
  aspect-ratio: 16 / 9;
  background: #090a0d;
  border-radius: 8px;
  overflow: hidden;
}

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

.video-copy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}

.video-copy .eyebrow,
.video-copy h2 {
  margin: 0;
}

.video-copy h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
}

.video-more-link {
  color: #11141b;
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 14px auto 0;
  max-width: 860px;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

.video-more-link:hover {
  color: var(--gold-dark);
}

.short-video-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  margin: 0 auto;
  max-width: 960px;
}

.short-video-card {
  align-items: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 20, 27, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 20, 27, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
  padding: clamp(14px, 2vw, 20px);
}

.short-video-embed,
.short-video-placeholder {
  align-items: center;
  aspect-ratio: 9 / 16;
  background:
    linear-gradient(145deg, rgba(244, 196, 48, 0.18), rgba(17, 20, 27, 0.08)),
    #12141a;
  border-radius: 8px;
  color: var(--gold);
  display: flex;
  font-weight: 900;
  justify-content: center;
  max-width: 230px;
  overflow: hidden;
  text-transform: uppercase;
  width: 100%;
}

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

.short-video-card strong,
.short-video-card span {
  display: block;
}

.short-video-card strong {
  color: #11141b;
  font-size: 1.1rem;
}

.short-video-card span {
  color: rgba(17, 20, 27, 0.62);
  font-weight: 800;
  line-height: 1.35;
}

.record-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr repeat(3, minmax(130px, 1fr));
  padding: 16px;
}

.empty-state {
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 246, 184, 0.5), transparent 30%),
    linear-gradient(135deg, #f4c430 0%, #e6b72c 45%, #c99700 100%);
  border-top: 1px solid rgba(17, 20, 27, 0.14);
  color: rgba(17, 20, 27, 0.78);
  margin-top: clamp(46px, 7vw, 86px);
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px);
  text-align: center;
}

.footer-inner {
  display: grid;
  gap: 22px;
  justify-items: center;
  margin: 0 auto;
  max-width: 980px;
}

.footer-logo {
  height: 58px;
  object-fit: contain;
  width: 130px;
}

.footer-tagline {
  color: #11141b;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  margin: 0;
}

.footer-socials,
.footer-links,
.footer-legal {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-socials a {
  align-items: center;
  background: rgba(17, 20, 27, 0.1);
  border: 1px solid rgba(17, 20, 27, 0.16);
  border-radius: 999px;
  color: rgba(17, 20, 27, 0.86);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.footer-socials a:hover {
  background: rgba(17, 20, 27, 0.16);
  border-color: rgba(17, 20, 27, 0.34);
  color: #11141b;
}

.footer-socials img {
  display: block;
  filter: invert(1);
  height: 17px;
  object-fit: contain;
  width: 17px;
}

.footer-links a {
  color: #11141b;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-description {
  color: rgba(17, 20, 27, 0.68);
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}

.footer-legal a,
.footer-copy {
  color: rgba(17, 20, 27, 0.58);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-copy {
  margin: 0;
}

.site-footer:has(.footer-socials:first-child) {
  background: rgba(12, 14, 18, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  margin-top: clamp(34px, 5vw, 58px);
  min-height: 104px;
  padding: 22px clamp(18px, 5vw, 72px);
}

.site-footer:has(.footer-socials:first-child) .footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  min-height: 60px;
}

.site-footer:has(.footer-socials:first-child) .footer-socials a {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer:has(.footer-socials:first-child) .footer-socials img {
  filter: none;
}

.site-footer:has(.footer-socials:first-child) .footer-copy {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero,
  .feature-banner,
  .artist-release,
  .submitted-release,
  .admin-card,
  .form-row,
  .stats-grid,
  .record-row {
    grid-template-columns: 1fr;
  }

  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-profile-card {
    grid-template-columns: 140px minmax(0, 1fr);
    margin-top: -70px;
  }

  .artist-profile-main h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .artist-track-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .artist-more-circle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .short-video-grid {
    grid-template-columns: 1fr;
  }

  .track-listen {
    justify-self: center;
  }

  .track-menu {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .short-video-card {
    grid-template-columns: 1fr;
  }

  .short-video-embed,
  .short-video-placeholder {
    justify-self: center;
    max-width: 260px;
  }

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

  .artist-profile-card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .artist-photo {
    max-width: 156px;
  }

  .artist-track-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .track-star-frame {
    max-width: 260px;
  }
}
