:root {
  --ink: #0b0b0b;
  --paper: #f0eee8;
  --acid: #d8ff3e;
  --violet: #5a47ff;
  --line: rgba(11, 11, 11, .18);
  --muted: rgba(11, 11, 11, .58);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.noise { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .055; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' 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='.55'/%3E%3C/svg%3E"); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 3vw;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.wordmark { font-size: 1.35rem; font-weight: 800; letter-spacing: -.08em; }
.wordmark span { position: relative; top: -.65em; margin-left: .25rem; font: 400 .42rem var(--mono); letter-spacing: 0; }
.site-header nav { display: flex; gap: 32px; font: 400 .72rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.site-header nav a, .site-header nav button { position: relative; }
.site-header nav a::after, .site-header nav button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .25s ease; }
.site-header nav a:hover::after, .site-header nav button:hover::after { right: 0; }
.nav-origins { padding: 0; border: 0; color: inherit; background: transparent; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.platform-trigger { min-height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 100px; color: white; background: rgba(11,11,11,.3); backdrop-filter: blur(8px); font: 500 .62rem var(--mono); cursor: pointer; }
.platform-trigger:hover { border-color: rgba(255,255,255,.65); }
.platform-trigger-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--platform-color, var(--acid)); box-shadow: 0 0 0 4px color-mix(in srgb, var(--platform-color, var(--acid)) 18%, transparent); }
.platform-trigger b { font-size: .7rem; font-weight: 400; opacity: .6; }
.header-cta { justify-self: end; padding: 11px 18px; border: 1px solid rgba(255,255,255,.6); border-radius: 100px; font: 500 .72rem var(--mono); transition: background .2s, color .2s; }
.header-cta:hover { color: var(--ink); background: white; }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  align-items: center;
  padding: 130px 5vw 70px;
  color: white;
  background: var(--ink);
}
.hero::before { content: ""; position: absolute; width: 54vw; height: 54vw; left: -20vw; top: 25%; border: 1px solid rgba(216,255,62,.25); border-radius: 50%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 0 56%, rgba(90,71,255,.12) 56% 100%); pointer-events: none; }
.hero-copy { position: relative; z-index: 2; padding-top: 4vh; }
.eyebrow, .section-kicker { margin: 0 0 20px; font: 500 .68rem var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(216,255,62,.12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(216,255,62,0); } }
.hero h1 { margin: -.05em 0 0; font-size: clamp(5.8rem, 15vw, 13rem); line-height: .78; letter-spacing: -.105em; font-weight: 600; transform: translateX(-.06em); }
.hero-line { margin: 32px 0 0; color: rgba(255,255,255,.62); font: 300 clamp(.75rem, 1.2vw, 1rem) var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.hero-line span { margin: 0 12px; color: var(--acid); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 46px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 21px; border: 1px solid; border-radius: 2px; font: 500 .72rem var(--mono); letter-spacing: .04em; transition: transform .2s, background .2s, color .2s; }
.button[type="button"] { cursor: pointer; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); border-color: var(--acid); background: var(--acid); }
.button-ghost { color: white; border-color: rgba(255,255,255,.3); }
.button-ghost:hover { color: var(--ink); background: white; }
.hero-platform-change { display: grid; grid-template-columns: auto 1fr auto; justify-content: initial; gap: 13px; color: rgba(255,255,255,.88); border-color: color-mix(in srgb, var(--platform-color) 42%, #343434); background: rgba(4,4,4,.82); box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 8px 24px rgba(0,0,0,.22); }
.hero-platform-change:hover { color: white; border-color: color-mix(in srgb, var(--platform-color) 68%, #343434); background: color-mix(in srgb, var(--platform-color) 9%, #050505); box-shadow: 0 10px 30px color-mix(in srgb, var(--platform-color) 12%, transparent); }
.hero-platform-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--platform-color); box-shadow: 0 0 0 5px color-mix(in srgb, var(--platform-color) 15%, transparent); }
.hero-platform-change b { color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 400; }
.hero-art { width: min(38vw, 560px); justify-self: end; position: relative; z-index: 2; transform: rotate(3deg); }
.hero-art img { position: relative; z-index: 2; width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: 0 40px 90px rgba(0,0,0,.48); animation: enterArt .9s cubic-bezier(.16,1,.3,1) both; }
.hero-art img.feature-changing { opacity: 0; transform: scale(.975) rotate(-1deg); }
.hero-art img { transition: opacity .28s ease, transform .45s cubic-bezier(.16,1,.3,1); }
@keyframes enterArt { from { opacity: 0; transform: translateY(40px) rotate(-3deg) scale(.93); } }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(216,255,62,.55); border-radius: 50%; }
.orbit-one { inset: -12%; animation: spin 18s linear infinite; }
.orbit-one::after { content: ""; position: absolute; width: 9px; height: 9px; top: 13%; right: 13%; border-radius: 50%; background: var(--acid); }
.orbit-two { inset: -23%; border-color: rgba(90,71,255,.55); animation: spin 28s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.art-note { position: absolute; z-index: 3; padding: 7px 10px; color: var(--ink); background: white; font: 500 .58rem var(--mono); letter-spacing: .09em; }
.note-one { top: 8%; left: -7%; transform: rotate(-3deg); }
.note-two { right: -9%; bottom: 9%; transform: rotate(-3deg); background: var(--acid); }
.hero-feature-switcher { position: absolute; z-index: 4; left: 50%; bottom: -35px; display: flex; gap: 8px; transform: translateX(-50%) rotate(-3deg); }
.hero-feature-switcher button { width: 28px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.28); cursor: pointer; transition: width .25s, background .25s; }
.hero-feature-switcher button.active { width: 52px; background: var(--acid); }
.hero-index { position: absolute; z-index: 3; right: 2vw; bottom: 22px; display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.35); font: 300 .6rem var(--mono); writing-mode: vertical-rl; }

.manifesto { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 38px 5vw; border-bottom: 1px solid var(--line); background: var(--acid); font: 500 clamp(.8rem, 1vw, 1rem) var(--mono); text-transform: uppercase; }
.manifesto p { margin: 0; }
.manifesto p:nth-child(2) { text-align: center; }
.manifesto p:last-child { text-align: right; opacity: .58; }

