/* Music For Shops — monochrome */

:root {
  --surface: #0a0a0a;
  --border: rgba(255, 255, 255, 0.1);
  --text-muted: rgba(255, 255, 255, 0.55);
  --nav-height: 4.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #f5f5f5;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Header — transparent at top, blur on scroll */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease;
}

.site-nav.is-scrolled {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--border);
}

.site-nav nav {
  min-height: var(--nav-height);
}

.nav-logo img {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 640px) {
  .nav-logo img {
    height: 2.5rem;
  }
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-toggle {
  position: relative;
  z-index: 70;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.nav-toggle:hover {
  color: #fff;
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-close {
    display: none;
  }
}

/* Mobile — full-screen menu */
@media (max-width: 767px) {
  .site-nav.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.92);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.97);
    overscroll-behavior: contain;
    touch-action: manipulation;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu .nav-link {
    font-size: 1.75rem;
    font-weight: 600;
    width: 100%;
    max-width: 18rem;
    padding: 1.125rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: rgba(255, 255, 255, 0.85);
    touch-action: manipulation;
  }

  .nav-menu .nav-link:last-of-type {
    border-bottom: none;
  }

  .nav-menu .nav-link.active {
    color: #fff;
  }

  .nav-close {
    position: absolute;
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
    z-index: 2;
    padding: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
    touch-action: manipulation;
  }

  .nav-close:hover {
    color: #fff;
  }

  body.nav-open .nav-toggle {
    opacity: 0;
    pointer-events: none;
  }
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.main-offset {
  padding-top: var(--nav-height);
}

/* Home — releases as hero over background image */
.home-hero {
  position: relative;
  background: #000;
  min-height: 100vh;
  padding-bottom: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000 url('../img/heroimage.jpg') no-repeat top center;
  background-size: cover;
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.85) 85%,
    #000 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 2rem;
  min-height: calc(100vh - var(--nav-height));
}

.hero-intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.88) 45%,
    rgba(255, 255, 255, 0.55) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.releases-grid {
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding-top: calc(var(--nav-height) + 3rem);
  }

  .releases-grid {
    margin-top: 4.5rem;
  }
}

.release-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.release-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
}

.release-card-skeleton {
  pointer-events: none;
}

.release-card-skeleton:hover {
  transform: none;
  border-color: var(--border);
}

.skeleton-block {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 0.375rem;
}

.release-skeleton-cover {
  aspect-ratio: 1;
  border-radius: 0;
}

.release-skeleton-title {
  height: 1.375rem;
  width: 72%;
  margin-bottom: 0.875rem;
}

.release-skeleton-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.release-skeleton-btn {
  height: 2.75rem;
  width: 100%;
  border-radius: 0.5rem;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-block {
    animation: none;
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 639px) {
  .release-skeleton-btn {
    height: 3rem;
  }
}

.release-card-media {
  display: block;
  color: inherit;
  text-decoration: none;
}

.release-card-media:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -2px;
}

.release-title-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.release-title-link:hover {
  opacity: 0.8;
}

.release-title-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
  border-radius: 2px;
}

.release-cover-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}

.release-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.release-card:hover .release-cover {
  transform: scale(1.03);
}

.release-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.new-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 9999px;
  animation: new-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes new-badge-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.55),
      0 0 0 5px rgba(255, 255, 255, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .new-badge {
    animation: none;
  }
}

.release-body {
  padding: 1.125rem 1.25rem 1.375rem;
}

.release-title {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.875rem;
  color: #fff;
}

.release-body:not(:has(.release-buttons)) .release-title {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .release-title {
    font-size: 1.25rem;
  }
}

.release-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.platform-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.platform-label {
  line-height: 1.2;
}

.platform-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.platform-spotify:hover {
  border-color: rgba(29, 185, 84, 0.35);
}

.platform-apple:hover {
  border-color: rgba(250, 36, 60, 0.35);
}

.platform-ytm:hover {
  border-color: rgba(255, 0, 0, 0.35);
}

@media (max-width: 639px) {
  .platform-btn {
    min-height: 3rem;
    padding: 0.8125rem 1.0625rem;
    font-size: 1.0625rem;
    gap: 0.8125rem;
  }

  .platform-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .release-buttons {
    gap: 0.625rem;
  }
}

/* Release detail page */
.release-page {
  padding: 1rem 0 2.5rem;
}

.release-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 2.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.release-back-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.release-back:hover {
  color: rgba(255, 255, 255, 0.65);
}

.release-detail {
  text-align: center;
}

.release-detail-cover-wrap {
  position: relative;
  max-width: 22rem;
  margin: 0 auto 2.25rem;
  aspect-ratio: 1;
  border-radius: 0.875rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.release-detail-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-detail-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 2.25rem;
  padding: 0 0.5rem;
}

.release-detail-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 22rem;
  margin: 0 auto;
}

.release-detail-buttons .platform-btn {
  justify-content: center;
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  font-weight: 400;
  gap: 0.875rem;
  min-height: 3.25rem;
}

.release-detail-buttons .platform-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.release-detail-buttons .platform-name {
  font-weight: 700;
}

.release-detail-empty {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
}

.release-detail-error {
  text-align: center;
  padding: 3rem 0;
  color: rgba(255, 255, 255, 0.55);
}

