:root {
  --bg: #050505;
  --panel: #101010;
  --panel-soft: #181818;
  --card: #1d1d1d;
  --card-hover: #292929;
  --text: #f5f5f5;
  --muted: #a7a7a7;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d6b24a;
  --gold-soft: #f0d77b;
  --accent: #9b123a;
  --green: #1db954;
  --radius: 10px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.app-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
  gap: 8px;
  padding: 8px;
  background: var(--bg);
}

.sidebar {
  position: sticky;
  top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100vh - 16px);
  padding: 16px;
  background: #000;
  border-radius: var(--radius);
}

.app-main {
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #1b1b1b 0, #0b0b0b 360px, #0b0b0b 100%);
  border-radius: var(--radius);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #000;
  background: var(--gold-soft);
  border-radius: 50%;
  font-weight: 950;
}

.mobile-brand {
  display: none;
}

.nav {
  display: grid;
  gap: 6px;
  padding: 10px 0;
}

.nav a,
.topbar-actions a {
  color: var(--muted);
  border-radius: 999px;
  font-weight: 850;
}

.nav a {
  padding: 12px 10px;
}

.topbar-actions {
  display: flex;
  gap: 8px;
}

.topbar-actions a {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:hover,
.topbar-actions a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-card {
  margin-top: auto;
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sidebar-card span,
.sidebar-card small {
  color: var(--muted);
  font-weight: 800;
}

.sidebar-card strong {
  font-size: 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: end;
  padding: clamp(22px, 5vw, 54px) clamp(18px, 4vw, 42px) 42px;
  background:
    linear-gradient(180deg, rgba(214, 178, 74, 0.28), rgba(11, 11, 11, 0.95)),
    radial-gradient(circle at 80% 12%, rgba(155, 18, 58, 0.28), transparent 34rem);
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-card span,
.hero-card small {
  color: var(--muted);
  font-weight: 800;
}

.featured-audio {
  width: 100%;
  min-width: 0;
}

.featured-play {
  min-height: 42px;
  padding: 0 16px;
  color: #000;
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.photo-credit {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 750;
}

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

.status-pill,
.trust-row span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.status-pill {
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 8px;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.button,
.back-link,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}

.primary,
.back-link {
  color: #000;
  background: var(--green);
}

.ghost,
.small-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.intro-band,
.feature-row,
.section,
.payments,
.bio,
.contact {
  padding: clamp(34px, 6vw, 70px) clamp(18px, 4vw, 42px);
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: #0b0b0b;
  border-top: 1px solid var(--line);
}

.intro-band p,
.payments p,
.contact p,
.album-detail-hero .lead {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-row article,
.bio-card,
.stats,
.contact-form,
.track,
.lyrics-panel {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-row article {
  min-height: 160px;
  padding: 22px;
}

.feature-row span,
.news-grid span {
  color: var(--green);
  font-weight: 950;
}

.feature-row p,
.section-heading p,
.bio-card p,
.track-meta,
.album-preview,
.album-preview-list,
.stats span {
  color: var(--muted);
}

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

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(220px, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

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

.album-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  color: inherit;
  background: var(--card);
  border-radius: var(--radius);
  transition: background 160ms ease, transform 160ms ease;
}

.album-card:hover {
  background: var(--card-hover);
  transform: translateY(-3px);
}

.album-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1;
  padding: 16px;
  overflow: hidden;
  color: var(--text);
  background:
    linear-gradient(var(--avatar-tilt, 135deg), var(--avatar-a, #d6b24a), var(--avatar-b, #9b123a)),
    #222;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.album-cover::before {
  content: "";
  position: absolute;
  inset: 16%;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.45) 0 12%, rgba(255, 255, 255, 0.18) 13% 14%, transparent 15%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 9px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.album-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 48%, rgba(0, 0, 0, 0.44) 100%),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.28), transparent 22%);
}

.album-disc {
  position: absolute;
  right: -12%;
  top: -12%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #050505 0 12%, rgba(255, 255, 255, 0.38) 13% 14%, #111 15% 100%);
  opacity: 0.34;
}

.album-cover span,
.album-cover strong,
.album-cover p {
  position: relative;
  z-index: 1;
}

.album-cover span {
  display: inline-flex;
  width: max-content;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 950;
}

.album-cover strong {
  font-size: 1.15rem;
  line-height: 1.05;
}

.album-cover p {
  display: none;
}

.album-card h3 {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.album-preview-list {
  display: grid;
  gap: 6px;
  padding: 0;
  list-style: none;
}

.album-preview-list li {
  color: var(--muted);
  font-size: 0.9rem;
}

.album-detail-hero {
  padding: clamp(34px, 6vw, 70px) clamp(18px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(214, 178, 74, 0.26), rgba(11, 11, 11, 0.96)),
    radial-gradient(circle at 80% 12%, rgba(155, 18, 58, 0.26), transparent 32rem);
}

.album-detail-section {
  background: #0b0b0b;
}

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

.track {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.track::before {
  display: none;
}

.track-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

audio {
  width: 100%;
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.small-button {
  min-height: 36px;
  padding: 0 12px;
}

.small-button.disabled {
  color: rgba(255, 255, 255, 0.42);
  cursor: not-allowed;
}

.payments {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: center;
  background: #0b0b0b;
}

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

.payment-card {
  display: grid;
  min-height: 190px;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
}

.payment-card button {
  min-height: 40px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 999px;
}

.wave {
  background: linear-gradient(135deg, #1468cf, #222);
}

.orange {
  background: linear-gradient(135deg, #dc7f1f, #222);
}

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

.lyrics-panel {
  max-width: 900px;
  padding: clamp(22px, 4vw, 34px);
}

.lyrics-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: var(--gold-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.bio {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 420px);
  gap: 18px;
}

.bio-card,
.stats,
.contact-form {
  padding: clamp(22px, 4vw, 34px);
}

.source-link {
  display: inline-flex;
  margin-top: 8px;
  padding: 11px 14px;
  color: #000;
  background: var(--green);
  border-radius: 999px;
  font-weight: 950;
}

.stats {
  display: grid;
  gap: 12px;
}

.stats div {
  padding: 18px;
  background: var(--card);
  border-radius: var(--radius);
}

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

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

.news-grid article {
  min-height: 180px;
  padding: 22px;
  background: var(--card);
  border-radius: var(--radius);
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 22px;
  background: #0b0b0b;
}

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

.contact-form .button {
  margin-top: 8px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 42px);
  color: var(--muted);
  background: #0b0b0b;
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .mobile-brand {
    display: inline-flex;
  }

  .hero,
  .intro-band,
  .feature-row,
  .payments,
  .bio,
  .contact,
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
  }

  .hero-media {
    max-width: 380px;
  }

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

@media (max-width: 560px) {
  .app-shell {
    padding: 0;
  }

  .app-main {
    border-radius: 0;
  }

  .topbar-actions {
    display: none;
  }

  h1 {
    font-size: 3.1rem;
  }

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

  .album-card {
    padding: 10px;
  }
}
