:root {
  --background: #08111f;
  --foreground: #f6efe7;
  --panel: rgba(15, 23, 37, 0.8);
  --panel-soft: rgba(7, 10, 18, 0.36);
  --border: rgba(255, 255, 255, 0.1);
  --accent: #f0894f;
  --accent-soft: #ffd166;
  --muted: #95a7bd;
  --danger: #ff8b8b;
  --success: #96efb8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 84, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(53, 194, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #0a1220 0%, #060a13 100%);
}

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

.shell {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 24px 20px 40px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(11, 16, 28, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: 58px;
  height: auto;
}

.brand-mark {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7b54, #ffd166);
  color: #1a1014;
  font-weight: 700;
}

.brand-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-subtitle,
.eyebrow {
  color: rgba(247, 179, 107, 0.82);
  font-size: 0.73rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.nav-link {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.nav-link-active {
  background: var(--accent);
  color: #1b1117;
  font-weight: 700;
}

.nav-user {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.membership-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-pill-paid {
  background: rgba(150, 239, 184, 0.14);
  color: var(--success);
}

.membership-pill-free {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.page-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero,
.panel,
.card,
.album-block,
.artist-block,
.track-card {
  border: 1px solid var(--border);
  border-radius: 28px;
}

.hero {
  padding: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 154, 98, 0.35), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(53, 194, 255, 0.26), transparent 26%),
    linear-gradient(140deg, rgba(16, 25, 41, 0.96), rgba(9, 13, 23, 0.98));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  margin: 10px 0 0;
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.hero-grid,
.two-col,
.discover-layout,
.stats-grid,
.form-grid,
.row-grid {
  display: grid;
  gap: 20px;
}

.hero-grid,
.two-col {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
}

.discover-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.38fr);
  align-items: start;
  gap: 28px;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.stat-pill,
.small-pill {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.panel {
  padding: 24px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.policy-panel {
  display: grid;
  gap: 16px;
  line-height: 1.72;
}

.policy-panel h2 {
  margin-top: 10px;
}

.policy-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.policy-panel a,
.site-footer a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.section-heading h2,
.section-heading h3,
.panel h2,
.panel h3 {
  margin: 0;
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: #1a1014;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background: #ffa36d;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-muted {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.icon-label-button {
  gap: 10px;
}

.flash {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.flash-success {
  background: rgba(64, 173, 103, 0.16);
  border-color: rgba(150, 239, 184, 0.2);
  color: var(--success);
}

.flash-error {
  background: rgba(196, 68, 68, 0.14);
  border-color: rgba(255, 139, 139, 0.18);
  color: var(--danger);
}

.now-playing-card,
.artist-block,
.album-block,
.track-card,
.row-card {
  background: rgba(7, 10, 18, 0.44);
}

.artwork {
  overflow: hidden;
  border-radius: 22px;
  min-height: 240px;
  background:
    linear-gradient(140deg, rgba(255, 123, 84, 0.2), rgba(53, 194, 255, 0.18)),
    linear-gradient(160deg, #0d1524, #111c2f);
}

.artwork img,
.track-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-hero-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.popular-track-card {
  display: grid;
  grid-template-columns: 38px 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.popular-track-card-featured {
  border-color: rgba(240, 137, 79, 0.32);
  background: rgba(240, 137, 79, 0.11);
}

.popular-rank {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1014;
  font-weight: 700;
}

.popular-track-art {
  overflow: hidden;
  width: 82px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 123, 84, 0.2), rgba(53, 194, 255, 0.18)),
    linear-gradient(160deg, #0d1524, #111c2f);
}

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

.popular-track-copy h3 {
  margin: 0;
}

.popular-track-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.popular-track-audio {
  grid-column: 2 / -1;
  width: 100%;
}

.track-grid,
.artist-stack,
.album-stack,
.manage-stack {
  display: grid;
  gap: 16px;
}

.album-editor-card {
  display: grid;
  gap: 22px;
}

.album-editor-header {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.album-editor-art {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255, 123, 84, 0.2), rgba(53, 194, 255, 0.18)),
    linear-gradient(160deg, #0d1524, #111c2f);
}

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

.album-editor-copy h3 {
  margin: 8px 0 0;
}

.track-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.artist-directory {
  display: grid;
  gap: 14px;
}

.artist-directory-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.artist-directory-art,
.profile-summary-art {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255, 123, 84, 0.2), rgba(53, 194, 255, 0.18)),
    linear-gradient(160deg, #0d1524, #111c2f);
}

.artist-directory-art {
  width: 68px;
  height: 68px;
  font-size: 1.4rem;
  font-weight: 700;
}

.artist-directory-art img,
.profile-summary-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-directory-copy h3 {
  margin: 0;
}

.artist-directory-title {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.artist-directory-bio {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.92rem;
}

.profile-summary-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.profile-summary-art {
  width: 110px;
  height: 110px;
}

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

.album-card-link {
  display: block;
}

.album-card {
  height: 100%;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(7, 10, 18, 0.44);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.album-card-link:hover .album-card {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.album-card-art,
.album-hero-art {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(140deg, rgba(255, 123, 84, 0.2), rgba(53, 194, 255, 0.18)),
    linear-gradient(160deg, #0d1524, #111c2f);
}

.album-card-art img,
.album-hero-art img,
.player-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-card-copy {
  margin-top: 14px;
}

.album-card-copy h3,
.album-hero-copy h1 {
  margin: 8px 0 0;
}

.album-card-artist,
.album-hero-artist {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.album-hero-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.album-hero-copy p {
  max-width: 680px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.back-link:hover {
  color: #fff;
}

.playlist-table {
  display: grid;
  gap: 10px;
}

.playlist-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.playlist-row:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.playlist-row-active {
  background: rgba(240, 137, 79, 0.12);
  border-color: rgba(240, 137, 79, 0.35);
}

.playlist-play-button {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  font-size: 0.92rem;
}

.playlist-row-copy h3 {
  margin: 0;
  font-size: 1.05rem;
}

.playlist-row-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.playlist-row-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.library-detail-layout {
  align-items: start;
}

.media-player-card {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.media-player-heading {
  margin-bottom: 0;
}

.media-player-visual {
  display: grid;
  gap: 16px;
}

.media-player-cover {
  overflow: hidden;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(255, 123, 84, 0.2), rgba(53, 194, 255, 0.18)),
    linear-gradient(160deg, #0d1524, #111c2f);
}

.player-cover {
  overflow: hidden;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 123, 84, 0.2), rgba(53, 194, 255, 0.18)),
    linear-gradient(160deg, #0d1524, #111c2f);
}

.player-track-title {
  font-weight: 700;
}

.player-track-meta {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.media-player-status {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.player-center {
  display: grid;
  gap: 10px;
}

.media-player-controls {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.player-button-row,
.player-progress-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.player-icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.player-icon-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.player-main-button {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
}

.play-symbol,
.pause-symbol,
.prev-symbol,
.next-symbol {
  display: inline-block;
  position: relative;
}

.play-symbol {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.pause-symbol {
  width: 14px;
  height: 18px;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
}

.prev-symbol,
.next-symbol {
  width: 18px;
  height: 18px;
}

.prev-symbol::before,
.prev-symbol::after,
.next-symbol::before,
.next-symbol::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.prev-symbol::before {
  left: 1px;
  border-right: 8px solid currentColor;
}

.prev-symbol::after {
  left: 8px;
  border-right: 8px solid currentColor;
}

.next-symbol::before {
  right: 8px;
  border-left: 8px solid currentColor;
}

.next-symbol::after {
  right: 1px;
  border-left: 8px solid currentColor;
}

.player-progress-row span,
.player-volume label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

#player-progress,
#player-volume-slider {
  width: 100%;
}

.player-volume {
  display: grid;
  gap: 8px;
}

.card,
.row-card,
.track-card,
.album-block,
.artist-block {
  padding: 18px;
}

.track-card {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}

.track-meta,
.muted,
.helper-list,
.site-footer,
.field-note {
  color: rgba(255, 255, 255, 0.7);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 6px 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1;
  white-space: nowrap;
}

.track-layout {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
}

.track-art {
  overflow: hidden;
  border-radius: 20px;
  min-height: 112px;
  background:
    linear-gradient(140deg, rgba(255, 123, 84, 0.2), rgba(53, 194, 255, 0.18)),
    linear-gradient(160deg, #0d1524, #111c2f);
}

.track-title {
  margin: 0;
  font-size: 1.25rem;
}

.track-subtitle {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.track-description {
  line-height: 1.65;
}

.audio-player {
  width: 100%;
  margin-top: 12px;
}

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

.auth-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.row-grid {
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}

.field,
.textarea,
.file-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

input[type="text"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font: inherit;
}

select {
  appearance: none;
}

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

input[type="file"] {
  width: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.15);
  color: white;
}

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

.status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.status-pill {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.row-card.active-row {
  border-color: rgba(247, 179, 107, 0.25);
  background: rgba(255, 157, 109, 0.06);
}

.row-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

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

.aside-list li {
  line-height: 1.7;
}

.site-footer {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.affiliate-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid rgba(247, 179, 107, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 209, 102, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 123, 84, 0.2), rgba(8, 14, 26, 0.92));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.affiliate-copy {
  max-width: 720px;
}

.affiliate-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(255, 209, 102, 0.86);
  font-size: 0.73rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.affiliate-banner h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.affiliate-banner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.affiliate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f6efe7;
  color: #151015;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.affiliate-button:hover {
  background: var(--accent-soft);
}

.ad-slot {
  border-style: dashed;
}

.ad-slot h2 {
  margin-top: 8px;
}

.ad-slot p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.ad-slot-frame {
  margin-top: 16px;
  padding: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
}

.auxe-ad-unit {
  display: block;
  min-height: 120px;
}

.ad-slot-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.billing-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(7, 10, 18, 0.44);
}

.billing-card-highlight {
  border-color: rgba(240, 137, 79, 0.32);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.billing-price {
  margin: 14px 0 0;
  font-size: 2.5rem;
  font-weight: 700;
}

.billing-note {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.wide-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.status-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.empty-state {
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.12);
}

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

.save-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.playlist-action-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.playlist-preview-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .discover-layout,
  .form-grid,
  .row-grid,
  .track-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .brand-logo img {
    width: 54px;
  }

  .site-nav {
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .album-hero-layout,
  .playlist-row,
  .album-editor-header,
  .profile-summary-card,
  .artist-directory-card {
    grid-template-columns: 1fr;
  }

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

  .playlist-row-meta {
    justify-content: flex-start;
  }

  .media-player-card {
    position: static;
  }
}
