:root {
  color-scheme: dark;
  --page: #0f0f0f;
  --surface: #181818;
  --surface-2: #222;
  --paper: #f1f1f1;
  --paper-soft: #dedede;
  --ink: #151515;
  --text: #f5f5f5;
  --muted: #ababab;
  --muted-dark: #686868;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(20, 20, 20, 0.15);
  --accent: #d4d4d4;
  --accent-dark: #8a8a8a;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 255, 255, 0.1), transparent 32rem),
    var(--page);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

main img:not(.youtube-preview img) {
  cursor: zoom-in;
}

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
}

.brand > span:last-child {
  min-width: 0;
  display: grid;
}

.brand strong {
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: #dadada;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  padding: 25px 0 22px;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.menu-toggle {
  display: none;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.release-section {
  padding: clamp(42px, 7vw, 86px) 18px clamp(70px, 9vw, 112px);
}

.release-layout {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(250px, 350px) minmax(320px, 1fr) minmax(190px, 230px);
  align-items: start;
  gap: clamp(28px, 4vw, 54px);
  margin: 0 auto;
}

.cover-column {
  min-width: 0;
  margin: 0;
}

.cover-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f7;
  transition: transform 700ms ease;
}

.cover-frame:hover img {
  transform: scale(1.035);
}

.cover-column figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-info {
  min-width: 0;
}

.overline {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 6px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.byline {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.byline a,
.text-link {
  color: var(--accent);
}

.release-description {
  max-width: 580px;
  margin-bottom: 27px;
  color: #d0d0d0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.55;
}

.player {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 16px;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.player-controls {
  display: grid;
  grid-template-columns: repeat(2, 40px);
  gap: 6px;
}

.audio-control {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--text);
  background: #292929;
  cursor: pointer;
}

.audio-control:hover,
.audio-control.is-active {
  color: var(--ink);
  background: var(--accent);
}

.play-control {
  color: var(--ink);
  background: var(--accent);
}

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

.pause-icon {
  width: 13px;
  height: 15px;
  background: linear-gradient(90deg, currentColor 0 4px, transparent 4px 9px, currentColor 9px 13px);
}

.volume-control {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.player-main {
  min-width: 0;
  align-self: center;
}

.now-playing {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 750;
}

#nowPlaying {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#playerTime {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.player-meta {
  flex: 0 0 auto;
  display: inline-flex;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

#volumeLevel {
  min-width: 54px;
  text-align: right;
}

.progress-track {
  width: 100%;
  height: 5px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #383838;
  cursor: pointer;
}

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

.player-note {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.track-list li {
  border-bottom: 1px solid var(--line);
}

.track-button {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px 8px;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.track-button:hover,
.track-button.is-active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.035);
}

.track-number,
.track-button time {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.track-button time {
  align-self: center;
}

.youtube-sample {
  margin-top: 16px;
  padding: 13px;
  border-radius: 20px;
  background: #f5f5f7;
}

.sample-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 3px 12px;
}

.sample-heading > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.sample-heading span {
  color: #86868b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-heading strong {
  color: #1d1d1f;
  font-size: 13px;
}

.sample-heading a {
  flex: 0 0 auto;
  color: #515154;
  font-size: 11px;
  font-weight: 700;
}

.sample-heading a:hover {
  color: #000;
}

.sample-heading a span {
  margin-left: 3px;
  color: inherit;
  font-size: inherit;
  letter-spacing: 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #1d1d1f;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: #fff;
  background: #111;
  cursor: pointer;
}

.youtube-preview img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 134%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter: contrast(1.06);
}

.youtube-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58));
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 62px;
  height: 44px;
  border-radius: 14px;
  background: rgba(29, 29, 31, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.youtube-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
  transform: translate(-50%, -50%);
}

.youtube-label {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
}

.youtube-preview:hover .youtube-play {
  background: #000;
  transform: translate(-50%, -50%) scale(1.06);
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent);
}

.button-ghost {
  background: transparent;
}

.button:hover {
  filter: brightness(1.08);
}

.action-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.artist-card {
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.artist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--paper);
}

.artist-card h2 {
  margin: 17px 0 8px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 27px;
  font-weight: 500;
}

.artist-card > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.artist-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.artist-links a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: #dadada;
  font-size: 12px;
  font-weight: 700;
}

.artist-links a:hover {
  color: var(--accent);
}

.content-section {
  padding: clamp(72px, 9vw, 120px) 18px;
  color: var(--ink);
  background: var(--paper);
}

.archive-section {
  background: var(--paper-soft);
}

.section-heading {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  align-items: end;
  gap: 40px;
  margin: 0 auto 42px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(43px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p {
  margin-bottom: 2px;
  color: var(--muted-dark);
  font-size: 15px;
}

.release-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
  margin: 0 auto;
}

.release-card {
  min-width: 0;
}

.art-link {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #d0d0d0;
}

.art-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.art-link-contain img,
.archive-item-contain img {
  object-fit: contain;
  background: #f5f5f7;
}

.art-overlay {
  position: absolute;
  inset: auto 10px 10px auto;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(7px);
  text-transform: uppercase;
  transition: opacity 250ms ease, transform 250ms ease;
}

.art-link:hover img {
  transform: scale(1.035);
}

.art-link:hover .art-overlay {
  opacity: 1;
  transform: translateY(0);
}

.release-card h3 {
  margin: 14px 0 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
}

.release-card p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.archive-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.archive-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #c9c9c9;
}

.archive-item-wide {
  grid-column: span 2;
}

.archive-item-tall {
  grid-row: span 2;
}

.archive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.archive-item:hover img {
  transform: scale(1.025);
}

.archive-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 16px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-size: 13px;
  font-weight: 700;
}

.archive-item figcaption span {
  margin-right: 8px;
  color: var(--accent);
  font-size: 10px;
}

.about-section {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 8vw, 110px);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 0;
}

.about-number {
  align-self: start;
  color: var(--accent);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(190px, 28vw, 350px);
  line-height: 0.72;
  opacity: 0.92;
}

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

.about-copy h2 {
  margin-bottom: 30px;
}

.about-copy > p:not(.overline) {
  color: #c4c4c4;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 14px;
  font-weight: 800;
}

.contact-section {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
  margin: 0 auto clamp(70px, 9vw, 110px);
  padding: clamp(34px, 6vw, 70px);
  color: var(--ink);
  background: var(--accent);
}

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

.contact-copy .overline {
  color: rgba(21, 21, 21, 0.68);
}

.contact-copy p:last-child {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(21, 21, 21, 0.72);
}

.contact-card {
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(21, 21, 21, 0.25);
  background: rgba(255, 255, 255, 0.22);
}