.release-detail-error-btn {
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .release-page {
    max-width: 28rem;
    padding: 1.5rem 0 3.5rem;
  }

  .release-detail-cover-wrap {
    max-width: 24rem;
  }

  .release-detail-buttons .platform-btn {
    font-size: 1.0625rem;
    padding: 1rem 1.25rem;
    min-height: 3.5rem;
    gap: 1rem;
  }

  .release-detail-buttons .platform-icon {
    width: 1.6875rem;
    height: 1.6875rem;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  background: #fff;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

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

.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-danger {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-danger:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-ghost {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.alert {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.alert-success {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.alert-error {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
}

.alert-info {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #000;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 2rem;
  width: auto;
  opacity: 0.55;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: #fff;
}

.footer-social-svg {
  width: 1.35rem;
  height: 1.35rem;
}

@media (min-width: 640px) {
  .footer-logo {
    height: 2.25rem;
  }

  .footer-social {
    gap: 1.75rem;
    margin-top: 1.75rem;
  }

  .footer-social-link {
    font-size: 1.5rem;
  }

  .footer-social-svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.admin-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.admin-release-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.admin-release-wrap:last-child .admin-release-item,
.admin-release-wrap:last-child .admin-edit-form {
  border-bottom: none;
}

.admin-release-wrap.is-editing .admin-release-item {
  border-bottom: none;
}

.admin-release-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

.admin-edit-btn,
.admin-delete-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.admin-edit-btn {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.admin-edit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-delete-btn {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.admin-delete-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-edit-form {
  padding: 0 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
}

.admin-edit-form.hidden {
  display: none;
}

.admin-edit-fields {
  display: grid;
  gap: 0.875rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.admin-edit-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.admin-edit-actions .btn-primary,
.admin-edit-actions .btn-ghost {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
}

.mfa-code-input {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-align: center;
}

.admin-release-thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  object-fit: cover;
  background: #111;
  flex-shrink: 0;
}

.admin-release-thumb-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.section-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.page-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.prose-muted {
  color: var(--text-muted);
  line-height: 1.7;
}

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

.file-input-btn::file-selector-button {
  margin-right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

/* About page */
.about-page {
  color: rgba(255, 255, 255, 0.68);
}

.about-section + .about-section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.about-heading {
  font-size: clamp(1.625rem, 4vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-figure {
  margin: 0 0 1.75rem;
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.about-prose {
  font-size: 1rem;
  line-height: 1.75;
}

.about-prose p + p {
  margin-top: 1rem;
}

.about-closing {
  margin-top: 1.75rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin: 3rem 0;
}

.about-stat {
  text-align: center;
  padding: 1.25rem 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.about-stat-value {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.about-stat-label {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

@media (min-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .about-stat {
    padding: 1.375rem 1rem;
  }

  .about-prose {
    font-size: 1.0625rem;
  }
}

.about-subheading {
  margin-top: 2rem;
  margin-bottom: 0.875rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
}

.about-subheading-allowed {
  color: #60a5fa;
}

.about-subheading-prohibited {
  color: #f87171;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.375rem;
  margin-bottom: 0.875rem;
  line-height: 1.65;
  font-size: 0.9875rem;
  color: rgba(255, 255, 255, 0.68);
}

.about-list li strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-list-allowed li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #60a5fa;
  font-weight: 700;
}

.about-list-prohibited li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 0;
  color: #f87171;
  font-weight: 700;
}

.about-note {
  margin-top: 2rem;
  padding: 1.125rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 0.5rem 0.5rem 0;
}

.about-note-title {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.about-note p:last-child {
  margin: 0;
  line-height: 1.65;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.68);
}

.about-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.about-link:hover {
  opacity: 0.75;
}

.about-faq .about-heading {
  margin-bottom: 0.5rem;
}

.faq-list {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.125rem 0;
  font-size: 0.9875rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  margin-top: 0.05rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: rgba(255, 255, 255, 0.85);
}

.faq-answer {
  padding-bottom: 1.125rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 639px) {
  .faq-item summary {
    font-size: 1rem;
    padding: 1.25rem 0;
  }

  .faq-answer p {
    font-size: 0.9875rem;
  }
}

/* Legal / Disclaimer page */
.legal-page {
  color: rgba(255, 255, 255, 0.68);
}

.legal-heading {
  font-size: clamp(1.625rem, 4vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}

.legal-intro {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.legal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-section-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.875rem;
  line-height: 1.35;
}

.legal-section p {
  font-size: 0.9875rem;
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  margin: 0.875rem 0;
  padding: 0;
}

.legal-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.625rem;
  font-size: 0.9875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
}

.legal-list li strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.legal-list-prohibited li::before {
  content: '×';
  color: #f87171;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.footer-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
  .footer-nav {
    margin-top: 1.5rem;
  }
}

.footer-disclaimer-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-disclaimer-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 640px) {
  .legal-intro,
  .legal-section p,
  .legal-list li {
    font-size: 1.0625rem;
  }
}

/* Artists page */
.artists-header {
  margin-bottom: 2.5rem;
}

.artists-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.artists-empty {
  text-align: center;
  padding: 3rem 0;
}

.artist-item {
  display: flex;
  flex-direction: column;
}

.artist-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
}

@media (min-width: 640px) {
  .artist-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.artist-photo-wrap {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-photo.hidden {
  display: none;
}

.artist-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.artist-photo-fallback.hidden {
  display: none;
}

.artist-body {
  flex: 1;
  min-width: 0;
}

.artist-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.625rem;
}

.artist-bio {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0;
}

.artist-body:has(.artist-platform-icons) .artist-bio {
  margin-bottom: 1rem;
}

.artist-platform-icons {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.artist-platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.artist-platform-icon:hover {
  transform: translateY(-1px);
}

.artist-platform-icon.platform-spotify:hover {
  color: #1db954;
}

.artist-platform-icon.platform-apple:hover {
  color: #fa243c;
}

.artist-platform-icon.platform-ytm:hover {
  color: #ff0000;
}

.artist-platform-svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 640px) {
  .artist-platform-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .artist-platform-svg {
    width: 1.625rem;
    height: 1.625rem;
  }
}
