:root { color-scheme: dark; --accent: #d4a778; }
* { margin:0; padding:0; box-sizing: border-box; }
html, body { background: #000; color: #ddd;
             font-family: ui-monospace, "SF Mono", monospace;
             min-height: 100%; overflow-x: hidden; }

header {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; z-index: 10;
  font-size: 11px; letter-spacing: 4px; color: #555;
}
.back {
  color: #888; text-decoration: none;
  font-size: 18px; line-height: 1;
  padding: 6px 12px;
  border: 1px solid #1a1a1a;
  background: rgba(0,0,0,0.6);
  transition: color .25s, border-color .25s;
}
.back:hover { color: #fff; border-color: var(--accent); }
.path { text-transform: lowercase; user-select: none; }

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 22vh 32px 12vh;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 50% 40%,
              color-mix(in srgb, var(--accent) 6%, transparent) 0%,
              transparent 60%);
  pointer-events: none;
}

.kind {
  font-size: 11px; letter-spacing: 8px;
  color: var(--accent); margin-bottom: 28px;
}
.name {
  font-size: clamp(48px, 9vw, 120px);
  line-height: 1; letter-spacing: -0.02em;
  font-weight: 900;
  color: #f4f1e8;
}
.name::after {
  content: ''; display: block;
  width: 70px; height: 3px;
  background: var(--accent);
  margin-top: 26px;
}
.sub {
  font-size: 14px; color: #888;
  font-style: italic;
  margin-top: 14px;
  margin-bottom: 80px;
}

/* bio */
.bio {
  font-size: 16px; line-height: 1.75; color: #ccc;
  white-space: pre-wrap;
  margin-bottom: 56px;
}
.bio:empty { display: none; }

/* releases */
.releases:empty { display: none; }
.release {
  border-top: 1px solid #131313;
  padding: 36px 0;
}
.release:last-child { border-bottom: 1px solid #131313; }
.release-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f1e8;
  margin-bottom: 6px;
}
.release-meta {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: lowercase;
  color: #777;
  margin-bottom: 22px;
}
.release-meta::before { content: ''; display: inline-block; width: 18px; height: 1px;
                        background: var(--accent); vertical-align: middle; margin-right: 10px; }

.release-cover { margin-bottom: 18px; }
.release-cover img {
  display: block; max-width: 100%; height: auto;
  border: 1px solid #1a1a1a;
}

.release-embed { margin-bottom: 18px; }
.release-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  border: 1px solid #1a1a1a;
  background: #050505;
}
.release-embed.audio {
  border: 1px solid #1a1a1a;
  background: #050505;
  padding: 18px;
}
.release-embed.audio audio { width: 100%; display: block; }

/* tracklist style vinyle */
.release-tracks {
  list-style: none;
  margin: 18px 0;
  border-top: 1px solid #131313;
}
.release-tracks li {
  border-bottom: 1px solid #131313;
  font-size: 13px;
  color: #bbb;
}
.release-tracks li > a,
.release-tracks li > span:first-child + span,
.release-tracks li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 10px 4px;
}
.release-tracks li > a {
  color: inherit; text-decoration: none;
  transition: color .2s, background .2s;
  width: 100%;
}
.release-tracks li > a:hover { color: #fff; background: #0a0a0a; }
.release-tracks .t-pos {
  font-size: 11px; letter-spacing: 2px;
  color: var(--accent);
  min-width: 32px;
  font-weight: bold;
}
.release-tracks .t-title { flex: 1; }
.release-tracks li > a::after {
  content: '↗'; color: #444;
  margin-left: auto; font-size: 11px;
  transition: color .2s;
}
.release-tracks li > a:hover::after { color: var(--accent); }

.release-links { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; }
.release-links li {}
.release-links a {
  font-size: 11px; letter-spacing: 3px; text-transform: lowercase;
  color: #aaa; text-decoration: none;
  border-bottom: 1px solid #2a2a2a;
  padding: 2px 0;
  transition: color .2s, border-color .2s;
}
.release-links a:hover { color: #fff; border-color: var(--accent); }

/* liens globaux */
.global-links {
  list-style: none;
  margin-top: 56px;
  display: flex; flex-wrap: wrap; gap: 18px;
}
.global-links:empty { display: none; }
.global-links a {
  display: inline-block;
  color: #ddd; text-decoration: none;
  border-bottom: 1px solid #2a2a2a;
  padding: 3px 2px;
  transition: color .2s, border-color .2s;
}
.global-links a::before { content: '→ '; color: var(--accent); }
.global-links a:hover { color: #fff; border-color: var(--accent); }

/* nav */
.nav {
  display: flex; justify-content: space-between;
  margin-top: 80px; padding-top: 24px;
  border-top: 1px solid #131313;
  font-size: 11px; letter-spacing: 3px; color: #555;
}
.nav a {
  color: #888; text-decoration: none;
  transition: color .2s;
  max-width: 45%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav a:hover { color: var(--accent); }
.nav a:empty { display: none; }

/* page vide */
.empty-state {
  margin-top: 40px;
  padding: 32px;
  border: 1px dashed #1a1a1a;
  color: #444;
  font-size: 11px; letter-spacing: 4px;
  text-align: center;
}