.contact-card span,
.contact-card small {
  color: rgba(21, 21, 21, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a {
  min-width: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(23px, 3.4vw, 43px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-panel {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.pinterest-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pinterest-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.pinterest-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1d1d1f;
  background: #fff;
  font-size: 21px;
  font-weight: 800;
}

.pinterest-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.pinterest-copy small {
  color: #a1a1a6;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pinterest-copy strong {
  color: #fff;
  font-size: 15px;
}

.pinterest-arrow {
  color: #a1a1a6;
  font-size: 16px;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer-brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a:hover {
  color: var(--accent);
}

.site-footer p {
  justify-self: end;
  margin: 0;
}

.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: clamp(20px, 5vw, 56px);
  border: 0;
  color: #fff;
  background: rgba(12, 12, 13, 0.88);
  overflow: hidden;
  backdrop-filter: blur(26px) saturate(120%);
  -webkit-backdrop-filter: blur(26px) saturate(120%);
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
  animation: lightboxFade 180ms ease both;
}

.image-lightbox::backdrop {
  background: rgba(12, 12, 13, 0.72);
}

.image-lightbox figure {
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: grid;
  place-items: center;
  gap: 13px;
  margin: 0;
}

.image-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.image-lightbox figcaption {
  max-width: 720px;
  margin: 0;
  color: #d2d2d7;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

body.has-lightbox {
  overflow: hidden;
}

@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 980px) {
  .release-layout {
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  }

  .artist-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(190px, 0.8fr);
    gap: 22px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .artist-card img {
    grid-row: span 2;
  }

  .artist-card h2 {
    align-self: end;
    margin: 0;
  }

  .artist-card > p {
    margin: 0;
  }

  .artist-links {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 64px;
  }

  .header-inner {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: 64px 0 auto;
    display: none;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 15, 15, 0.98);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .cover-column {
    width: min(100%, 440px);
    margin: 0 auto;
  }

  .release-info {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(51px, 16vw, 76px);
  }

  .artist-card {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .artist-links {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .section-heading,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .archive-grid {
    grid-auto-rows: 220px;
    grid-template-columns: 1fr 1fr;
  }

  .archive-item-wide {
    grid-column: span 2;
  }

  .about-number {
    display: none;
  }

  .contact-section {
    gap: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .site-footer p {
    justify-self: start;
  }
}

/* Final typographic contrast */
:root {
  --text-primary: #171719;
  --text-secondary: #3f3f43;
  --text-tertiary: #5c5c61;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #d2d2d7;
}

body {
  color: var(--text-primary);
}

.site-header,
.release-layout,
.about-section,
.game-section,
.comments-section,
.chat-section,
.contact-section {
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 240, 244, 0.72));
}

.content-section,
.archive-section {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.84);
}

.brand strong,
.main-nav a,
.menu-toggle,
.release-info h1,
.artist-card h2,
.section-heading h2,
.release-card h3,
.about-copy h2,
.game-heading h2,
.game-panel h3,
.comments-heading h2,
.chat-heading h2,
.contact-copy h2,
.comment-form-heading strong,
.comments-feed-heading strong,
.chat-identity strong,
.footer-brand {
  color: var(--text-primary);
}

.main-nav a {
  font-weight: 700;
}

.brand small,
.overline,
.byline,
.player-note,
.track-number,
.track-button time,
.release-card > p,
.archive-item figcaption span,
.game-kicker,
.game-stats span,
.comment-form-heading span,
.comments-feed-heading span,
.comment-form label > span,
#commentCharacters,
.comment-status,
.comment-item time,
.chat-identity small,
.chat-name-panel label,
.chat-status,
.site-footer,
.footer-nav a {
  color: var(--text-tertiary);
}

.overline {
  font-size: max(11px, 0.72rem);
  font-weight: 800;
}

.release-description,
.artist-card > p,
.artist-links a,
.section-heading > p,
.about-copy > p:not(.overline),
.game-heading > p,
.game-panel > p,
.game-status,
.comments-heading > p,
.comment-item p,
.chat-heading > p,
.chat-empty {
  color: var(--text-secondary) !important;
}

.release-description,
.section-heading > p,
.about-copy > p:not(.overline),
.game-heading > p,
.comments-heading > p,
.chat-heading > p {
  font-weight: 500;
}

.player,
.track-button,
.youtube-sample,
.artist-card,
.comment-form,
.comments-feed,
.comment-item,
.contact-card,
.pinterest-link {
  color: var(--text-primary);
}

.comment-form input,
.comment-form textarea,
.chat-name-panel input,
.chat-form textarea {
  color: var(--text-primary);
  caret-color: var(--text-primary);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder,
.chat-name-panel input::placeholder,
.chat-form textarea::placeholder {
  color: #68686d;
  opacity: 1;
}

.contact-section {
  color: var(--text-primary);
}

.contact-copy .overline,
.contact-copy p:last-child,
.contact-card span,
.contact-card small,
.pinterest-copy small,
.pinterest-arrow {
  color: var(--text-secondary);
}

.contact-copy h2,
.contact-card a,
.pinterest-copy strong {
  color: var(--text-primary);
}

.contact-card,
.pinterest-link {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 238, 242, 0.82));
}

.contact-card a {
  text-decoration-color: rgba(23, 23, 25, 0.34);
  text-underline-offset: 5px;
}

.contact-card a:focus-visible,
.pinterest-link:focus-visible,
.main-nav a:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid var(--text-primary);
  outline-offset: 4px;
}

.memory-stage {
  color: var(--text-on-dark);
}

.memory-stage-top,
.memory-hint {
  color: var(--text-on-dark-muted);
}

.game-start,
.comment-submit,
.chat-name-panel button,
.chat-form button,
.button-primary,
.image-like-button.is-liked,
.chat-message.is-visitor {
  color: var(--text-on-dark);
}

.archive-item figcaption,
.art-overlay,
.youtube-label,
.lightbox-caption {
  color: var(--text-on-dark);
}

.site-footer,
.footer-nav a {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.72);
}

.footer-brand,
.footer-nav a:hover {
  color: #fff;
}

/* Chat privado lateral */
.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 23, 25, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  transition: transform 180ms ease, background 180ms ease;
}

.chat-launcher:hover {
  background: #000;
  transform: translateY(-2px);
}

.chat-launcher-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(23, 23, 25, 0.08),
    0 3px 10px rgba(0, 0, 0, 0.16);
}

.chat-launcher-mark > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #171719;
}

.chat-launcher > span:last-child {
  display: grid;
  gap: 1px;
  text-align: left;
}