.hub-promo { position: relative; min-height: 250px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; margin: 34px 5vw 0; padding: 48px 54px; overflow: hidden; color: white; background: var(--violet); transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s; }
.hub-promo:hover { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(90,71,255,.22); }
.hub-promo::before { content: "HUB"; position: absolute; right: 12%; top: 50%; transform: translateY(-52%); color: rgba(255,255,255,.07); font-size: clamp(8rem, 20vw, 18rem); font-weight: 700; letter-spacing: -.1em; pointer-events: none; }
.hub-copy { position: relative; z-index: 2; }
.hub-copy .section-kicker { margin-bottom: 14px; color: rgba(255,255,255,.58); }
.hub-copy h2 { margin: 0; font-size: clamp(2.8rem, 6vw, 6.5rem); line-height: .88; letter-spacing: -.075em; font-weight: 500; }
.hub-copy > p:last-child { margin: 19px 0 0; color: rgba(255,255,255,.62); font: 300 .7rem var(--mono); }
.hub-badge { position: relative; z-index: 2; width: 138px; height: 138px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: var(--acid); color: var(--ink); transform: rotate(6deg); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.hub-promo:hover .hub-badge { transform: rotate(0) scale(1.08); }
.hub-badge span { font: 500 .6rem var(--mono); letter-spacing: .08em; }
.hub-badge strong { font: 300 1.3rem var(--mono); }
.hub-signal { position: absolute; right: -80px; top: 50%; width: 330px; height: 330px; transform: translateY(-50%); pointer-events: none; }
.hub-signal i { position: absolute; inset: var(--ring); border: 1px solid rgba(216,255,62,.22); border-radius: 50%; }
.hub-signal i:nth-child(1) { --ring: 0; }
.hub-signal i:nth-child(2) { --ring: 45px; }
.hub-signal i:nth-child(3) { --ring: 90px; }

.albums-section, .catalogue-section, .listen-section { padding: 120px 5vw; }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; margin-bottom: 62px; }
.section-heading h2, .listen-section h2 { margin: 0; max-width: 850px; font-size: clamp(3rem, 6.8vw, 7rem); line-height: .9; letter-spacing: -.075em; font-weight: 500; }
.section-kicker { color: var(--muted); }
.section-count { margin: 0; padding-left: 28px; border-left: 1px solid var(--line); font: 400 .72rem/1.65 var(--mono); text-transform: uppercase; }
.section-count strong { display: block; font: 500 3rem/1 var(--sans); letter-spacing: -.08em; }
.section-count span { color: var(--muted); }
.year-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.album-controls { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.album-controls .year-filters { margin-bottom: 0; }
.album-sort button:hover, .album-sort button.active { border-color: var(--acid); background: var(--acid); }
.filter { padding: 9px 15px; border: 1px solid var(--line); border-radius: 100px; background: transparent; font: 400 .68rem var(--mono); cursor: pointer; transition: .2s; }
.filter:hover, .filter.active { color: var(--paper); border-color: var(--ink); background: var(--ink); }
.album-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 64px 24px; }
.album-card { animation: reveal .55s cubic-bezier(.16,1,.3,1) both; animation-delay: var(--delay); }
@keyframes reveal { from { opacity: 0; transform: translateY(20px); } }
.cover-button { display: block; width: 100%; position: relative; padding: 0; overflow: hidden; border: 0; background: #ddd; cursor: pointer; }
.cover-button img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .55s cubic-bezier(.16,1,.3,1), filter .3s; }
.cover-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between; padding: 18px; color: white; background: linear-gradient(transparent 55%, rgba(0,0,0,.7)); opacity: 0; transition: opacity .3s; font: 400 .7rem var(--mono); }
.cover-overlay strong { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); border-radius: 50%; background: var(--acid); font: 400 1.25rem var(--sans); }
.cover-button:hover img, .cover-button:focus-visible img { transform: scale(1.035); filter: blur(5px) saturate(1.08); }
.cover-button:hover .cover-overlay, .cover-button:focus-visible .cover-overlay { opacity: 1; }
.album-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; padding-top: 16px; }
.album-meta p { margin: 0 0 6px; color: var(--muted); font: 400 .62rem var(--mono); }
.album-meta h3 { margin: 0; font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1; letter-spacing: -.045em; }
.album-meta > span { flex: none; color: var(--muted); font: 400 .58rem var(--mono); text-align: right; text-transform: uppercase; }
.direct-status { margin: 13px 0 0; padding-top: 10px; border-top: 1px solid var(--line); font: 400 .56rem var(--mono); text-transform: uppercase; }
.direct-status::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; vertical-align: 1px; }
.direct-status.verified { color: #337d1e; }
.direct-status.verified::before { background: var(--acid); box-shadow: 0 0 0 3px rgba(112,170,35,.12); }
.direct-status.missing { color: #9b3e2e; }
.direct-status.missing::before { background: #ed7259; }

.catalogue-section { color: white; background: var(--ink); }
.catalogue-section .section-kicker { color: rgba(255,255,255,.5); }
.catalogue-heading { align-items: end; }
.search-box { width: min(340px, 100%); display: flex; align-items: center; padding: 0 3px 9px; border-bottom: 1px solid rgba(255,255,255,.3); }
.search-box input { width: 100%; border: 0; outline: 0; color: white; background: transparent; font: 300 .75rem var(--mono); }
.search-box input::placeholder { color: rgba(255,255,255,.42); }
.release-table { border-top: 1px solid rgba(255,255,255,.22); }
.release-row { min-height: 70px; display: grid; grid-template-columns: 140px minmax(220px, 1.5fr) minmax(100px, .5fr) minmax(130px, .65fr) 30px; align-items: center; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.14); transition: color .2s, padding .25s, background .2s; }
a.release-row:hover { padding: 0 14px; color: var(--ink); background: var(--acid); }
.release-row time, .release-row span { color: rgba(255,255,255,.5); font: 300 .65rem var(--mono); text-transform: uppercase; }
a.release-row:hover time, a.release-row:hover span { color: rgba(11,11,11,.6); }
.release-row strong { font-size: 1rem; font-weight: 500; letter-spacing: -.025em; }
.release-row b { justify-self: end; font-weight: 400; }
.release-head { min-height: 42px; color: rgba(255,255,255,.4); font: 400 .56rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.no-results { padding: 30px 0; color: rgba(255,255,255,.5); font: 300 .75rem var(--mono); }

.listen-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; background: var(--violet); color: white; }
.listen-section .section-kicker { color: rgba(255,255,255,.55); }
.platform-list { border-top: 1px solid rgba(255,255,255,.3); }
.platform-list a { min-height: 78px; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; border-bottom: 1px solid rgba(255,255,255,.3); font-size: clamp(1.2rem, 2.2vw, 2rem); font-weight: 500; letter-spacing: -.045em; transition: padding .25s, color .2s, background .2s; }
.platform-list a:hover { padding: 0 16px; color: var(--ink); background: var(--acid); }
.platform-list span { font: 300 .6rem var(--mono); opacity: .55; letter-spacing: 0; }
.platform-list strong { font: 300 1rem var(--mono); }

footer { min-height: 180px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 24px; padding: 50px 5vw; color: white; background: var(--ink); }
footer p { margin: 0; color: rgba(255,255,255,.45); font: 300 .6rem var(--mono); text-align: center; text-transform: uppercase; }
footer p:last-child { text-align: right; }
.footer-mark { font-size: 2rem; }

.album-dialog { width: min(980px, calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 0; overflow: auto; border: 0; color: white; background: #151515; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.album-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(12px); }
.dialog-close { position: fixed; z-index: 4; top: max(26px, calc((100vh - min(700px, 100vh - 28px))/2 + 12px)); right: max(26px, calc((100vw - min(980px, 100vw - 28px))/2 + 12px)); width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; background: rgba(0,0,0,.3); font-size: 1.4rem; cursor: pointer; }
.dialog-layout { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 650px; }
.dialog-cover { position: sticky; top: 0; width: 100%; height: 100%; max-height: 100svh; object-fit: cover; }
.dialog-info { padding: 70px 55px 50px; }
.dialog-info .section-kicker { color: rgba(255,255,255,.45); }
.dialog-info h2 { margin: 0; font-size: clamp(3rem, 6vw, 5rem); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
.dialog-genre { color: rgba(255,255,255,.5); font: 300 .65rem var(--mono); text-transform: uppercase; }
.album-description { margin: 28px 0; padding: 18px; border-left: 2px solid var(--acid); background: rgba(255,255,255,.055); }
.album-description small { display: block; margin-bottom: 9px; color: rgba(255,255,255,.42); font: 400 .54rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.album-description p { margin: 0; color: rgba(255,255,255,.78); font-size: .78rem; line-height: 1.65; }
.album-description.empty-description { border-color: rgba(255,255,255,.2); }
.album-description.empty-description p { color: rgba(255,255,255,.34); font-family: var(--mono); font-style: italic; }
.track-list { margin: 35px 0; padding: 0; list-style: none; counter-reset: track; border-top: 1px solid rgba(255,255,255,.16); }
.track-list li { counter-increment: track; min-height: 43px; display: grid; grid-template-columns: 32px minmax(0,1fr); align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.track-list li::before { content: counter(track, decimal-leading-zero); color: rgba(255,255,255,.4); font: 300 .56rem var(--mono); }
.track-list i { color: rgba(255,255,255,.25); font-style: normal; }
.album-track-button { width: 100%; min-height: 42px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 0 8px; border: 0; color: white; background: transparent; text-align: left; cursor: pointer; transition: color .2s, background .2s, padding .2s; }
.album-track-button:hover, .album-track-button.playing { padding-inline: 13px; color: var(--ink); background: var(--acid); }
.album-track-button:hover i, .album-track-button.playing i { color: var(--ink); }
.album-track-button.playing i { font-size: 0; }
.album-track-button.playing i::after { content: "EN LECTURE"; font: 500 .48rem var(--mono); }
.album-track-button.unavailable { color: rgba(255,255,255,.42); cursor: help; }
.album-track-button.unavailable:hover { padding-inline: 8px; color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); }
.dialog-info .button { width: 100%; }
.missing-link-box { padding: 18px; border: 1px solid rgba(255,112,83,.4); background: rgba(255,112,83,.06); }
.missing-link-box strong { color: #ff927b; font: 500 .65rem var(--mono); text-transform: uppercase; }
.missing-link-box p { margin: 8px 0 15px; color: rgba(255,255,255,.45); font: 300 .62rem/1.5 var(--mono); }
.missing-link-box a { color: var(--acid); font: 400 .62rem var(--mono); }
.embedded-player-block { margin: 26px 0; }
.embedded-player-block > small { display: block; margin-bottom: 9px; color: rgba(255,255,255,.42); font: 400 .54rem var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.player-open-button { width: 100%; justify-content: center; border: 1px solid rgba(255,255,255,.18); background: #1b1b1b; color: #fff; }
.player-open-button:hover { border-color: var(--acid); color: var(--acid); }
.deferred-player-slot:not(:empty) { margin-top: 10px; }
.mx3-deferred-embed { display: block; width: 100%; min-height: 180px; border: 0; }
.platform-embed { display: block; width: 100%; border: 0; background: #202020; }
.spotify-embed { height: 352px; border-radius: 12px; }
.apple-embed { height: 450px; }
.soundcloud-embed { height: 166px; }
.soundcloud-embed.collection-embed { height: 300px; }

.platform-dialog { width: min(860px, calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 58px; overflow: auto; border: 0; color: white; background: #111; box-shadow: 0 30px 100px rgba(0,0,0,.65); }
.platform-dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(14px); }
.platform-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: white; background: transparent; font-size: 1.3rem; cursor: pointer; }
.platform-dialog-copy { max-width: 660px; }
.platform-dialog-copy .section-kicker { color: rgba(255,255,255,.45); }
.platform-dialog-copy h2 { margin: 0; font-size: clamp(3rem, 6.5vw, 5.6rem); line-height: .9; letter-spacing: -.075em; font-weight: 500; }
.platform-dialog-copy > p:last-child { max-width: 580px; margin: 25px 0 0; color: rgba(255,255,255,.55); font: 300 .72rem/1.7 var(--mono); }
.platform-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 40px; }
.platform-options button { min-height: 72px; display: grid; grid-template-columns: 43px 1fr auto; align-items: center; gap: 13px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.16); color: white; background: rgba(255,255,255,.03); text-align: left; cursor: pointer; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.platform-options button:hover, .platform-options button.selected { color: var(--ink); border-color: var(--option-color); background: var(--option-color); transform: translateY(-2px); }
.platform-options button > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--option-color); font: 500 .58rem var(--mono); }
.platform-options button:hover > span, .platform-options button.selected > span { background: rgba(11,11,11,.12); }
.platform-options strong { display: flex; flex-direction: column; gap: 3px; font-size: .9rem; font-weight: 500; }
.platform-options strong small { color: rgba(255,255,255,.38); font: 300 .48rem var(--mono); }
.platform-options button:hover strong small, .platform-options button.selected strong small { color: rgba(11,11,11,.55); }
.platform-options i { color: rgba(255,255,255,.42); font: 300 .56rem var(--mono); font-style: normal; text-transform: uppercase; }
.platform-options button:hover i, .platform-options button.selected i { color: rgba(11,11,11,.55); }
.platform-note { margin: 18px 0 0; color: rgba(255,255,255,.35); font: 300 .56rem var(--mono); text-align: center; }
.preference-toast { position: fixed; z-index: 60; left: 50%; bottom: 24px; padding: 13px 18px; color: var(--ink); background: var(--acid); box-shadow: 0 10px 40px rgba(0,0,0,.28); font: 500 .64rem var(--mono); transform: translate(-50%, 120px); opacity: 0; transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s; pointer-events: none; }
.preference-toast.visible { transform: translate(-50%, 0); opacity: 1; }

.soundcloud-library { padding: 120px 5vw; color: white; background: #0d0d0d; }
.soundcloud-hero { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 50px; }
.soundcloud-hero .section-kicker { color: #ff6a00; }
.soundcloud-hero h2 { margin: 0; max-width: 920px; font-size: clamp(3.5rem, 8vw, 8rem); line-height: .84; letter-spacing: -.08em; font-weight: 500; }
.soundcloud-intro { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.52); font: 300 .75rem/1.8 var(--mono); }
.soundcloud-stats { display: flex; gap: 34px; padding-left: 34px; border-left: 1px solid rgba(255,255,255,.2); }
.soundcloud-stats p { margin: 0; }
.soundcloud-stats strong { display: block; font-size: clamp(3rem, 6vw, 6rem); line-height: .85; letter-spacing: -.08em; color: #ff6a00; }
.soundcloud-stats span { display: block; margin-top: 12px; color: rgba(255,255,255,.4); font: 300 .57rem var(--mono); text-transform: uppercase; }
.soundcloud-controls { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; margin: 80px 0 34px; }
.soundcloud-tabs { display: flex; gap: 8px; }
.soundcloud-tabs button { padding: 12px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; color: rgba(255,255,255,.5); background: transparent; font: 400 .62rem var(--mono); cursor: pointer; }
.soundcloud-tabs button.active, .soundcloud-tabs button:hover { color: #0d0d0d; border-color: #ff6a00; background: #ff6a00; }
.soundcloud-tools { display: flex; align-items: end; justify-content: flex-end; gap: 14px; }
.soundcloud-sort { display: flex; align-items: center; gap: 6px; }
.soundcloud-sort > span { margin-right: 3px; color: rgba(255,255,255,.38); font: 400 .53rem var(--mono); text-transform: uppercase; }
.soundcloud-sort button { min-height: 42px; padding: 0 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; color: rgba(255,255,255,.54); background: transparent; font: 400 .57rem var(--mono); cursor: pointer; }
.soundcloud-sort button:hover, .soundcloud-sort button.active { color: #0d0d0d; border-color: #ff6a00; background: #ff6a00; }
.soundcloud-sort[hidden] { display: none; }
.soundcloud-search { width: min(360px, 100%); }
.soundcloud-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px 22px; }
.soundcloud-card { min-width: 0; }
.soundcloud-cover { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; color: white; background: #191919; text-align: left; cursor: pointer; }
.soundcloud-cover > img, .soundcloud-placeholder { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1), filter .3s; }
.soundcloud-cover > span { position: absolute; inset: auto 12px 12px; padding: 10px; color: #0d0d0d; background: #ff6a00; font: 500 .55rem var(--mono); text-align: center; opacity: 0; transform: translateY(8px); transition: .25s; }
.soundcloud-cover:hover > img, .soundcloud-cover:hover .soundcloud-placeholder, .soundcloud-cover:focus-visible > img, .soundcloud-cover:focus-visible .soundcloud-placeholder { transform: scale(1.045); filter: blur(5px) brightness(.76); }
.soundcloud-cover:hover > span, .soundcloud-cover:focus-visible > span, .soundcloud-cover.show-unavailable > span { opacity: 1; transform: translateY(0); }
.soundcloud-cover.unavailable { cursor: not-allowed; }
.soundcloud-cover.unavailable > span { color: white; background: #df2f28; letter-spacing: .08em; }
.soundcloud-placeholder { display: grid; place-items: center; background: linear-gradient(135deg, #242424, #101010); }
.soundcloud-placeholder span { color: rgba(255,255,255,.18); font-size: clamp(2rem, 5vw, 5rem); font-weight: 700; letter-spacing: -.08em; }
.soundcloud-card-body { padding-top: 15px; }
.soundcloud-card-meta { display: flex; justify-content: space-between; gap: 15px; margin: 0 0 9px; color: rgba(255,255,255,.35); font: 300 .53rem var(--mono); text-transform: uppercase; }
.soundcloud-card h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1; letter-spacing: -.04em; }
.soundcloud-description { display: -webkit-box; min-height: 4.6em; margin: 14px 0 12px; overflow: hidden; color: rgba(255,255,255,.56); font-size: .68rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.soundcloud-description.empty { color: rgba(255,255,255,.25); font-family: var(--mono); font-style: italic; }
.soundcloud-genre { color: #ff7a1a; font: 400 .52rem var(--mono); text-transform: uppercase; }
.bestof-panel { padding-top: 20px; }
.bestof-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 20px; margin: 25px 0 42px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.18); }
.bestof-heading .section-kicker { grid-column: 1 / -1; margin: 0; color: #ff6a00; }
.bestof-heading h3 { margin: 0; font-size: clamp(4rem, 10vw, 10rem); line-height: .7; letter-spacing: -.09em; font-weight: 500; }
.bestof-heading > p:last-child { max-width: 330px; margin: 0; color: rgba(255,255,255,.4); font: 300 .65rem/1.6 var(--mono); text-align: right; }
.bestof-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.bestof-card { position: relative; overflow: hidden; background: #171717; }
.bestof-card.featured { grid-column: 1 / -1; border: 1px solid rgba(255,106,0,.72); }
.bestof-cover { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #202020; cursor: pointer; }
.bestof-cover img, .bestof-cover .soundcloud-placeholder { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1), filter .3s; }
.bestof-card.featured .bestof-cover img, .bestof-card.featured .bestof-cover .soundcloud-placeholder { aspect-ratio: 16 / 7; }
.bestof-cover:hover img, .bestof-cover:focus-visible img { transform: scale(1.04); filter: blur(5px) brightness(.72); }
.bestof-cover > span { position: absolute; left: 15px; bottom: 15px; padding: 9px 12px; color: #111; background: #ff6a00; font: 500 .6rem var(--mono); }
.bestof-card > div:last-child { position: relative; padding: 18px; }
.bestof-card p { margin: 0 0 7px; color: rgba(255,255,255,.35); font: 300 .54rem var(--mono); text-transform: uppercase; }
.bestof-card h4 { max-width: 80%; margin: 0; font-size: 1.25rem; line-height: 1.05; letter-spacing: -.04em; }
.bestof-card.featured h4 { font-size: clamp(2rem, 4vw, 4rem); }
.bestof-card > div:last-child > strong { position: absolute; right: 14px; bottom: 6px; color: rgba(255,106,0,.2); font-size: 3.6rem; line-height: 1; letter-spacing: -.08em; }
.soundcloud-track-list { border-top: 1px solid rgba(255,255,255,.18); }
.soundcloud-track { width: 100%; min-height: 78px; display: grid; grid-template-columns: 38px 52px minmax(220px,1.5fr) minmax(100px,.45fr) 100px 24px; align-items: center; gap: 16px; padding: 9px 10px; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); color: white; background: transparent; text-align: left; cursor: pointer; transition: padding .2s, color .2s, background .2s; }
.soundcloud-track:hover { padding-inline: 17px; color: #0d0d0d; background: #ff6a00; }
.soundcloud-track-number, .soundcloud-track time, .soundcloud-track-genre { color: rgba(255,255,255,.36); font: 300 .54rem var(--mono); text-transform: uppercase; }
.soundcloud-track:hover .soundcloud-track-number, .soundcloud-track:hover time, .soundcloud-track:hover .soundcloud-track-genre { color: rgba(13,13,13,.55); }
.soundcloud-track-art { width: 52px; height: 52px; aspect-ratio: 1; object-fit: cover; }
.soundcloud-track-main { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.soundcloud-track-main strong { overflow: hidden; font-size: .9rem; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.soundcloud-track-main small { overflow: hidden; color: rgba(255,255,255,.35); font: 300 .53rem var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.soundcloud-track:hover .soundcloud-track-main small { color: rgba(13,13,13,.55); }
.soundcloud-track b { justify-self: end; font-size: 1.1rem; font-weight: 400; }
.load-more { width: 100%; min-height: 54px; margin-top: 24px; border: 1px solid rgba(255,255,255,.22); color: white; background: transparent; font: 400 .62rem var(--mono); cursor: pointer; }
.load-more:hover { color: #0d0d0d; border-color: #ff6a00; background: #ff6a00; }
.sc-no-results { color: rgba(255,255,255,.4); }
.soundcloud-dialog { width: min(960px, calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 0; overflow: auto; border: 0; color: white; background: #111; box-shadow: 0 30px 100px rgba(0,0,0,.65); }
.soundcloud-dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(14px); }
.soundcloud-dialog-close { position: fixed; z-index: 4; top: 28px; right: 28px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; background: rgba(0,0,0,.45); font-size: 1.3rem; cursor: pointer; }
.soundcloud-detail-layout { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 590px; }
.soundcloud-detail-art { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.soundcloud-detail-info { padding: 65px 50px; }
.soundcloud-detail-info .section-kicker { color: #ff6a00; }
.soundcloud-detail-info h2 { margin: 0; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .88; letter-spacing: -.07em; font-weight: 500; overflow-wrap: anywhere; }
.soundcloud-detail-stats { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 24px 0; color: rgba(255,255,255,.43); font: 300 .55rem var(--mono); text-transform: uppercase; }
.soundcloud-button { border-color: #ff6a00; background: #ff6a00; color: #0d0d0d; }
.soundcloud-album-layout { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 720px; }
.soundcloud-album-visual { position: sticky; top: 0; align-self: start; }
.soundcloud-album-art { width: 100%; min-height: 520px; aspect-ratio: 1; object-fit: cover; }
.soundcloud-album-info { padding: 62px 48px 46px; }
.soundcloud-album-info > h2 { margin: 0; font-size: clamp(3rem, 6vw, 5.5rem); line-height: .88; letter-spacing: -.07em; font-weight: 500; overflow-wrap: anywhere; }
.soundcloud-album-tracks { margin-top: 28px; }
.soundcloud-album-tracks li { display: block; min-height: 0; }
.soundcloud-album-tracks li::before { content: none; }
.soundcloud-album-tracks li button { width: 100%; min-height: 44px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 8px; padding: 0 6px; border: 0; color: white; background: transparent; text-align: left; cursor: pointer; }
.soundcloud-album-tracks li button:hover { color: #111; background: #ff6a00; }
.soundcloud-album-tracks li button span { color: rgba(255,255,255,.35); font: 300 .52rem var(--mono); }
.soundcloud-album-tracks li button:hover span { color: rgba(17,17,17,.5); }
.soundcloud-album-tracks li button strong { font-size: .76rem; font-weight: 400; }
.soundcloud-album-tracks li button i { font-size: .65rem; font-style: normal; }
.empty-track-list { padding: 18px 5px; color: rgba(255,255,255,.32); font: 300 .6rem/1.5 var(--mono); }

.video-section { padding: 120px 5vw; color: white; background: #090909; }
.video-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; padding-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.18); }
.video-heading .section-kicker { color: #ff3b30; }
.video-heading h2 { margin: 0; font-size: clamp(4rem, 10vw, 10rem); line-height: .76; letter-spacing: -.09em; font-weight: 500; }
.video-heading > p { margin: 0; padding-left: 25px; border-left: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.45); font: 300 .64rem/1.7 var(--mono); text-transform: uppercase; }
.video-heading > p strong { display: block; color: #ff3b30; font: 500 3.4rem/1 var(--sans); letter-spacing: -.07em; }
.video-collection { margin-top: 85px; }
.video-subheading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 30px; }
.video-subheading p { order: 2; margin: 0 0 9px; color: rgba(255,255,255,.38); font: 300 .58rem var(--mono); text-transform: uppercase; }
.video-subheading h3 { margin: 0; font-size: clamp(3rem, 7vw, 7rem); line-height: .8; letter-spacing: -.075em; font-weight: 500; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px 18px; }
.video-card { min-width: 0; border: 1px solid rgba(255,255,255,.13); background: #121212; }
.video-card.featured { border-color: #ff3b30; box-shadow: inset 0 0 0 1px rgba(255,59,48,.18); }
.video-card.lead { grid-column: span 2; }
.video-cover { position: relative; width: 100%; display: block; padding: 0; overflow: hidden; border: 0; color: white; background: #202020; cursor: pointer; }
.video-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .55s cubic-bezier(.16,1,.3,1), filter .3s; }
.video-cover:hover img { transform: scale(1.035); filter: brightness(.68); }
.video-play { position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(0,0,0,.48); font-size: 1rem; transform: translate(-50%,-50%); transition: color .25s, border-color .25s, background .25s, transform .25s; }
.video-cover:hover .video-play { color: #090909; border-color: #ff3b30; background: #ff3b30; transform: translate(-50%,-50%) scale(1.1); }
.video-featured { position: absolute; left: 13px; top: 13px; padding: 8px 11px; color: white; background: #ff3b30; font: 500 .54rem var(--mono); letter-spacing: .08em; }
.video-card-copy { position: relative; min-height: 132px; padding: 17px 18px 20px; }
.video-card-copy p { margin: 0 0 10px; color: #ff635c; font: 400 .52rem var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.video-card-copy h4 { margin: 0; font-size: clamp(1rem, 1.45vw, 1.35rem); line-height: 1.08; letter-spacing: -.035em; font-weight: 500; overflow-wrap: anywhere; }
.video-card-copy > span { position: absolute; left: 18px; bottom: 17px; color: rgba(255,255,255,.32); font: 300 .51rem var(--mono); text-transform: uppercase; }
.video-bonus { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 45px; margin-top: 75px; padding: 45px; color: #090909; background: #ff3b30; }
.video-bonus .section-kicker { color: rgba(9,9,9,.58); }
.video-bonus h3 { margin: 0; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .86; letter-spacing: -.075em; font-weight: 500; }
.video-bonus .video-card { border-color: #090909; background: #090909; }
.remix-collection { padding-top: 20px; }
.video-dialog { width: min(1120px, calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 0; overflow: auto; border: 0; color: white; background: #101010; box-shadow: 0 30px 100px rgba(0,0,0,.72); }
.video-dialog::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(15px); }
.video-dialog-close { position: fixed; z-index: 5; top: 28px; right: 28px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; background: rgba(0,0,0,.6); font-size: 1.35rem; cursor: pointer; }
.video-frame { width: 100%; aspect-ratio: 16 / 9; background: black; }
.video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-dialog-copy { padding: 32px 38px 40px; }
.video-dialog-copy .section-kicker { color: #ff3b30; }
.video-dialog-copy h2 { margin: 0 0 28px; max-width: 900px; font-size: clamp(2rem, 4.5vw, 4.8rem); line-height: .9; letter-spacing: -.06em; font-weight: 500; }
.video-youtube-link { color: white; border-color: #ff3b30; background: #ff3b30; }

/* Premiers sons / face cachée */
.first-sounds-entry { padding: 0; border: 0; color: inherit; background: none; font: inherit; text-decoration: underline dotted rgba(255,255,255,.35); text-underline-offset: 3px; cursor: pointer; opacity: .58; }
.first-sounds-entry:hover { color: var(--acid); opacity: 1; }
.secret-track button { color: #7dfdff !important; background: repeating-linear-gradient(90deg, rgba(0,255,255,.04) 0 2px, transparent 2px 7px) !important; }
.secret-track button:hover { color: #111 !important; background: #7dfdff !important; }
.archive-gate, .secret-code-dialog, .mx3-player-dialog { padding: 0; border: 2px solid #a5f3ff; color: #dffcff; background: #07141b; box-shadow: 0 0 0 4px #111, 0 0 55px rgba(0,228,255,.35); font-family: "Courier New", monospace; }
.archive-gate::backdrop, .secret-code-dialog::backdrop, .mx3-player-dialog::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.archive-gate { width: min(520px, calc(100% - 30px)); }
.archive-gate form { padding: 52px 42px 36px; background: repeating-linear-gradient(0deg, rgba(101,240,255,.025) 0 1px, transparent 1px 4px); }
.archive-gate-close, .secret-code-close, .mx3-player-close { position: absolute; z-index: 3; top: 10px; right: 10px; width: 32px; height: 28px; border: 1px solid #a5f3ff; color: #a5f3ff; background: #102a35; font: 700 1rem "Courier New", monospace; cursor: pointer; }
.archive-terminal-line { margin: 0 0 10px; color: #67ff8f; font-size: .73rem; }
.archive-gate h2 { margin: 0; color: white; font: 900 clamp(2.4rem, 9vw, 4.8rem)/.9 Impact, sans-serif; letter-spacing: .02em; text-shadow: 3px 3px 0 #087c91; }
.archive-gate form > p:nth-of-type(2) { color: #f1ff5a; font-size: .75rem; }
.archive-gate label { display: grid; grid-template-columns: auto 1fr; align-items: center; margin-top: 28px; border: 1px solid #3b7b89; background: #020709; }
.archive-gate label span { padding: 0 12px; color: #62ff8a; font-size: .78rem; }
.archive-gate input { min-width: 0; height: 54px; border: 0; outline: 0; color: #a5f3ff; background: transparent; font: 700 1.4rem "Courier New", monospace; letter-spacing: .5em; }
.archive-gate button[type="submit"] { width: 100%; min-height: 48px; margin-top: 12px; border: 1px solid #a5f3ff; color: #001014; background: #a5f3ff; font: 700 .78rem "Courier New", monospace; cursor: pointer; }
.archive-gate-error { min-height: 1.2em; margin: 16px 0 0 !important; color: #ff5d6c !important; font-size: .7rem !important; }
.archive-gate form.denied { animation: retro-denied .25s steps(2) 2; }
@keyframes retro-denied { 50% { transform: translateX(7px); filter: hue-rotate(90deg); } }
.secret-code-dialog { width: min(430px, calc(100% - 30px)); padding: 48px 30px 38px; text-align: center; background: repeating-linear-gradient(0deg, #06151c 0 3px, #081d25 3px 6px); }
.secret-code-dialog p { margin: 0; color: #71ff92; font-size: .68rem; letter-spacing: .13em; }
.secret-code-dialog h2 { margin: 10px 0 0; color: #eaff56; font: 900 clamp(6rem, 22vw, 10rem)/.9 Impact, sans-serif; letter-spacing: .08em; text-shadow: 4px 4px 0 #007a93, 0 0 28px rgba(234,255,86,.5); }
.secret-code-dialog small { color: #79eaff; letter-spacing: .18em; }
body.archive-mode { min-width: 0; overflow-x: hidden; color: #d8faff; background: #061018; font-family: Verdana, Geneva, sans-serif; }
.first-sounds { position: relative; min-height: 100vh; color: #d8faff; background: #061018 radial-gradient(circle at 85% 8%, rgba(0,218,255,.16), transparent 34%); font-family: Verdana, Geneva, sans-serif; }
.first-sounds::before { content: ""; position: fixed; z-index: 50; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.16) 3px 4px); mix-blend-mode: multiply; }
.retro-header { position: sticky; z-index: 40; top: 0; min-height: 58px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 6px 22px; border-bottom: 2px solid #52e8ff; color: #baf8ff; background: linear-gradient(#173a49, #07131b 55%, #02080c); box-shadow: 0 3px 0 #000, 0 5px 20px rgba(0,0,0,.7); }
.retro-logo { justify-self: start; padding: 0; border: 0; color: white; background: transparent; text-align: left; cursor: pointer; }
.retro-logo span { display: block; font: 900 1.35rem Impact, sans-serif; letter-spacing: .12em; text-shadow: 2px 2px 0 #087c91; }
.retro-logo small { display: block; color: #74ff96; font: .55rem "Courier New", monospace; }
.retro-header p { margin: 0; font: 700 .62rem "Courier New", monospace; letter-spacing: .1em; }
.retro-online { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #53ff77; box-shadow: 0 0 10px #53ff77; animation: retro-blink 1.2s steps(1) infinite; }
@keyframes retro-blink { 50% { opacity: .25; } }
.retro-exit { justify-self: end; min-height: 34px; padding: 0 13px; border: 1px solid #4d9bac; color: #baf8ff; background: linear-gradient(#194455, #09202a); font: 700 .6rem "Courier New", monospace; cursor: pointer; }
.retro-marquee { overflow: hidden; border-bottom: 1px solid #59717b; color: #071018; background: #eaff56; font: 700 .64rem/28px "Courier New", monospace; white-space: nowrap; }
.retro-marquee span { display: inline-block; min-width: max-content; padding-left: 100%; animation: retro-marquee 22s linear infinite; }
@keyframes retro-marquee { to { transform: translateX(-100%); } }
.retro-shell { width: min(1440px, 100%); display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 16px; margin: 0 auto; padding: 18px; }
.retro-sidebar, .retro-main { border: 1px solid #2f6e7d; background: rgba(3,14,20,.86); box-shadow: inset 0 0 0 1px #000, 0 5px 22px rgba(0,0,0,.45); }
.retro-sidebar { align-self: start; padding: 10px; }
.retro-profile-picture { aspect-ratio: 1; display: grid; place-content: center; border: 5px ridge #5b8a96; color: white; background: radial-gradient(circle, #155269 0 14%, #07131a 15% 35%, #0d3645 36% 39%, #03090d 40%); text-align: center; }
.retro-profile-picture span { font: 900 2.6rem Impact, sans-serif; letter-spacing: .08em; text-shadow: 3px 3px 0 #007f98; }
.retro-profile-picture small { color: #eaff56; font: .54rem "Courier New", monospace; }
.retro-profile-copy { padding: 18px 5px; border-bottom: 1px dashed #397080; }
.retro-profile-copy h2 { margin: 4px 0 10px; font: 900 2.2rem/1 Impact, sans-serif; letter-spacing: .06em; }
.retro-profile-copy p { margin: 0; color: #83b8c4; font: .68rem/1.6 "Courier New", monospace; }
.retro-profile-copy .retro-status { color: #56ff7d; font-size: .56rem; }
.retro-counters { margin: 12px 0; }
.retro-counters div { display: flex; justify-content: space-between; padding: 8px; border-bottom: 1px solid #183c47; background: rgba(0,213,255,.035); }
.retro-counters dt { color: #84acb5; font: .55rem "Courier New", monospace; }
.retro-counters dd { margin: 0; color: #eaff56; font: .7rem "Courier New", monospace; letter-spacing: .12em; }
.retro-warning { padding: 12px; border: 1px solid #695d19; color: #d4ca74; background: rgba(234,255,86,.06); font: .6rem/1.5 "Courier New", monospace; }
.retro-warning strong { color: #eaff56; }
.retro-warning p { margin: 6px 0 0; }
.retro-main { min-width: 0; }
.retro-hero { position: relative; min-height: 390px; display: flex; flex-direction: column; justify-content: flex-end; padding: 45px; overflow: hidden; border-bottom: 2px solid #59e8ff; background: linear-gradient(135deg, rgba(1,9,13,.2), rgba(0,206,255,.17)), repeating-linear-gradient(90deg, transparent 0 59px, rgba(83,232,255,.06) 59px 60px), #06141c; }
.retro-hero::after { content: "2010"; position: absolute; right: -18px; top: -45px; color: rgba(104,239,255,.06); font: 900 18rem/1 Impact, sans-serif; transform: rotate(7deg); }
.retro-hero > p { position: relative; z-index: 1; margin: 0 0 12px; color: #57ff82; font: .65rem "Courier New", monospace; letter-spacing: .14em; }
.retro-hero h1 { position: relative; z-index: 1; margin: 0; color: white; font: 900 clamp(5rem, 13vw, 11.5rem)/.66 Impact, sans-serif; letter-spacing: -.02em; text-shadow: 5px 5px 0 #006d84, 9px 9px 0 #031219; }
.retro-hero h1 span { color: #eaff56; }
.retro-hero-meta { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 35px; }
.retro-hero-meta span { padding: 7px 10px; border: 1px solid #4f8793; color: #9edce7; background: #07131a; font: .58rem "Courier New", monospace; }
.retro-hero-meta b { color: #eaff56; font-weight: inherit; }
.origins-profiles { display: grid; grid-template-columns: minmax(190px,.55fr) 1.45fr; align-items: center; gap: 22px; padding: 22px; border-bottom: 1px solid #326a78; background: #07141b; }
.origins-profiles > div:first-child p { margin: 0 0 5px; color: #58ff82; font: .55rem "Courier New", monospace; }
.origins-profiles h2 { margin: 0; color: white; font: 900 2rem/1 Impact, sans-serif; letter-spacing: .06em; }
.origins-profile-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.origins-profile-card { min-width: 0; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px; padding: 8px; border: 2px outset #4f7c87; color: #c9f8ff; background: linear-gradient(#143441,#091a21); }
.origins-profile-card:hover { color: #071018; background: #eaff56; }
.origins-profile-art { width: 52px; height: 52px; object-fit: cover; }
.origins-profile-card > span { min-width: 0; display: flex; flex-direction: column; }
.origins-profile-card small { color: #5d9ba8; font: .48rem "Courier New", monospace; }
.origins-profile-card strong { overflow: hidden; font-size: .75rem; text-overflow: ellipsis; white-space: nowrap; }
.origins-profile-card i { color: #6fa2ad; font: normal .5rem "Courier New", monospace; }
.origins-profile-card b { color: #61ff87; font: .5rem "Courier New", monospace; }
.origins-profile-card:hover small, .origins-profile-card:hover i, .origins-profile-card:hover b { color: #18333a; }
.retro-toolbar { display: grid; grid-template-columns: 1fr minmax(220px,340px); gap: 14px; padding: 14px; border-bottom: 1px solid #326a78; background: linear-gradient(#102e39, #07171e); }
.retro-tabs { display: flex; gap: 5px; }
.retro-tabs button { min-height: 42px; padding: 0 14px; border: 1px outset #65929d; color: #a7dbe5; background: linear-gradient(#244a57, #10242c); font: 700 .59rem "Courier New", monospace; cursor: pointer; }
.retro-tabs button.active, .retro-tabs button:hover { color: #071018; border-color: #eaff56; background: #eaff56; }
.retro-search { display: grid; grid-template-columns: auto 1fr; align-items: center; border: 1px inset #60919c; color: #67ff8b; background: #02080c; }
.retro-search span { padding-left: 10px; font: .56rem "Courier New", monospace; }
.retro-search input { min-width: 0; height: 40px; border: 0; outline: 0; color: #c9faff; background: transparent; font: .7rem "Courier New", monospace; }
.retro-panel { padding: 20px; }
.mx3-playlist-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 15px; }
.mx3-playlist-card { min-width: 0; border: 2px ridge #60808a; color: #caf8ff; background: #0b1b22; box-shadow: 4px 4px 0 #020608; }
.origins-album-open { width: 100%; display: block; padding: 0; border: 0; color: inherit; background: transparent; text-align: left; cursor: pointer; }
.origins-album-open:hover .mx3-playlist-art { filter: brightness(.58) contrast(1.1); }
.mx3-playlist-window, .mx3-player-titlebar { min-height: 26px; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 0 7px; color: white; background: linear-gradient(90deg, #005d82, #178ca2); font: 700 .54rem "Courier New", monospace; }
.mx3-playlist-window i, .mx3-player-titlebar i { font-style: normal; white-space: nowrap; }
.mx3-playlist-art, .mx3-artwork-missing { width: 100%; aspect-ratio: 1; object-fit: cover; }
.mx3-artwork-missing { display: grid; place-content: center; color: #5592a0; background: repeating-linear-gradient(45deg, #08151b 0 8px, #0e252e 8px 16px); text-align: center; }
.mx3-artwork-missing span { font: 900 2rem Impact, sans-serif; letter-spacing: .08em; }
.mx3-artwork-missing small { font: .5rem "Courier New", monospace; }
.mx3-playlist-copy { padding: 13px; }
.mx3-playlist-copy small { color: #5cff82; font: .53rem "Courier New", monospace; }
.mx3-playlist-copy strong { min-height: 2.2em; display: block; margin: 6px 0 16px; overflow-wrap: anywhere; font: 700 1rem/1.1 Verdana, sans-serif; }
.mx3-playlist-copy i { display: block; color: #eaff56; font: normal 700 .55rem "Courier New", monospace; }
.origins-single-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
.origins-single-card { min-width: 0; min-height: 88px; display: grid; grid-template-columns: 34px 68px minmax(0,1fr) auto; align-items: center; gap: 11px; padding: 8px; border: 2px outset #527d88; color: #c9f8ff; background: linear-gradient(100deg,#102b35,#07141a); text-align: left; cursor: pointer; }
.origins-single-card:hover { color: #061018; border-color: #eaff56; background: #eaff56; }
.origins-single-index { color: #568895; font: .58rem "Courier New", monospace; text-align: center; }
.origins-single-art, .origins-single-card > .mx3-artwork-missing { width: 68px; height: 68px; object-fit: cover; aspect-ratio: auto; }
.origins-single-card > .mx3-artwork-missing span { font-size: .8rem; }
.origins-single-card > .mx3-artwork-missing small { display: none; }
.origins-single-copy { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.origins-single-copy small, .origins-single-copy i { color: #65a5b3; font: normal .49rem "Courier New", monospace; }
.origins-single-copy strong { overflow: hidden; font: 700 .75rem Verdana,sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.origins-single-card > b { color: #65ff8a; font: .5rem "Courier New", monospace; }
.origins-single-card:hover .origins-single-index, .origins-single-card:hover small, .origins-single-card:hover i, .origins-single-card:hover > b { color: #193840; }
.origins-source-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.origins-source-card { min-width: 0; display: grid; grid-template-columns: 92px minmax(0,1fr) auto; align-items: center; gap: 14px; min-height: 120px; padding: 14px; border: 3px ridge #58828d; color: #caf8ff; background: linear-gradient(135deg,#12313c,#061218); box-shadow: 4px 4px 0 #020608; }
.origins-source-card:hover { color: #061018; border-color: #eaff56; background: #eaff56; }
.origins-source-platform { display: grid; place-items: center; align-self: stretch; padding: 8px; border: 1px inset #5b8894; color: #eaff56; background: #02080b; font: 900 .7rem "Courier New",monospace; text-align: center; overflow-wrap: anywhere; }
.origins-source-card > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.origins-source-card small, .origins-source-card i { color: #68a5b2; font: normal .5rem "Courier New",monospace; }
.origins-source-card strong { font: 900 1.15rem Verdana,sans-serif; }
.origins-source-card code { overflow: hidden; color: #8fdbe8; font: .52rem "Courier New",monospace; text-overflow: ellipsis; white-space: nowrap; }
.origins-source-card > b { color: #65ff8a; font: .53rem "Courier New",monospace; }
.origins-source-card:hover small, .origins-source-card:hover i, .origins-source-card:hover code, .origins-source-card:hover > b { color: #193840; }
.mx3-track-list { border: 2px inset #547781; background: #02080b; }
.mx3-track { width: 100%; min-height: 62px; display: grid; grid-template-columns: 44px 46px minmax(180px,1fr) 62px 55px 68px; align-items: center; gap: 10px; padding: 7px 10px; border: 0; border-bottom: 1px dotted #26505b; color: #c9f8ff; background: transparent; text-align: left; cursor: pointer; }
.mx3-track:nth-child(even) { background: rgba(70,205,235,.035); }
.mx3-track:hover { color: #02080b; background: #eaff56; }
.mx3-track-index, .mx3-track > span:nth-last-of-type(1), .mx3-track time { color: #568895; font: .59rem "Courier New", monospace; }
.mx3-track:hover .mx3-track-index, .mx3-track:hover > span, .mx3-track:hover time, .mx3-track:hover small { color: #18333a; }
.mx3-track-art { width: 46px; height: 46px; object-fit: cover; }
.mx3-track .mx3-artwork-missing { width: 46px; height: 46px; }
.mx3-track .mx3-artwork-missing span { font-size: .7rem; }
.mx3-track .mx3-artwork-missing small { display: none; }
.mx3-track-title { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.mx3-track-title strong { overflow: hidden; font-size: .75rem; text-overflow: ellipsis; white-space: nowrap; }
.mx3-track-title small { color: #6d9ba6; font: .53rem "Courier New", monospace; }
.mx3-track b { justify-self: end; color: #6dff91; font: .57rem "Courier New", monospace; }
.retro-empty { margin: 20px; padding: 25px; border: 1px dashed #ff5e6c; color: #ff7d88; font: 700 .7rem "Courier New", monospace; text-align: center; }
.retro-footer { min-height: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; border-top: 1px solid #315d68; color: #5f8d97; background: #02080c; font: .52rem "Courier New", monospace; }
.mx3-player-dialog { width: min(980px, calc(100% - 28px)); max-height: calc(100svh - 28px); overflow: auto; }
.mx3-player-window { background: #07151b; }
.origins-back { margin: 12px 12px 0; padding: 9px 12px; border: 2px outset #6793a0; color: #c5f7ff; background: linear-gradient(#244a57,#10242c); font: 700 .58rem "Courier New", monospace; cursor: pointer; }
.origins-back:hover { color: #071018; background: #eaff56; }
.origins-album-layout { display: grid; grid-template-columns: 310px minmax(0,1fr); gap: 28px; padding: 22px 30px 34px; }
.origins-album-cover { align-self: start; }
.origins-album-cover .mx3-player-art, .origins-album-cover .mx3-artwork-missing { width: 100%; border: 3px ridge #5e8994; }
.origins-album-cover > span { display: block; padding: 9px; color: #061018; background: #eaff56; font: 700 .55rem "Courier New", monospace; text-align: center; }
.origins-album-info > p { margin: 0 0 7px; color: #60ff87; font: .56rem "Courier New", monospace; }
.origins-album-info h2 { margin: 0 0 20px; color: white; font: 900 clamp(2.6rem,6vw,5.2rem)/.86 Impact,sans-serif; letter-spacing: .02em; overflow-wrap: anywhere; }
.origins-album-info ol { max-height: 440px; margin: 0; padding: 0; overflow: auto; border: 2px inset #547781; list-style: none; background: #02080b; }
.origins-album-info li button { width: 100%; min-height: 46px; display: grid; grid-template-columns: 34px minmax(0,1fr) 46px 55px; align-items: center; gap: 8px; padding: 5px 8px; border: 0; border-bottom: 1px dotted #26505b; color: #c9f8ff; background: transparent; text-align: left; cursor: pointer; }
.origins-album-info li button:hover { color: #071018; background: #eaff56; }
.origins-protected-track { min-height: 46px; display: grid; grid-template-columns: 34px minmax(0,1fr) 46px 65px; align-items: center; gap: 8px; padding: 5px 8px; border-bottom: 1px dotted #26505b; color: #b5d6dc; background: rgba(255,255,255,.018); }
.origins-protected-track > span, .origins-protected-track time { color: #568895; font: .55rem "Courier New",monospace; }
.origins-protected-track strong { font-size: .7rem; }
.origins-protected-track i { color: #ffbd5e; font: normal 700 .48rem "Courier New",monospace; }
.origins-protected-notice { display: flex; flex-direction: column; gap: 5px; margin: 15px 0 0; padding: 12px; border: 1px solid #a86727; color: #d7b98f; background: rgba(255,142,40,.08); font: .55rem/1.5 "Courier New",monospace; }
.origins-protected-notice strong { color: #ffbd5e; }
.origins-album-info li span, .origins-album-info li time { color: #568895; font: .53rem "Courier New", monospace; }
.origins-album-info li strong { overflow: hidden; font-size: .68rem; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.origins-album-info li i { color: #61ff87; font: normal .52rem "Courier New", monospace; }
.origins-album-info li button:hover span, .origins-album-info li button:hover time, .origins-album-info li button:hover i { color: #18333a; }
.origins-source-link { display: inline-block; margin-top: 16px; color: #eaff56; font: 700 .55rem "Courier New", monospace; }
.mx3-player-body { display: grid; grid-template-columns: 260px 1fr; gap: 28px; padding: 34px; }
.mx3-player-art { width: 260px; aspect-ratio: 1; object-fit: cover; border: 3px ridge #5e8994; }
.mx3-player-body > div:last-child > p { margin: 0 0 8px; color: #60ff87; font-size: .58rem; }
.mx3-player-body h2 { margin: 0 0 22px; color: white; font: 900 clamp(2rem, 6vw, 4rem)/.9 Impact, sans-serif; letter-spacing: .03em; }
.mx3-player-body iframe { width: 100%; height: 90px; border: 0; background: #111; }
.mx3-player-body a { display: inline-block; margin-top: 20px; color: #eaff56; font-size: .62rem; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 65px; padding-top: 145px; }
  .hero h1 { font-size: clamp(5.4rem, 25vw, 10rem); }
  .hero-art { width: min(72vw, 520px); justify-self: center; }
  .manifesto { grid-template-columns: 1fr; gap: 10px; }
  .manifesto p:nth-child(n) { text-align: left; }
  .hub-promo { min-height: 280px; padding: 42px; }
  .album-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listen-section { grid-template-columns: 1fr; }
  .soundcloud-hero { grid-template-columns: 1fr; }
  .soundcloud-stats { padding: 0; border: 0; }
  .soundcloud-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bestof-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .soundcloud-album-layout { grid-template-columns: 1fr; }
  .soundcloud-album-visual { position: static; }
  .soundcloud-album-art { min-height: 0; }
  .video-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-card.lead { grid-column: 1 / -1; }
  .video-bonus { grid-template-columns: 1fr; }
  .retro-shell { grid-template-columns: 190px minmax(0,1fr); padding: 10px; gap: 10px; }
  .retro-profile-picture span { font-size: 1.8rem; }
  .retro-hero { min-height: 330px; padding: 30px; }
  .origins-profiles { grid-template-columns: 1fr; }
  .origins-profile-grid { grid-template-columns: 1fr; }
  .retro-toolbar { grid-template-columns: 1fr; }
  .mx3-playlist-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .origins-single-grid, .origins-source-grid { grid-template-columns: 1fr; }
  .origins-album-layout { grid-template-columns: 240px minmax(0,1fr); padding-inline: 20px; }
}

@media (max-width: 640px) {
  .site-header { height: 70px; }
  .header-cta { padding: 8px 13px; }
  .platform-trigger { padding: 0 11px; }
  .platform-trigger b { display: none; }
  .hero { padding: 112px 20px 70px; }
  .hero-line span { margin: 0 4px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-art { width: 78vw; }
  .note-two { right: -4%; }
  .albums-section, .catalogue-section, .listen-section { padding: 85px 20px; }
  .soundcloud-library { padding: 85px 20px; }
  .hub-promo { grid-template-columns: 1fr; min-height: 350px; margin: 20px 20px 0; padding: 36px 25px; }
  .hub-badge { width: 105px; height: 105px; justify-self: end; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 40px; }
  .section-count { display: flex; align-items: baseline; gap: 10px; padding: 0; border: 0; }
  .section-count strong { font-size: 2rem; }
  .album-grid { grid-template-columns: 1fr; gap: 48px; }
  .release-head { display: none; }
  .release-row { min-height: 76px; grid-template-columns: 78px 1fr 22px; gap: 12px; }
  .release-row > span:nth-of-type(1), .release-row > span:nth-of-type(2) { display: none; }
  .release-row time { font-size: .54rem; }
  .platform-list a { grid-template-columns: 42px 1fr auto; }
  footer { grid-template-columns: 1fr 1fr; }
  footer p:nth-child(2) { display: none; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-cover { position: static; height: auto; max-height: none; }
  .dialog-info { padding: 42px 24px 35px; }
  .dialog-close { top: 26px; right: 26px; }
  .platform-dialog { padding: 55px 22px 30px; }
  .platform-options { grid-template-columns: 1fr; }
  .soundcloud-controls { grid-template-columns: 1fr; margin-top: 55px; }
  .soundcloud-tools { align-items: stretch; flex-direction: column; }
  .soundcloud-sort { display: grid; grid-template-columns: auto 1fr 1fr 1fr; }
  .album-controls { display: grid; }
  .soundcloud-sort button { padding: 0 8px; }
  .soundcloud-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .soundcloud-tabs button:last-child { grid-column: 1 / -1; }
  .soundcloud-grid { grid-template-columns: 1fr; }
  .bestof-heading { grid-template-columns: 1fr; }
  .bestof-heading > p:last-child { text-align: left; }
  .bestof-grid { grid-template-columns: 1fr; }
  .soundcloud-track { grid-template-columns: 30px 46px 1fr 22px; min-height: 68px; gap: 10px; }
  .soundcloud-track-art { width: 46px; height: 46px; }
  .soundcloud-track-genre, .soundcloud-track time { display: none; }
  .soundcloud-detail-layout { grid-template-columns: 1fr; }
  .soundcloud-detail-art { min-height: auto; aspect-ratio: 1; }
  .soundcloud-detail-info { padding: 42px 23px; }
  .soundcloud-album-info { padding: 42px 23px; }
  .spotify-embed, .apple-embed { height: 360px; }
  .video-section { padding: 85px 20px; }
  .video-heading { grid-template-columns: 1fr; }
  .video-heading > p { padding: 0; border: 0; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card.lead { grid-column: auto; }
  .video-subheading { align-items: start; flex-direction: column; }
  .video-subheading p { order: 0; }
  .video-bonus { margin-top: 55px; padding: 28px 20px; }
  .video-dialog-copy { padding: 28px 22px 34px; }
  .video-dialog-close { top: 24px; right: 24px; }
  .archive-gate form { padding: 50px 22px 28px; }
  .retro-header { grid-template-columns: 1fr auto; padding: 6px 12px; }
  .retro-header p { display: none; }
  .retro-shell { grid-template-columns: 1fr; padding: 7px; }
  .retro-sidebar { display: grid; grid-template-columns: 92px 1fr; gap: 10px; }
  .retro-profile-copy { align-self: center; padding: 5px 0; border: 0; }
  .retro-profile-copy h2 { font-size: 1.65rem; }
  .retro-counters, .retro-warning { grid-column: 1 / -1; }
  .retro-hero { min-height: 300px; padding: 25px 18px; }
  .retro-hero::after { font-size: 11rem; }
  .retro-hero h1 { font-size: clamp(4.5rem, 25vw, 7rem); }
  .retro-hero-meta { margin-top: 26px; }
  .origins-profiles { padding: 17px 12px; }
  .origins-profile-grid { grid-template-columns: 1fr; }
  .retro-tabs { display: grid; grid-template-columns: 1fr; }
  .retro-tabs button { padding: 0 6px; }
  .retro-panel { padding: 10px; }
  .mx3-playlist-grid { grid-template-columns: 1fr; }
  .origins-single-card { grid-template-columns: 28px 58px minmax(0,1fr); }
  .origins-single-art, .origins-single-card > .mx3-artwork-missing { width: 58px; height: 58px; }
  .origins-single-card > b { display: none; }
  .origins-source-card { grid-template-columns: 72px minmax(0,1fr); }
  .origins-source-card > b { display: none; }
  .mx3-track { grid-template-columns: 34px 40px minmax(0,1fr) 48px; gap: 7px; padding-inline: 6px; }
  .mx3-track-art, .mx3-track .mx3-artwork-missing { width: 40px; height: 40px; }
  .mx3-track > span:nth-last-of-type(1), .mx3-track time { display: none; }
  .mx3-track b { font-size: 0; }
  .mx3-track b::after { content: ">"; font-size: .7rem; }
  .retro-footer { flex-direction: column; }
  .origins-album-layout { grid-template-columns: 1fr; padding: 16px 14px 24px; }
  .origins-album-info h2 { font-size: 3rem; }
  .origins-album-info li button { grid-template-columns: 28px minmax(0,1fr) 43px; }
  .origins-protected-track { grid-template-columns: 28px minmax(0,1fr) 43px; }
  .origins-protected-track i { display: none; }
  .origins-album-info li time { display: none; }
  .mx3-player-body { grid-template-columns: 1fr; padding: 22px; }
  .mx3-player-art, .mx3-player-body > .mx3-artwork-missing { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}
.hero-art { cursor: pointer; }
.album-date-summary,
.dialog-date-summary { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.album-date-summary span,
.dialog-date-summary span { white-space: nowrap; }
.dialog-date-summary { margin: 8px 0 16px; color: rgba(255,255,255,.58); font: 400 .62rem var(--mono); letter-spacing: .04em; text-transform: uppercase; }