.chat-launcher strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.chat-launcher small {
  color: #d2d2d7;
  font-size: 9px;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 119;
  width: min(410px, calc(100vw - 28px));
  max-height: calc(100dvh - 112px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 220ms ease, visibility 220ms;
}

.chat-widget.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.chat-widget .chat-card {
  width: 100%;
  max-height: calc(100dvh - 112px);
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 27px;
  background: rgba(245, 245, 247, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
}

.chat-widget .chat-topbar {
  flex: 0 0 auto;
  padding: 13px 14px;
}

.chat-topbar-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.chat-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #171719;
  background: #ececee;
  font: inherit;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.chat-close:hover {
  background: #dddde0;
}

.chat-widget .chat-name-panel {
  flex: 0 0 auto;
}

.chat-name-panel > p {
  margin: -1px 0 11px;
  color: #5c5c61;
  font-size: 10px;
  line-height: 1.45;
}

.chat-widget .chat-messages {
  min-height: 230px;
  flex: 1 1 310px;
  max-height: none;
}

.chat-widget .chat-form,
.chat-widget .chat-status,
.chat-session-actions {
  flex: 0 0 auto;
}

.chat-session-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
}

.chat-session-actions span {
  max-width: 220px;
  color: #68686d;
  font-size: 8px;
  line-height: 1.4;
}

.chat-session-actions button {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  color: #3f3f43;
  background: #f5f5f7;
  font: inherit;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.chat-session-actions button:hover {
  color: #fff;
  background: #171719;
}

.chat-session-actions button[hidden] {
  display: none;
}

@media (max-width: 560px) {
  .chat-launcher {
    right: 12px;
    bottom: 12px;
    min-height: 54px;
    padding-right: 15px;
  }

  .chat-launcher-mark {
    width: 38px;
    height: 38px;
  }

  .chat-widget {
    right: 8px;
    bottom: 76px;
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 88px);
  }

  .chat-widget .chat-card {
    max-height: calc(100dvh - 88px);
    border-radius: 23px;
  }

  .chat-widget .chat-messages {
    min-height: 190px;
  }

  .chat-session-actions span {
    max-width: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-widget,
  .chat-launcher {
    transition: none;
  }
}

/* White footer */
.site-footer,
.site-footer p,
.footer-brand,
.footer-nav a,
.footer-nav a:hover {
  color: #fff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.72);
}

@media (max-width: 720px) {
  .site-header,
  .release-layout,
  .about-section,
  .game-section,
  .comments-section,
  .chat-section,
  .contact-section {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 240, 244, 0.8));
  }
}

/* Mini-game: Echo of Memory */
.game-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(70px, 9vw, 110px);
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  color: #1d1d1f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(235, 235, 240, 0.4));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 20px 56px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
  -webkit-backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
}

.game-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.65fr);
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.game-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.game-heading > p {
  margin: 0;
  color: #515154;
  font-size: 16px;
  line-height: 1.6;
}

.game-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(320px, 1.28fr);
  gap: 14px;
}

.game-panel,
.memory-stage {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
}

.game-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(247, 247, 249, 0.78);
  box-shadow: inset 0 1px 0 #fff;
}

.game-kicker {
  color: #86868b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.game-panel h3 {
  margin: 28px 0 12px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.game-panel > p {
  margin: 0;
  color: #515154;
  font-size: 14px;
  line-height: 1.6;
}

.game-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto 0 24px;
  padding-top: 34px;
}

.game-stats div {
  display: grid;
  gap: 3px;
  padding: 0 14px;
  border-left: 1px solid rgba(29, 29, 31, 0.14);
}

.game-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.game-stats span {
  color: #86868b;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.game-stats strong {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.game-actions {
  display: flex;
  gap: 9px;
}

.game-actions button {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.game-actions button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.game-start {
  color: #fff;
  background: #1d1d1f;
}

.game-start:disabled {
  opacity: 0.48;
  cursor: wait;
}

.game-reset {
  color: #1d1d1f;
  background: rgba(29, 29, 31, 0.08);
}

.game-status {
  min-height: 38px;
  margin-top: 18px !important;
  color: #515154 !important;
  font-size: 12px !important;
}

.memory-stage {
  padding: clamp(20px, 3.6vw, 34px);
  color: #f5f5f7;
  background: #1d1d1f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 14px 34px rgba(0, 0, 0, 0.16);
}

.memory-stage-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: #a1a1a6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.memory-board {
  --memory-grid-size: 3;
  display: grid;
  grid-template-columns: repeat(var(--memory-grid-size), 1fr);
  gap: clamp(7px, 1.2vw, 12px);
  aspect-ratio: 1;
  max-width: 560px;
  margin: 0 auto;
}

.memory-cell {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(12px, 2.2vw, 22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 7px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition:
    transform 120ms ease,
    background 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.memory-cell::after {
  content: "";
  position: absolute;
  inset: 43%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: inset 150ms ease, background 150ms ease;
}

.memory-cell:disabled {
  cursor: default;
}

.memory-cell:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.memory-cell.is-lit,
.memory-cell.is-pressed {
  border-color: rgba(255, 255, 255, 0.94);
  background: #f5f5f7;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45),
    0 0 35px rgba(255, 255, 255, 0.42);
  transform: scale(0.96);
}

.memory-cell.is-lit::after,
.memory-cell.is-pressed::after {
  inset: 17%;
  background: #1d1d1f;
}

.memory-cell.is-wrong {
  border-color: #6e6e73;
  background: repeating-linear-gradient(135deg, #f5f5f7 0 8px, #1d1d1f 8px 16px);
}

.memory-board.is-success .memory-cell {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.14);
}

.memory-hint {
  margin: 18px 0 0;
  color: #86868b;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 820px) {
  .game-heading,
  .game-shell {
    grid-template-columns: 1fr;
  }

  .game-heading {
    gap: 18px;
  }

  .game-stats {
    margin-top: 10px;
  }
}

@media (max-width: 460px) {
  .game-section {
    width: calc(100% - 20px);
    padding: 30px 18px;
    border-radius: 26px;
  }

  .game-panel,
  .memory-stage {
    border-radius: 20px;
  }

  .game-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .memory-cell,
  .memory-cell::after,
  .game-actions button {
    transition: none;
  }
}

/* Mantener reproductor y YouTube sin transparencia */
.player,
.track-button,
.youtube-sample {
  border-color: rgba(0, 0, 0, 0.08) !important;
  background: #f5f5f7 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Solid players */
.player,
.track-button,
.youtube-sample {
  border-color: rgba(0, 0, 0, 0.08);
  background: #f5f5f7;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.video-frame {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #111;
}

/* Chat privado */
.chat-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(70px, 9vw, 110px);
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  color: #1d1d1f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(235, 235, 240, 0.4));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 20px 56px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
  -webkit-backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
}

.chat-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-heading h2 {
  margin: 0;
  font-size: clamp(43px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.chat-heading > p {
  margin: 0 0 2px;
  color: #515154;
}

.chat-card {
  width: min(760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 25px;
  background: #f5f5f7;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.1);
}

.chat-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.chat-identity {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #1d1d1f;
  font-weight: 800;
}

.chat-identity > span:last-child {
  display: grid;
}

.chat-identity strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.chat-identity small {
  color: #86868b;
  font-size: 10px;
}

.chat-lock {
  padding: 6px 10px;
  border-radius: 999px;
  color: #515154;
  background: #ececee;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-name-panel {
  padding: 15px 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.chat-name-panel[hidden] {
  display: none;
}

.chat-name-panel label {
  display: block;
  margin-bottom: 7px;
  color: #6e6e73;
  font-size: 11px;
  font-weight: 700;
}

.chat-name-panel > div {
  display: flex;
  gap: 8px;
}

.chat-name-panel input,
.chat-form textarea {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 13px;
  padding: 11px 13px;
  outline: 0;
  color: #1d1d1f;
  background: #fff;
  font: inherit;
}

.chat-name-panel button,
.chat-form button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: #1d1d1f;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.chat-name-panel button:hover,
.chat-form button:hover {
  background: #000;
}

.chat-form button:disabled,
.chat-form textarea:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.chat-messages {
  min-height: 250px;
  max-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow-y: auto;
  padding: 22px 17px;
}

.chat-empty {
  margin: auto;
  color: #86868b;
  font-size: 12px;
  text-align: center;
}

.chat-message {
  max-width: min(78%, 500px);
  padding: 10px 13px;
  border-radius: 17px;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.chat-message p {
  margin: 0;
}

.chat-message time {
  display: block;
  margin-top: 4px;
  font-size: 8px;
  opacity: 0.62;
}

.chat-message.is-visitor {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  color: #fff;
  background: #1d1d1f;
}

.chat-message.is-owner {
  align-self: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom-left-radius: 5px;
  color: #1d1d1f;
  background: #fff;
}

.chat-form {
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 13px 17px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.chat-form textarea {
  resize: none;
}

.chat-form button {
  min-height: 42px;
}

.chat-status {
  min-height: 20px;
  margin: 0;
  padding: 0 17px 11px;
  color: #6e6e73;
  background: #fff;
  font-size: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 720px) {
  .chat-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 460px) {
  .chat-section {
    width: calc(100% - 20px);
    padding: 30px 18px;
    border-radius: 26px;
  }

  .chat-name-panel > div {
    display: grid;
  }

  .chat-name-panel button {
    min-height: 40px;
  }

  .chat-message {
    max-width: 88%;
  }
}

/* Acabado satinado definitivo */
.site-header,
.release-layout,
.about-section,
.comments-section,
.content-section,
.archive-section,
.player,
.track-button,
.youtube-sample,
.artist-card,
.comment-form,
.comments-feed,
.comment-item,
.contact-section,
.contact-card,
.pinterest-link {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(235, 235, 240, 0.4));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 20px 56px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
  -webkit-backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
}

.content-section,
.archive-section {
  border-right: 0;
  border-left: 0;
}

@media (max-width: 720px) {
  .site-header,
  .release-layout,
  .about-section,
  .comments-section,
  .content-section,
  .archive-section,
  .player,
  .track-button,
  .youtube-sample,
  .artist-card,
  .comment-form,
  .comments-feed,
  .comment-item,
  .contact-section,
  .contact-card,
  .pinterest-link {
    backdrop-filter: blur(30px) saturate(128%) brightness(1.04);
    -webkit-backdrop-filter: blur(30px) saturate(128%) brightness(1.04);
  }
}

/* Final contrast: keep as the last block */
body {
  color: var(--text-primary);
}

.site-header,
.release-layout,
.about-section,
.game-section,
.comments-section,
.chat-section,
.contact-section {
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 240, 244, 0.72));
}

.content-section,
.archive-section {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.84);
}

.brand strong,
.main-nav a,
.menu-toggle,
.release-info h1,
.artist-card h2,
.section-heading h2,
.release-card h3,
.about-copy h2,
.game-heading h2,
.game-panel h3,
.comments-heading h2,
.chat-heading h2,
.contact-copy h2,
.comment-form-heading strong,
.comments-feed-heading strong,
.chat-identity strong,
.footer-brand {
  color: var(--text-primary);
}

.main-nav a {
  font-weight: 700;
}

.brand small,
.overline,
.byline,
.player-note,
.track-number,
.track-button time,
.release-card > p,
.game-kicker,
.game-stats span,
.comment-form-heading span,
.comments-feed-heading span,
.comment-form label > span,
#commentCharacters,
.comment-status,
.comment-item time,
.chat-identity small,
.chat-name-panel label,
.chat-status {
  color: var(--text-tertiary);
}

.release-description,
.artist-card > p,
.artist-links a,
.section-heading > p,
.about-copy > p:not(.overline),
.game-heading > p,
.game-panel > p,
.game-status,
.comments-heading > p,
.comment-item p,
.chat-heading > p,
.chat-empty {
  color: var(--text-secondary) !important;
}

.release-description,
.section-heading > p,
.about-copy > p:not(.overline),
.game-heading > p,
.comments-heading > p,
.chat-heading > p {
  font-weight: 500;
}

.contact-section,
.contact-copy h2,
.contact-card,
.contact-card a,
.pinterest-link,
.pinterest-copy strong {
  color: var(--text-primary);
}

.contact-copy .overline,
.contact-copy p:last-child,
.contact-card span,
.contact-card small,
.pinterest-copy small,
.pinterest-arrow {
  color: var(--text-secondary);
}

.contact-card,
.pinterest-link {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 238, 242, 0.82));
}

.comment-form input,
.comment-form textarea,
.chat-name-panel input,
.chat-form textarea {
  color: var(--text-primary);
  caret-color: var(--text-primary);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder,
.chat-name-panel input::placeholder,
.chat-form textarea::placeholder {
  color: #68686d;
  opacity: 1;
}

.memory-stage {
  color: var(--text-on-dark);
}

.memory-stage-top,
.memory-hint {
  color: var(--text-on-dark-muted);
}

.game-start,
.comment-submit,
.chat-name-panel button,
.chat-form button,
.button-primary,
.image-like-button.is-liked,
.chat-message.is-visitor,
.archive-item figcaption,
.art-overlay,
.youtube-label,
.lightbox-caption {
  color: var(--text-on-dark);
}

.site-footer,
.footer-nav a {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.72);
}

.site-footer p,
.footer-brand,
.footer-nav a:hover {
  color: #fff;
}

/* Stronger text contrast for image/work pages */
.seo-page .work-hero-copy h1,
.seo-page .work-body h2,
.seo-page .press-section h2,
.seo-page .footer-brand {
  color: #34363b !important;
  font-weight: 800 !important;
}

.seo-page .work-hero-copy .summary,
.seo-page .work-body p,
.seo-page .press-section p,
.seo-page .press-section li,
.seo-page .work-side-panel,
.seo-page .related-links a {
  color: #4b4d52 !important;
  font-weight: 700 !important;
}

.seo-page .overline,
.seo-page .work-meta li,
.seo-page .main-nav a,
.seo-page .brand small {
  color: #5d6066 !important;
  font-weight: 800 !important;
}

.seo-page .work-meta li {
  background: rgba(255, 255, 255, 0.52) !important;
  border-color: rgba(52, 54, 59, 0.18) !important;
}

/* Glass intensity boost: about 20% clearer and more dimensional */
.site-header {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(232, 235, 242, 0.22)) !important;
  border-color: rgba(255, 255, 255, 0.78) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(255, 255, 255, 0.36),
    0 18px 52px rgba(20, 20, 25, 0.16) !important;
  backdrop-filter: blur(42px) saturate(190%) brightness(1.08) !important;
  -webkit-backdrop-filter: blur(42px) saturate(190%) brightness(1.08) !important;
}

.work-hero,
.release-layout,
.about-section,
.game-section,
.comments-section,
.contact-section,
.work-body article,
.work-side-panel,
.press-section,
.player,
.track-button,
.youtube-sample,
.artist-card,
.comment-form,
.comments-feed,
.comment-item,
.contact-card,
.pinterest-link {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(242, 244, 249, 0.32)) !important;
  border-color: rgba(255, 255, 255, 0.76) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.34),
    0 28px 78px rgba(20, 20, 25, 0.14) !important;
  backdrop-filter: blur(38px) saturate(180%) brightness(1.07) !important;
  -webkit-backdrop-filter: blur(38px) saturate(180%) brightness(1.07) !important;
}

.content-section,
.archive-section {
  background: rgba(255, 255, 255, 0.44) !important;
  backdrop-filter: blur(32px) saturate(168%) brightness(1.06) !important;
  -webkit-backdrop-filter: blur(32px) saturate(168%) brightness(1.06) !important;
}

.cover-frame,
.art-link,
.archive-item,
.work-hero-media img {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 24px 72px rgba(20, 20, 25, 0.18) !important;
}

@media (max-width: 720px) {
  .site-header {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(232, 235, 242, 0.34)) !important;
    backdrop-filter: blur(36px) saturate(175%) brightness(1.07) !important;
    -webkit-backdrop-filter: blur(36px) saturate(175%) brightness(1.07) !important;
  }

  .work-hero,
  .release-layout,
  .about-section,
  .game-section,
  .comments-section,
  .contact-section,
  .work-body article,
  .work-side-panel,
  .press-section {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(242, 244, 249, 0.42)) !important;
  }
}

/* Final liquid-glass polish and page-entry fix */
html {
  scroll-padding-top: 104px;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(246, 246, 248, 0.72), rgba(230, 232, 238, 0.42)),
    url("assets/imagenes/fondo-abstracto.jpeg") center / cover fixed,
    #f5f5f7;
}

body::before {
  display: none;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 1000;
  width: min(980px, calc(100% - 24px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3),
    0 14px 42px rgba(20, 20, 25, 0.12);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  transform: translateZ(0);
}

.header-inner {
  min-height: 58px;
  padding: 0 14px;
}

.main-nav a {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
}

.main-nav a:hover {
  border: 0;
  background: rgba(255, 255, 255, 0.42);
}

.release-section {
  padding-top: clamp(72px, 8vw, 112px);
}

.seo-main {
  padding-top: clamp(112px, 11vw, 150px);
}

.work-hero,
.release-layout,
.about-section,
.game-section,
.comments-section,
.contact-section,
.work-body article,
.work-side-panel,
.press-section,
.player,
.track-button,
.youtube-sample,
.artist-card,
.comment-form,
.comments-feed,
.comment-item,
.contact-card,
.pinterest-link {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(245, 246, 250, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -1px 0 rgba(255, 255, 255, 0.26),
    0 24px 70px rgba(20, 20, 25, 0.12);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
}

.work-hero,
.release-layout,
.about-section,
.game-section,
.comments-section,
.contact-section {
  border-radius: 34px;
}

.work-hero {
  padding: clamp(22px, 4vw, 46px);
}

.work-body article,
.work-side-panel,
.press-section {
  border-radius: 26px;
}

.content-section,
.archive-section {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px) saturate(138%);
  -webkit-backdrop-filter: blur(24px) saturate(138%);
}

.cover-frame,
.art-link,
.archive-item,
.work-hero-media img {
  border-radius: 24px;
}

.work-hero-copy h1,
.work-hero-copy .summary,
.work-meta li {
  color: #171719;
}

.work-meta li {
  border-color: rgba(23, 23, 25, 0.12);
  background: rgba(255, 255, 255, 0.38);
}

.work-body article,
.work-side-panel,
.press-section {
  color: #171719;
}

.work-body p,
.press-section p,
.press-section li {
  color: #3f3f43;
}

.work-hero-media img {
  box-shadow: 0 24px 68px rgba(20, 20, 25, 0.18);
}

.image-like-button {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .work-hero,
  .release-layout,
  .about-section,
  .game-section,
  .comments-section,
  .contact-section,
  .work-body article,
  .work-side-panel,
  .press-section {
    background: rgba(255, 255, 255, 0.94);
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 96px;
  }

  body {
    background:
      linear-gradient(180deg, rgba(246, 246, 248, 0.78), rgba(230, 232, 238, 0.48)),
      url("assets/imagenes/fondo-abstracto.jpeg") center top / auto 100vh scroll,
      #f5f5f7;
  }

  .site-header {
    top: 8px;
    width: min(100% - 16px, 680px);
    border-radius: 18px;
  }

  .release-section {
    padding-top: 74px;
  }

  .seo-main {
    padding-top: 94px;
  }

  .work-hero,
  .release-layout,
  .about-section,
  .game-section,
  .comments-section,
  .contact-section {
    border-radius: 26px;
  }
}

/* SEO work pages */
.seo-page {
  color: #111;
}

.seo-page .site-header {
  position: sticky;
}

.seo-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 72px;
}

.work-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 72vh;
}

.work-hero-media {
  margin: 0;
}

.work-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.work-hero-media.is-contain img {
  object-fit: contain;
  background: #0f0f0f;
}

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

.work-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.work-hero-copy .summary {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.work-meta li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 72px 0 32px;
}

.work-body article,
.work-side-panel,
.press-section {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: clamp(24px, 4vw, 44px);
}

.work-body h2,
.press-section h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.work-body p,
.press-section p,
.press-section li {
  color: rgba(17, 17, 17, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.work-side-panel {
  align-self: start;
  display: grid;
  gap: 16px;
}

.work-side-panel a,
.press-section a {
  color: #111;
  font-weight: 800;
}

.related-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.related-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  padding-top: 12px;
  text-decoration: none;
}

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

.press-section {
  margin-top: 24px;
}

@media (max-width: 820px) {
  .seo-main {
    width: min(100% - 24px, 680px);
    padding-top: 96px;
  }

  .work-hero,
  .work-body,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .work-hero {
    min-height: 0;
  }
}

/* Preserve the full new vertical works */
.archive-item.archive-item-contain img {
  object-fit: contain;
  background: #f5f5f7;
}

@media (max-width: 720px) {
  .site-header,
  .release-layout,
  .about-section,
  .game-section,
  .comments-section,
  .chat-section,
  .contact-section {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 240, 244, 0.8));
  }
}

/* Solid players: absolute priority */
.player,
.track-button,
.youtube-sample {
  border-color: rgba(0, 0, 0, 0.08);
  background: #f5f5f7;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
*** End of File

/* Solid players: this rule must stay at the end */
.player,
.track-button,
.youtube-sample {
  border-color: rgba(0, 0, 0, 0.08);
  background: #f5f5f7;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Mantener reproductor y YouTube sin transparencia (prioridad final) */
.player,
.track-button,
.youtube-sample {
  border-color: rgba(0, 0, 0, 0.08);
  background: #f5f5f7;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Todas las superficies comparten el vidrio de la cabecera */
:root {
  --nostalgia-glass:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(235, 235, 240, 0.4));
  --nostalgia-glass-border: rgba(255, 255, 255, 0.72);
  --nostalgia-glass-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 20px 56px rgba(0, 0, 0, 0.11);
}

.site-header,
.release-layout,
.about-section,
.comments-section,
.content-section,
.archive-section,
.player,
.track-button,
.youtube-sample,
.artist-card,
.comment-form,
.comments-feed,
.comment-item,
.contact-section,
.contact-card,
.pinterest-link {
  border-color: var(--nostalgia-glass-border);
  background: var(--nostalgia-glass);
  box-shadow: var(--nostalgia-glass-shadow);
  backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
  -webkit-backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
}

.content-section,
.archive-section {
  border-right: 0;
  border-left: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}

.contact-section,
.contact-copy h2,
.contact-card a,
.pinterest-link,
.pinterest-copy strong {
  color: #1d1d1f;
}

.contact-copy .overline,
.contact-copy p:last-child,
.contact-card span,
.contact-card small,
.pinterest-copy small,
.pinterest-arrow {
  color: #6e6e73;
}

.contact-card,
.pinterest-link {
  border: 1px solid var(--nostalgia-glass-border);
}

.pinterest-mark {
  color: #fff;
  background: #1d1d1f;
}

.comment-form input,
.comment-form textarea {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

@media (max-width: 720px) {
  .release-layout,
  .about-section,
  .comments-section {
    background: var(--nostalgia-glass);
    backdrop-filter: blur(30px) saturate(128%) brightness(1.04);
    -webkit-backdrop-filter: blur(30px) saturate(128%) brightness(1.04);
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .release-section {
    padding-top: 26px;
  }

  .player {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .player-controls {
    grid-template-columns: repeat(4, 42px);
  }

  .audio-control {
    width: 42px;
    height: 42px;
  }

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

  .archive-grid {
    grid-auto-rows: 300px;
  }

  .archive-item-wide {
    grid-column: auto;
  }

  .archive-item-tall {
    grid-row: auto;
  }

  .contact-section {
    width: 100%;
    margin-bottom: 60px;
    padding-inline: 18px;
  }

  .contact-card {
    padding: 19px;
  }
}

/* Superficies transparentes con acabado satinado */
.site-header {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(235, 235, 240, 0.38));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 38px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(30px) saturate(145%);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
}

.release-layout,
.about-section,
.comments-section {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(244, 244, 247, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 28px 80px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(34px) saturate(135%);
  -webkit-backdrop-filter: blur(34px) saturate(135%);
}

.content-section {
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(28px) saturate(130%);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
}

.archive-section {
  background: rgba(245, 245, 247, 0.54);
}

.player,
.track-button,
.youtube-sample,
.artist-card,
.comment-form,
.comments-feed {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(245, 245, 247, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.comment-form input,
.comment-form textarea,
.comment-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-section {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(135deg, rgba(29, 29, 31, 0.86), rgba(29, 29, 31, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 28px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(34px) saturate(115%);
  -webkit-backdrop-filter: blur(34px) saturate(115%);
}

.contact-card,
.pinterest-link {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (max-width: 720px) {
  .release-layout,
  .about-section,
  .comments-section {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(244, 244, 247, 0.52));
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Acabado limpio inspirado en el lenguaje visual de Apple */
:root {
  color-scheme: light;
  --page: #f5f5f7;
  --surface: #ffffff;
  --surface-2: #f0f0f2;
  --paper: #ffffff;
  --paper-soft: #f5f5f7;
  --ink: #1d1d1f;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --muted-dark: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --line-dark: rgba(0, 0, 0, 0.1);
  --accent: #1d1d1f;
  --accent-dark: #000000;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.09);
}

body {
  color: var(--ink);
  background:
    linear-gradient(rgba(245, 245, 247, 0.82), rgba(245, 245, 247, 0.82)),
    url("assets/imagenes/fondo-abstracto.jpeg") center / cover fixed,
    var(--page);
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  display: none;
}

:focus-visible {
  outline: 3px solid #707075;
  outline-offset: 3px;
}

.skip-link {
  color: #fff;
  background: #1d1d1f;
  border-radius: 12px;
}

.site-header {
  top: 10px;
  width: min(920px, calc(100% - 24px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(250, 250, 252, 0.76);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
}

.header-inner {
  width: 100%;
  min-height: 56px;
  padding: 0 13px;
}

.brand {
  gap: 9px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: #1d1d1f;
  font-size: 18px;
}

.brand strong {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.brand small {
  margin-top: 2px;
  color: #86868b;
  font-size: 8px;
}

.main-nav {
  gap: 4px;
  color: #515154;
  font-size: 12px;
  font-weight: 600;
}

.main-nav a {
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
}

.main-nav a:hover {
  color: #1d1d1f;
  border: 0;
  background: rgba(0, 0, 0, 0.055);
}

.menu-toggle {
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  color: #1d1d1f;
  background: rgba(0, 0, 0, 0.045);
  font-size: 12px;
  font-weight: 600;
}

.release-section {
  padding-top: clamp(58px, 8vw, 96px);
}

.release-layout {
  padding: clamp(22px, 3.8vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cover-frame {
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.cover-frame::after {
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: inherit;
}

.cover-column figcaption {
  color: #86868b;
  letter-spacing: 0.05em;
}

.overline {
  color: #86868b;
  font-size: 10px;
  letter-spacing: 0.14em;
}

h1 {
  color: #1d1d1f;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.byline {
  color: #86868b;
}

.byline a,
.text-link {
  color: #1d1d1f;
}

.release-description {
  color: #515154;
  font-size: 18px;
  line-height: 1.5;
}

.player {
  padding: 13px;
  border: 0;
  border-radius: 20px;
  background: #f5f5f7;
}

.player-controls {
  grid-template-columns: repeat(2, 38px);
  gap: 7px;
}

.audio-control {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #1d1d1f;
  background: #e5e5e7;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.audio-control:hover {
  color: #1d1d1f;
  background: #d6d6d8;
  transform: scale(1.05);
}

.audio-control:active {
  transform: scale(0.94);
}

.audio-control.is-active,
.play-control {
  color: #fff;
  background: #1d1d1f;
}

.audio-control.is-active:hover,
.play-control:hover {
  color: #fff;
  background: #000;
}

.now-playing {
  color: #1d1d1f;
  font-weight: 700;
}

.player-meta,
#playerTime {
  color: #86868b;
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: #d2d2d7;
}

.progress-track span {
  border-radius: inherit;
  background: #1d1d1f;
}

.player-note {
  color: #86868b;
}

.track-list {
  margin-top: 11px;
  border: 0;
}

.track-list li {
  border: 0;
}

.track-button {
  padding: 12px 14px;
  border-radius: 14px;
  color: #1d1d1f;
  background: #f5f5f7;
}

.track-button:hover,
.track-button.is-active {
  color: #1d1d1f;
  background: #ececee;
}

.track-number,
.track-button time {
  color: #86868b;
}

.release-actions {
  margin-top: 20px;
}

.button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}

.button-primary {
  border-color: #1d1d1f;
  color: #fff;
  background: #1d1d1f;
}

.button-ghost {
  border-color: transparent;
  color: #1d1d1f;
  background: #ececee;
}

.button:hover {
  filter: none;
  transform: translateY(-1px);
}

.action-status {
  color: #86868b;
}

.artist-card {
  padding: 18px;
  border: 0;
  border-radius: 24px;
  background: #f5f5f7;
}

.artist-card img {
  border-radius: 18px;
}

.artist-card h2 {
  color: #1d1d1f;
  font-weight: 700;
}

.artist-card > p {
  color: #6e6e73;
}

.artist-links {
  border-color: rgba(0, 0, 0, 0.08);
}

.artist-links a {
  border-color: rgba(0, 0, 0, 0.08);
  color: #515154;
}

.artist-links a:hover {
  color: #000;
}

.content-section {
  color: #1d1d1f;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.archive-section {
  background: rgba(245, 245, 247, 0.9);
}

.section-heading {
  border-color: rgba(0, 0, 0, 0.1);
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  color: #1d1d1f;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.section-heading > p,
.release-card p {
  color: #6e6e73;
}

.art-link {
  border-radius: 24px;
  background: #e8e8ed;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.art-overlay {
  inset: auto 12px 12px auto;
  border-radius: 999px;
  color: #fff;
  background: rgba(29, 29, 31, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.release-card h3 {
  color: #1d1d1f;
  font-weight: 700;
}

.archive-grid {
  gap: 18px;
}

.archive-item {
  border-radius: 24px;
  background: #e8e8ed;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.archive-item figcaption {
  padding: 44px 18px 16px;
}

.archive-item figcaption span {
  color: #fff;
}

.about-section {
  width: min(var(--max), calc(100% - 36px));
  margin-top: clamp(38px, 6vw, 76px);
  margin-bottom: clamp(38px, 6vw, 76px);
  padding: clamp(48px, 7vw, 90px);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-number {
  color: #1d1d1f;
  font-weight: 700;
  opacity: 1;
}

.about-copy > p:not(.overline) {
  color: #515154;
}

.contact-section {
  border-radius: 34px;
  color: #fff;
  background: #1d1d1f;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.contact-copy .overline,
.contact-copy p:last-child {
  color: #a1a1a6;
}

.contact-copy h2 {
  color: #fff;
}

.contact-card {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-card span,
.contact-card small {
  color: #a1a1a6;
}

.contact-card a {
  color: #fff;
  font-weight: 700;
}

.site-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: #86868b;
}

.footer-brand {
  color: #1d1d1f;
}

.footer-nav a:hover {
  color: #1d1d1f;
}

@media (max-width: 980px) {
  .artist-card {
    padding: 18px;
    border-top: 0;
  }
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(rgba(245, 245, 247, 0.84), rgba(245, 245, 247, 0.84)),
      url("assets/imagenes/fondo-abstracto.jpeg") center top / auto 100vh scroll,
      var(--page);
  }

  .site-header {
    top: 8px;
    border-radius: 16px;
  }

  .main-nav {
    inset: 58px 0 auto;
    margin: 0 8px;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background: rgba(250, 250, 252, 0.96);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  }

  .main-nav a {
    border: 0;
  }

  .release-layout,
  .about-section,
  .contact-section {
    border-radius: 26px;
  }

  .artist-card {
    border-radius: 22px;
  }
}

@media (max-width: 460px) {
  .release-section {
    padding-inline: 10px;
  }

  .release-layout {
    padding: 16px;
  }

  .player-controls {
    grid-template-columns: repeat(4, 40px);
  }

  .audio-control {
    width: 40px;
    height: 40px;
  }

  .player-meta {
    gap: 7px;
  }

  .sample-heading {
    align-items: start;
  }

  .sample-heading a {
    max-width: 92px;
    text-align: right;
  }

  .about-section {
    width: calc(100% - 20px);
    padding: 30px 22px;
  }

  .contact-section {
    width: calc(100% - 20px);
    padding: 30px 18px;
  }

  .image-lightbox {
    padding: 64px 12px 24px;
  }

  .image-lightbox img {
    max-height: calc(100vh - 115px);
    border-radius: 14px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* Likes and comments */
.image-like-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.artist-card .image-like-wrap {
  grid-row: span 2;
}

.image-like-wrap > img {
  width: 100%;
  height: 100%;
}

.image-like-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: #1d1d1f;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.image-like-button:hover {
  transform: scale(1.05);
}

.image-like-button.is-liked {
  color: #fff;
  background: #1d1d1f;
}

.image-like-star {
  font-size: 19px;
  line-height: 1;
}

.image-like-count {
  min-width: 8px;
  font-size: 10px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.comments-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(70px, 9vw, 110px);
  padding: clamp(34px, 6vw, 70px);
  border-radius: 34px;
  color: #1d1d1f;
  background: #fff;
  box-shadow: var(--shadow);
}

.comments-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comments-heading h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(43px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.comments-heading > p {
  margin: 0 0 2px;
  color: #6e6e73;
}

.comments-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(22px, 4vw, 46px);
}

.comment-form,
.comments-feed {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 24px;
  background: #f5f5f7;
}

.comment-form {
  display: grid;
  gap: 17px;
}

.comment-form-heading,
.comments-feed-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.comment-form-heading strong,
.comments-feed-heading strong {
  font-size: 17px;
}

.comment-form-heading span,
.comments-feed-heading span {
  color: #86868b;
  font-size: 11px;
}

.comment-form label {
  display: grid;
  gap: 7px;
}

.comment-form label > span {
  color: #6e6e73;
  font-size: 11px;
  font-weight: 700;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  outline: 0;
  color: #1d1d1f;
  background: #fff;
  font: inherit;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.comment-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

#commentCharacters {
  color: #86868b;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.comment-submit {
  min-height: 40px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #1d1d1f;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.comment-submit:hover {
  background: #000;
}

.comment-status {
  min-height: 18px;
  margin: -8px 0 0;
  color: #6e6e73;
  font-size: 11px;
}

.comments-feed {
  display: grid;
  gap: 18px;
}

.comment-list {
  display: grid;
  gap: 11px;
}

.comment-empty {
  margin: 0;
  padding: 26px 18px;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  color: #86868b;
  font-size: 13px;
  text-align: center;
}

.comment-item {
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 17px;
  background: #fff;
}

.comment-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}

.comment-author {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.comment-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1d1d1f;
  font-size: 11px;
  font-weight: 800;
}

.comment-author strong {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comment-item time {
  flex: 0 0 auto;
  color: #86868b;
  font-size: 9px;
}

.comment-item p {
  margin: 0;
  color: #515154;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .comments-heading,
  .comments-layout {
    grid-template-columns: 1fr;
  }

  .comments-heading {
    gap: 18px;
  }
}

@media (max-width: 460px) {
  .comments-section {
    width: calc(100% - 20px);
    padding: 30px 18px;
    border-radius: 26px;
  }

  .comment-form,
  .comments-feed {
    padding: 18px;
    border-radius: 20px;
  }

  .comment-form-heading {
    display: grid;
  }

  .comment-submit {
    max-width: 190px;
  }

  .image-like-button {
    top: 9px;
    right: 9px;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
  }
}

/* Ajuste final del vidrio: transparente y satinado */
body {
  background: url("assets/imagenes/fondo-abstracto.jpeg") center / cover fixed;
}

.site-header {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(235, 235, 240, 0.3));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 38px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(30px) saturate(145%);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
}

.release-layout,
.about-section,
.comments-section {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 244, 247, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 28px 80px rgba(0, 0, 0, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.content-section {
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.archive-section {
  background: rgba(245, 245, 247, 0.74);
}

.player,
.track-button,
.youtube-sample,
.artist-card,
.comment-form,
.comments-feed {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(245, 245, 247, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.contact-section {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(135deg, rgba(29, 29, 31, 0.82), rgba(29, 29, 31, 0.64));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 720px) {
  body {
    background: url("assets/imagenes/fondo-abstracto.jpeg") center top / auto 100vh scroll;
  }

  .release-layout,
  .about-section,
  .comments-section {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 244, 247, 0.72));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Acabado satinado definitivo: mantener al final */
.site-header,
.release-layout,
.about-section,
.game-section,
.comments-section,
.chat-section,
.content-section,
.archive-section,
.player,
.track-button,
.youtube-sample,
.artist-card,
.comment-form,
.comments-feed,
.comment-item,
.contact-section,
.contact-card,
.pinterest-link {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 240, 244, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 20px 56px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
  -webkit-backdrop-filter: blur(36px) saturate(132%) brightness(1.05);
}

.content-section,
.archive-section {
  border-right: 0;
  border-left: 0;
}

@media (max-width: 720px) {
  .site-header,
  .release-layout,
  .about-section,
  .game-section,
  .comments-section,
  .chat-section,
  .content-section,
  .archive-section,
  .player,
  .track-button,
  .youtube-sample,
  .artist-card,
  .comment-form,
  .comments-feed,
  .comment-item,
  .contact-section,
  .contact-card,
  .pinterest-link {
    backdrop-filter: blur(30px) saturate(128%) brightness(1.04);
    -webkit-backdrop-filter: blur(30px) saturate(128%) brightness(1.04);
  }
}

/* Legibilidad final de todas las letras */
body,
.site-header,
.release-layout,
.about-section,
.game-section,
.comments-section,
.chat-section,
.contact-section {
  color: #171719;
}

.brand strong,
.main-nav a,
.menu-toggle,
.release-info h1,
.artist-card h2,
.section-heading h2,
.release-card h3,
.about-copy h2,
.game-heading h2,
.game-panel h3,
.comments-heading h2,
.chat-heading h2,
.contact-copy h2,
.contact-card a,
.pinterest-copy strong,
.comment-form-heading strong,
.comments-feed-heading strong,
.chat-identity strong,
.footer-brand {
  color: #171719;
}

.main-nav a {
  font-weight: 700;
}

.brand small,
.overline,
.byline,
.player-note,
.track-number,
.track-button time,
.release-card > p,
.game-kicker,
.game-stats span,
.comment-form-heading span,
.comments-feed-heading span,
.comment-form label > span,
#commentCharacters,
.comment-status,
.comment-item time,
.chat-identity small,
.chat-name-panel label,
.chat-status {
  color: #5c5c61;
}

.release-description,
.artist-card > p,
.artist-links a,
.section-heading > p,
.about-copy > p:not(.overline),
.game-heading > p,
.game-panel > p,
.game-status,
.comments-heading > p,
.comment-item p,
.chat-heading > p,
.chat-empty {
  color: #3f3f43 !important;
}

.release-description,
.section-heading > p,
.about-copy > p:not(.overline),
.game-heading > p,
.comments-heading > p,
.chat-heading > p {
  font-weight: 500;
}

.contact-section,
.contact-copy h2,
.contact-card,
.contact-card a,
.pinterest-link,
.pinterest-copy strong {
  color: #171719;
}

.contact-copy .overline,
.contact-copy p:last-child,
.contact-card span,
.contact-card small,
.pinterest-copy small,
.pinterest-arrow {
  color: #3f3f43;
}

.contact-card,
.pinterest-link {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 238, 242, 0.86));
}

.comment-form input,
.comment-form textarea,
.chat-name-panel input,
.chat-form textarea {
  color: #171719;
  caret-color: #171719;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder,
.chat-name-panel input::placeholder,
.chat-form textarea::placeholder {
  color: #68686d;
  opacity: 1;
}

.memory-stage {
  color: #fff;
}

.memory-stage-top,
.memory-hint {
  color: #d2d2d7;
}

.game-start,
.comment-submit,
.chat-name-panel button,
.chat-form button,
.button-primary,
.image-like-button.is-liked,
.chat-message.is-visitor,
.archive-item figcaption,
.art-overlay,
.youtube-label,
.lightbox-caption {
  color: #fff;
}

.site-footer,
.footer-nav a {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.72);
}

.site-footer p,
.footer-brand,
.footer-nav a:hover {
  color: #fff;
}
