/* =============================================================
   SHOOTING GALLERIES — EPK v3 / GOTHIC.SYS
   Late-90s gothic horror computer game aesthetic
   ============================================================= */

/* ---------- TOKENS ------------------------------------------ */
:root {
  --bg:        #0a0a10;
  --bg-2:      #14141d;
  --bg-3:      #1d1d28;
  --bone:      #ece5cf;       /* brighter — body & UI text */
  --bone-dim:  #b6ad97;       /* secondary text */
  --bone-mute: #7c7563;       /* labels, captions */

  --blood:     #c83434;       /* brighter, more readable on dark */
  --blood-hot: #e25050;
  --blood-deep:#7a1414;

  --moss:      #7a8a48;       /* lifted Silent-Hill green */
  --rust:      #e09040;       /* sodium warning */
  --aged:      #a89060;

  --line:      #34302a;
  --line-2:    #45403a;

  --gothic:   "UnifrakturMaguntia", "UnifrakturCook", "Cormorant Garamond", serif;
  --serif:    "Cormorant Garamond", "Times New Roman", serif;
  --term:     "VT323", "IBM Plex Mono", "Courier New", monospace;
  --pixel:    "Press Start 2P", "VT323", monospace;

  --maxw: 1400px;
  --pad: clamp(1rem, 3.5vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--term);
  font-size: 20px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-shadow: 0 0 1px rgba(236,229,207,0.20); /* tiny phosphor halo */
}

::selection { background: var(--blood); color: var(--bone); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
em { font-style: italic; color: var(--rust); }

.gothic    { font-family: var(--gothic); font-weight: 400; }
.gothic-it { font-family: var(--gothic); font-style: italic; }
.cross     { color: var(--blood); font-weight: 400; }

/* =============================================================
   CRT OVERLAYS — fixed, on top of everything
   ============================================================= */
.crt-scanlines {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9996;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.0)   0px,
    rgba(0,0,0,0.0)   2px,
    rgba(0,0,0,0.18)  3px,
    rgba(0,0,0,0.18)  4px
  );
  mix-blend-mode: multiply;
}

.crt-flicker {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: rgba(216,210,188,0.015);
  animation: flicker 4.2s steps(8) infinite;
}
@keyframes flicker {
  0%, 4%   { opacity: 0.12; }
  5%       { opacity: 0.04; }
  6%, 16%  { opacity: 0.10; }
  17%      { opacity: 0.18; }
  18%, 52% { opacity: 0.10; }
  53%      { opacity: 0.05; }
  54%, 100%{ opacity: 0.12; }
}

.crt-vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  background:
    radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.35) 100%),
    /* corner darker — CRT curvature illusion (subtler now) */
    radial-gradient(circle at 0% 0%,   rgba(0,0,0,0.55), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(0,0,0,0.55), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(0,0,0,0.55), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(0,0,0,0.55), transparent 28%);
}

.crt-grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1.2 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grainShift 1.3s steps(5) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0);    }
  25%  { transform: translate(-3%, -2%); }
  50%  { transform: translate(2%, 3%);   }
  75%  { transform: translate(-1%, 2%);  }
  100% { transform: translate(3%, -1%);  }
}

/* =============================================================
   BOOT / PASSWORD GATE
   ============================================================= */
.gate {
  position: fixed; inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  overflow: hidden;
  transition: opacity 1.1s ease, filter 1.1s ease;
}
.gate--out {
  opacity: 0;
  filter: brightness(2.5) blur(8px);
  pointer-events: none;
}

.gate__crt {
  width: min(880px, 100%);
  font-family: var(--term);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.45;
  color: var(--bone);
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.boot {
  font-family: var(--term);
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 1.2rem;
  text-shadow:
    0 0 2px rgba(216,210,188,0.3),
    0 0 6px rgba(216,210,188,0.15);
}
.boot .ok   { color: var(--moss); }
.boot .warn { color: var(--rust); }
.boot .err  { color: var(--blood-hot); }
.boot .accent { color: var(--blood-hot); }

.gate__form { animation: bootIn 0.4s ease-out; }
@keyframes bootIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gate__line {
  display: flex;
  gap: 0.5em;
  margin-bottom: 0.6rem;
}
.prompt { color: var(--blood-hot); }
.cmd    { color: var(--bone); }

.gate__inputRow {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
  font-family: var(--term);
}
.gate__input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--bone);
  font-family: var(--term);
  font-size: 1.4em;
  letter-spacing: 0.06em;
  width: 14ch;
  text-transform: uppercase;
  caret-color: transparent; /* we render our own block cursor */
  text-shadow:
    0 0 3px rgba(216,210,188,0.6),
    0 0 8px rgba(216,210,188,0.25);
}
.cursor {
  display: inline-block;
  font-family: var(--term);
  font-size: 1.4em;
  color: var(--bone);
  animation: blink 1s steps(2) infinite;
  margin-left: -0.6em;
  text-shadow:
    0 0 4px rgba(216,210,188,0.7);
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.gate__go {
  background: transparent;
  border: 1px solid var(--bone);
  color: var(--bone);
  padding: 0.3rem 0.7rem;
  font-family: var(--term);
  font-size: 1.05em;
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: uppercase;
}
.gate__go:hover {
  background: var(--bone);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(216,210,188,0.4);
}

.gate__err {
  margin-top: 0.6rem;
  color: var(--blood-hot);
  min-height: 1.3em;
  letter-spacing: 0.04em;
  text-shadow: 0 0 5px rgba(201, 38, 38, 0.5);
}
.gate__hint {
  margin-top: 0.8rem;
  color: var(--bone-mute);
  font-size: 0.9em;
}

.gate.shake .gate__form { animation: shakeBoot 0.4s; }
@keyframes shakeBoot {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

/* gate corner glyphs */
.glyph {
  position: absolute;
  font-family: var(--term);
  font-size: 2.2rem;
  color: var(--blood);
  text-shadow: 0 0 8px rgba(160, 24, 24, 0.5);
  z-index: 2;
}
.glyph--tl { top: 1.5rem;    left: 1.5rem;  }
.glyph--tr { top: 1.5rem;    right: 1.5rem; }
.glyph--bl { bottom: 1.5rem; left: 1.5rem;  }
.glyph--br { bottom: 1.5rem; right: 1.5rem; }

/* =============================================================
   HUD / TOPBAR
   ============================================================= */
.hud {
  position: sticky;
  top: 0;
  z-index: 800;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem var(--pad);
  background: rgba(6,6,10,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hud__l, .hud__r { display: flex; align-items: center; gap: 0.6rem; }

.hud__logo {
  height: 24px;
  filter: brightness(0) invert(1) sepia(0.1) hue-rotate(340deg);
  display: none;
}
.hud__logo[src] { display: block; }

.hud__id {
  font-family: var(--term);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--blood-hot);
  text-shadow: 0 0 6px rgba(201,38,38,0.4);
}

.hud__nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}
.hud__navItem {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  transition: color 0.15s ease, text-shadow 0.15s ease;
  font-family: var(--term);
  font-size: 1.05rem;
}
.hud__navNum {
  font-family: var(--gothic);
  font-size: 1.3em;
  color: var(--blood);
}
.hud__navLabel {
  letter-spacing: 0.1em;
  color: var(--bone-dim);
}
.hud__navItem:hover .hud__navLabel {
  color: var(--bone);
  text-shadow: 0 0 8px rgba(216,210,188,0.4);
}
.hud__navItem:hover .hud__navNum { color: var(--blood-hot); }

.hud__sig {
  width: 8px; height: 8px;
  background: var(--moss);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--moss);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}
.hud__sigText {
  font-family: var(--term);
  font-size: 0.95rem;
  color: var(--moss);
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .hud { grid-template-columns: auto auto; }
  .hud__nav { display: none; }
}

/* =============================================================
   TITLE SCREEN / HERO
   ============================================================= */
.title {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  text-align: center;
  overflow: hidden;
}

/* background candlelight glow */
.title::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 70%, rgba(160,24,24,0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 50% 30%, rgba(90,107,58,0.06),  transparent 65%);
  pointer-events: none;
}

/* big game-UI brackets */
.bracket {
  position: absolute;
  width: 60px; height: 60px;
  border: 2px solid var(--blood);
  pointer-events: none;
}
.bracket--tl { top: 2rem; left: 2rem;
  border-right: none; border-bottom: none; }
.bracket--tr { top: 2rem; right: 2rem;
  border-left: none; border-bottom: none; }
.bracket--bl { bottom: 2rem; left: 2rem;
  border-right: none; border-top: none; }
.bracket--br { bottom: 2rem; right: 2rem;
  border-left: none; border-top: none; }

.title__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.title__above {
  font-family: var(--term);
  font-size: 1.1rem;
  letter-spacing: 0.45em;
  color: var(--bone-dim);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.title__name {
  font-family: var(--gothic);
  font-weight: 400;
  font-size: clamp(3.8rem, 13vw, 11rem);
  line-height: 0.95;
  margin-bottom: 1.8rem;
}
.title__nameRow {
  display: block;
  position: relative;
  text-shadow:
    0 0 12px rgba(216,210,188,0.2),
    0 0 30px rgba(216,210,188,0.08);
}
.title__nameRow--red {
  color: var(--blood);
  text-shadow:
    0 0 14px rgba(160,24,24,0.45),
    0 0 35px rgba(160,24,24,0.2);
}
/* chromatic aberration glitch — duplicated glyph layers */
.title__nameRow::before,
.title__nameRow::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}
.title__nameRow::before {
  color: rgba(90, 107, 58, 0.45);
  transform: translate(-2px, 0);
  mix-blend-mode: screen;
}
.title__nameRow::after {
  color: rgba(201, 38, 38, 0.5);
  transform: translate(2px, 0);
  mix-blend-mode: screen;
}
.title__nameRow:hover::before { animation: glitchA 0.4s steps(3); }
.title__nameRow:hover::after  { animation: glitchB 0.4s steps(3); }
@keyframes glitchA {
  0% { transform: translate(-2px, 0); }
  33% { transform: translate(-6px, 2px); }
  66% { transform: translate(0, -1px); }
  100% { transform: translate(-2px, 0); }
}
@keyframes glitchB {
  0% { transform: translate(2px, 0); }
  33% { transform: translate(6px, -2px); }
  66% { transform: translate(0, 1px); }
  100% { transform: translate(2px, 0); }
}

.title__plate {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 1.4rem;
  border: 1px solid var(--blood);
  margin-bottom: 1.8rem;
}
.title__plateOrn {
  font-family: var(--gothic);
  font-size: 1.4em;
  color: var(--blood);
}
.title__plateText {
  font-family: var(--term);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.18em;
  color: var(--bone);
  text-transform: uppercase;
}
.title__plateText .gothic-it {
  font-size: 1.15em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone);
}

.title__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  max-width: 48ch;
  margin: 0 auto 2rem;
  color: var(--bone-dim);
}

.title__bars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.title__bars span {
  width: 18px; height: 4px;
  background: var(--bone-mute);
  display: block;
}
.title__bars span:nth-child(4) { background: var(--blood); width: 28px; }

.title__shout {
  font-family: var(--term);
  font-size: 1rem;
  letter-spacing: 0.32em;
  color: var(--rust);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.title__press {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px dashed var(--line-2);
  font-family: var(--pixel);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  animation: pressPulse 2s ease-in-out infinite;
}
.title__press kbd {
  background: var(--bg-2);
  border: 1px solid var(--bone-mute);
  padding: 0.25rem 0.5rem;
  font-family: var(--pixel);
  font-size: 0.6rem;
  color: var(--bone);
}
@keyframes pressPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1;   }
}

/* =============================================================
   COMMON CHAPTER SHELL
   ============================================================= */
.chapter {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) var(--pad);
  position: relative;
}

.ch__head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem 1.5rem;
  align-items: baseline;
  margin-bottom: 3rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.ch__head::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 90px; height: 3px;
  background: var(--blood);
}
.ch__num {
  font-family: var(--gothic);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--blood);
  line-height: 1;
  grid-row: 1 / span 2;
  align-self: center;
}
.ch__title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1;
  color: var(--bone);
  text-shadow:
    0 0 14px rgba(216,210,188,0.2),
    0 0 32px rgba(216,210,188,0.07);
}
.ch__sub {
  font-family: var(--term);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  grid-column: 2;
  text-transform: uppercase;
}

/* =============================================================
   DOSSIER (Chapter I)
   ============================================================= */
.dossier {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 880px) { .dossier { grid-template-columns: 1fr; } }

.dossier__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.dossier__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(85%) contrast(1.1) sepia(0.18) hue-rotate(340deg) brightness(0.85);
}
.dossier__photo:not(:has(img))::before,
.dossier__photo:not(:has(img[src]))::before {
  content: "[ NO_IMAGE_DATA ]\Aimages/band1.jpg";
  position: absolute; inset: 0;
  display: grid;
  place-items: center;
  white-space: pre-line;
  text-align: center;
  font-family: var(--term);
  font-size: 1rem;
  color: var(--bone-mute);
  background:
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(216,210,188,0.04) 16px 17px),
    var(--bg-2);
}
.frameCorner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--blood);
  z-index: 2;
}
.frameCorner--tl { top: 6px; left: 6px;   border-right: none; border-bottom: none; }
.frameCorner--tr { top: 6px; right: 6px;  border-left: none;  border-bottom: none; }
.frameCorner--bl { bottom: 6px; left: 6px; border-right: none; border-top: none; }
.frameCorner--br { bottom: 6px; right: 6px; border-left: none;  border-top: none; }
.dossier__cap {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(6,6,10,0.85);
  padding: 0.25rem 0.5rem;
  font-family: var(--term);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--bone);
  border: 1px solid var(--line-2);
}

.dossier__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.terminal {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  font-family: var(--term);
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-bottom: 1px solid var(--line-2);
  background: var(--bg-3);
}
.terminal__bar > span:not(.terminal__name) {
  width: 9px; height: 9px;
  background: var(--bone-mute);
  display: block;
}
.terminal__bar > span:nth-child(1) { background: var(--blood); }
.terminal__bar > span:nth-child(2) { background: var(--rust); }
.terminal__bar > span:nth-child(3) { background: var(--moss); }
.terminal__name {
  margin-left: auto;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--bone-dim);
}

.terminal__body {
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.terminal__body p {
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 1.4rem;
}
.terminal__body p::before {
  content: ">";
  position: absolute;
  left: 0; top: 0;
  color: var(--blood-hot);
  font-weight: 700;
}
.terminal__body p:first-child::before { content: ">>"; color: var(--rust); }

.stats {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 1rem 1.2rem;
  font-family: var(--term);
}
.stats__head {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--blood);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--line-2);
}
.stats__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem 1.6rem;
  font-size: 1.05rem;
}
.stats__list dt {
  color: var(--bone-mute);
  letter-spacing: 0.1em;
  font-size: 0.9em;
}
.stats__list dd {
  color: var(--bone);
  margin-top: 0.1rem;
}

/* =============================================================
   ALBUM / CHAPTER SELECT
   ============================================================= */
.album__intro {
  max-width: 70ch;
  margin-bottom: 2.5rem;
}
.album__introText {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--bone-dim);
}

.chapters {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line-2);
  padding-top: 14px;
}
@media (max-width: 880px) { .chapters { grid-template-columns: 1fr; } }

.track {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.track:hover {
  background: var(--bg-3);
  border-color: var(--blood);
  transform: translateY(-2px);
}
.track.is-playing {
  border-color: var(--blood-hot);
  background: linear-gradient(90deg, rgba(160,24,24,0.12), rgba(11,11,18,0.7));
  box-shadow: 0 0 24px rgba(160, 24, 24, 0.25);
}
.track.is-playing::before {
  content: "▶ NOW PLAYING";
  position: absolute;
  top: -10px; left: 12px;
  background: var(--blood-hot);
  color: var(--bg);
  font-family: var(--pixel);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  text-shadow: none;
}

.track__row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.track__row:focus { outline: 2px solid var(--blood); outline-offset: -2px; }

.track__roman {
  font-family: var(--gothic);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--blood);
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 12px rgba(160,24,24,0.4);
}
.track.is-playing .track__roman { color: var(--blood-hot); }

.track__title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.track__title-main {
  font-family: var(--gothic);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  color: var(--bone);
}
.track.is-playing .track__title-main { color: var(--bone); }
.track__title-log {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bone-mute);
  line-height: 1.3;
}

.track__playBtn {
  width: 42px; height: 42px;
  background: transparent;
  border: 2px solid var(--bone-mute);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 1rem;
  flex-shrink: 0;
}
.track__playBtn:hover {
  border-color: var(--blood-hot);
  background: var(--blood);
  color: var(--bone);
  box-shadow: 0 0 14px rgba(201,38,38,0.5);
}
.track.is-playing .track__playBtn {
  background: var(--blood-hot);
  border-color: var(--blood-hot);
  color: var(--bone);
}
.track__playBtn .ic { width: 12px; height: 12px; }

.track__body {
  padding: 0 1.2rem;
  border-top: 1px dashed var(--line-2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}
.track.is-open .track__body {
  padding: 1rem 1.2rem;
  max-height: 320px;
  opacity: 1;
}
.track__description {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
  color: var(--bone);
}
.track__themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.track__theme {
  font-family: var(--pixel);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.55rem;
  background: var(--bg-3);
  color: var(--bone);
  border: 1px solid var(--line-2);
}
/* Silent Hill nod */
.track--sh::after {
  content: "✠ SILENT HILL TRIBUTE";
  position: absolute;
  bottom: -10px;
  right: 12px;
  background: var(--moss);
  color: var(--bg);
  font-family: var(--pixel);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  text-shadow: none;
}

.chapters__end {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--term);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--bone-mute);
  text-transform: uppercase;
}
.chapters__end > span:nth-child(2) { color: var(--blood); }

/* =============================================================
   UPCOMING ENCOUNTERS (live dates)
   ============================================================= */
.quests {
  list-style: none;
  border-top: 1px solid var(--line-2);
}
.quest {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line-2);
  position: relative;
  transition: padding-left 0.2s ease, background 0.2s ease;
}
.quest:hover {
  padding-left: 1.2rem;
  background: linear-gradient(90deg, rgba(160,24,24,0.06), transparent);
}
.quest::before {
  content: "✠";
  font-family: var(--gothic);
  font-size: 1.7rem;
  color: var(--blood);
  text-align: center;
  text-shadow: 0 0 10px rgba(160,24,24,0.5);
}

.quest__date {
  font-family: var(--term);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.12em;
  color: var(--bone);
}
.quest__venueWrap { display: flex; flex-direction: column; gap: 0.15rem; }
.quest__venue {
  font-family: var(--gothic);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1;
  color: var(--bone);
}
.quest__city {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bone-mute);
  font-size: 0.95rem;
}
.quest__status {
  font-family: var(--pixel);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--moss);
  color: var(--moss);
}

@media (max-width: 760px) {
  .quest { grid-template-columns: 40px 1fr auto; }
  .quest__date { grid-column: 2; grid-row: 1; }
  .quest__venueWrap { grid-column: 2; grid-row: 2; }
  .quest__status { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
}

.quests__note {
  margin-top: 1.5rem;
  font-family: var(--term);
  font-size: 1rem;
  color: var(--bone-mute);
  letter-spacing: 0.04em;
}
.quests__note a { color: var(--blood-hot); text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   BESTIARY (sound)
   ============================================================= */
.bestiary {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (max-width: 880px) { .bestiary { grid-template-columns: 1fr; } }

.bestiary__h {
  font-family: var(--term);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--blood);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.ffof { list-style: none; }
.ffof li {
  font-family: var(--gothic);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.05;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line-2);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  transition: color 0.2s ease, transform 0.15s ease;
  cursor: default;
}
.ffof li::before {
  content: "❦";
  font-size: 0.55em;
  color: var(--blood);
}
.ffof li:hover {
  color: var(--blood-hot);
  transform: translateX(8px);
  text-shadow: 0 0 14px rgba(201, 38, 38, 0.35);
}

.ident { list-style: none; margin-bottom: 2rem; }
.ident li {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line-2);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  align-items: center;
  color: var(--bone);
}
.ident li::before {
  content: attr(data-num);
  font-family: var(--gothic);
  font-size: 1.3rem;
  color: var(--blood);
  line-height: 1;
}

.bestiary__quote {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: start;
  padding: 1.4rem;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  margin-top: 1rem;
}
.bestiary__quoteOrn {
  font-family: var(--gothic);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blood);
}
.bestiary__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.4;
  color: var(--bone);
}

/* =============================================================
   PITCH
   ============================================================= */
.pitch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
@media (max-width: 980px) { .pitch { grid-template-columns: 1fr; } }

.pitch__card {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 1.6rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pitch__card:hover {
  border-color: var(--blood);
  transform: translateY(-3px);
}
.pitch__card--mid {
  border-color: var(--blood);
  box-shadow: 0 0 28px rgba(160, 24, 24, 0.16);
}

.pitch__cardHead {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-2);
}
.pitch__cardSeal {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 2px solid var(--blood);
  color: var(--blood);
  font-family: var(--gothic);
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(160,24,24,0.5);
}
.pitch__cardH {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1;
}

.pitch__cardCopy {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  color: var(--bone-dim);
}

.pitch__list { list-style: none; }
.pitch__list li {
  font-family: var(--term);
  font-size: 1.05rem;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-top: 1px dashed var(--line-2);
  position: relative;
  letter-spacing: 0.04em;
}
.pitch__list li:last-child { border-bottom: 1px dashed var(--line-2); }
.pitch__list li::before {
  content: "▸";
  position: absolute;
  left: 0; top: 0.55rem;
  color: var(--blood-hot);
}

/* =============================================================
   RAVEN (contact)
   ============================================================= */
.raven {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.raven::before, .raven::after {
  content: "";
  position: absolute;
  width: 30px; height: 30px;
  border: 2px solid var(--blood);
}
.raven::before { top: 14px; left: 14px;   border-right: none; border-bottom: none; }
.raven::after  { bottom: 14px; right: 14px; border-left: none;  border-top: none; }

.raven__seal {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--blood);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.raven__seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--blood);
  border-radius: 50%;
}
.raven__sealOrn {
  font-family: var(--gothic);
  font-size: 2.4rem;
  color: var(--blood);
  text-shadow: 0 0 16px rgba(160,24,24,0.5);
}

.raven__top {
  font-family: var(--term);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.raven__name {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--bone);
  text-shadow: 0 0 16px rgba(216,210,188,0.25);
}

.raven__lines {
  display: flex;
  flex-direction: column;
  border-top: 1px dashed var(--line-2);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.raven__line {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line-2);
  transition: padding-left 0.15s ease, color 0.15s ease;
}
.raven__line:hover {
  padding-left: 0.8rem;
  color: var(--blood-hot);
}
.raven__lineK {
  font-family: var(--gothic);
  font-size: 1.5rem;
  color: var(--blood);
  text-shadow: 0 0 8px rgba(160,24,24,0.4);
}
.raven__lineV {
  font-family: var(--term);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  word-break: break-all;
  letter-spacing: 0.04em;
}

/* =============================================================
   FOOTER
   ============================================================= */
.foot {
  padding: 4rem var(--pad) 8rem;
  border-top: 1px solid var(--line);
  text-align: center;
  margin-bottom: 90px; /* space for sticky player */
}
.foot__motto {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--bone);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 14px rgba(216,210,188,0.15);
}
.foot__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--term);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--bone-mute);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* =============================================================
   PIXEL AUDIO PLAYER (DAC)
   ============================================================= */
.dac {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 700;
  background: var(--bg-2);
  color: var(--bone);
  border-top: 2px solid var(--blood);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 -8px 24px rgba(160,24,24,0.18);
}
.dac.is-visible { transform: translateY(0); }
.dac[hidden] { display: none; }

.dac__inner {
  display: grid;
  grid-template-columns: auto auto minmax(140px, 240px) auto 1fr auto;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 1.2rem);
  padding: 0.7rem var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.dac__btn {
  width: 42px; height: 42px;
  background: var(--blood);
  color: var(--bone);
  border: 2px solid var(--bone);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pixel);
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.1s ease;
}
.dac__btn:hover { background: var(--blood-hot); box-shadow: 0 0 12px rgba(201,38,38,0.6); }
.dac__btn:active { transform: scale(0.94); }
.dac__icon { display: inline-block; line-height: 1; }

.dac__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  overflow: hidden;
  min-width: 0;
}
.dac__num {
  font-family: var(--pixel);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--blood-hot);
}
.dac__title {
  font-family: var(--gothic);
  font-size: 1.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bone);
}

/* VU meter cells */
.dac__vu {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 22px;
}
.dac__vu span {
  width: 3px;
  height: 4px;
  background: var(--bone-mute);
  display: block;
}
.dac.is-playing .dac__vu span {
  animation: vuPulse 0.7s ease-in-out infinite;
}
.dac.is-playing .dac__vu span:nth-child(1)  { animation-delay: 0.00s; }
.dac.is-playing .dac__vu span:nth-child(2)  { animation-delay: 0.08s; }
.dac.is-playing .dac__vu span:nth-child(3)  { animation-delay: 0.16s; }
.dac.is-playing .dac__vu span:nth-child(4)  { animation-delay: 0.24s; }
.dac.is-playing .dac__vu span:nth-child(5)  { animation-delay: 0.32s; }
.dac.is-playing .dac__vu span:nth-child(6)  { animation-delay: 0.40s; }
.dac.is-playing .dac__vu span:nth-child(7)  { animation-delay: 0.20s; }
.dac.is-playing .dac__vu span:nth-child(8)  { animation-delay: 0.45s; }
.dac.is-playing .dac__vu span:nth-child(9)  { animation-delay: 0.10s; }
.dac.is-playing .dac__vu span:nth-child(10) { animation-delay: 0.55s; }
@keyframes vuPulse {
  0%, 100% { height: 4px;  background: var(--moss); }
  40%      { height: 18px; background: var(--rust); }
  60%      { height: 14px; background: var(--blood-hot); }
}

.dac__progressWrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.dac__time {
  font-family: var(--term);
  font-size: 1rem;
  color: var(--bone-dim);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.dac__progress {
  flex: 1;
  height: 12px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  position: relative;
  cursor: pointer;
}
.dac__progress::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -10px; bottom: -10px;
}
.dac__fill {
  position: absolute;
  inset: 1px auto 1px 1px;
  width: 0%;
  background:
    repeating-linear-gradient(90deg, var(--blood) 0 5px, var(--blood-hot) 5px 6px);
  transition: width 0.15s linear;
}

.dac__close {
  background: transparent;
  border: 1px solid var(--bone-mute);
  color: var(--bone);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-family: var(--pixel);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  transition: background 0.15s ease, color 0.15s ease;
}
.dac__close:hover { background: var(--bone); color: var(--bg); }

@media (max-width: 820px) {
  .dac__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }
  .dac__vu { display: none; }
  .dac__close { grid-row: 1; }
  .dac__progressWrap { grid-column: 1 / -1; grid-row: 2; }
}

/* =============================================================
   REVEAL ON SCROLL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   JOUHATSU — concept callout (album section)
   ============================================================= */
.jouhatsu {
  margin: 2rem 0 2.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--blood);
  padding: 1.4rem 1.6rem 1.5rem;
  font-family: var(--term);
  position: relative;
  max-width: 780px;
}
.jouhatsu::before {
  content: "";
  position: absolute;
  top: 10px; right: 10px;
  width: 14px; height: 14px;
  background:
    repeating-linear-gradient(90deg, var(--blood) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(0deg,  var(--blood) 0 2px, transparent 2px 4px);
  opacity: 0.6;
}

.jouhatsu__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--line-2);
}
.jouhatsu__dot {
  width: 9px; height: 9px;
  background: var(--blood-hot);
  display: inline-block;
  box-shadow: 0 0 8px var(--blood-hot);
  animation: pulse 2s ease-in-out infinite;
}
.jouhatsu__name {
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  color: var(--blood-hot);
}
.jouhatsu__tag {
  margin-left: auto;
  font-family: var(--pixel);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  border: 1px solid var(--line-2);
  padding: 0.3rem 0.55rem;
}

.jouhatsu__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1.2rem;
  font-size: 1.05rem;
}
.jouhatsu__body dt {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--bone-mute);
  padding-top: 0.15rem;
}
.jouhatsu__body dd {
  color: var(--bone);
  line-height: 1.45;
}
.jouhatsu__body dd em { color: var(--rust); }

.jouhatsu__summary {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--bone);
}

@media (max-width: 560px) {
  .jouhatsu { padding: 1.1rem 1.2rem; }
  .jouhatsu__body { grid-template-columns: 1fr; gap: 0.15rem 0; }
  .jouhatsu__body dt { padding-top: 0.6rem; }
  .jouhatsu__body dt:first-child { padding-top: 0; }
  .jouhatsu__tag { display: none; }
}

/* =============================================================
   RELEASES — singles release plan (album section)
   ============================================================= */
.releases {
  margin: 1.5rem 0 3rem;
}

.releases__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem 1.2rem;
  align-items: baseline;
  padding-bottom: 0.9rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.releases__head::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 50px; height: 2px;
  background: var(--blood);
}
.releases__num {
  font-family: var(--gothic);
  font-size: 1.5rem;
  color: var(--blood);
  line-height: 1;
}
.releases__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--bone);
}
.releases__sub {
  font-family: var(--term);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--bone-mute);
  grid-column: 1 / -1;
  text-transform: uppercase;
}

.releases__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.release {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 14px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.release:hover {
  border-color: var(--blood);
  transform: translateY(-3px);
}

.release__artworkWrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-3);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.release__artworkWrap .frameCorner {
  z-index: 2;
}
.release__artwork {
  width: 100%; height: 100%;
  object-fit: cover;
}
.release__artworkWrap:not(:has(img))::before {
  content: "[ ARTWORK PENDING ]";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--term);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--bone-mute);
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(236,229,207,0.04) 14px 15px),
    var(--bg-3);
}

.release__labelBar {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--blood);
  color: var(--bone);
  font-family: var(--pixel);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  padding: 0.32rem 0.5rem;
  z-index: 3;
}

.release__meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem 0.8rem;
  align-items: baseline;
}
.release__roman {
  font-family: var(--gothic);
  font-size: 1.8rem;
  color: var(--blood);
  line-height: 1;
}
.release__titleWrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.release__title {
  font-family: var(--gothic);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--bone);
}
.release__date {
  font-family: var(--term);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--bone-mute);
}
.release__status {
  font-family: var(--pixel);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--moss);
  color: var(--moss);
  padding: 0.4rem 0.55rem;
  align-self: center;
  white-space: nowrap;
}
.release__status--wip {
  border-color: var(--rust);
  color: var(--rust);
}

/* =============================================================
   TRACKLIST SUB-HEADER (sits above the chapters grid)
   ============================================================= */
.album__tracklistHead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem 1.2rem;
  align-items: baseline;
  padding-bottom: 0.9rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.album__tracklistHead::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 50px; height: 2px;
  background: var(--blood);
}
.album__tracklistNum {
  font-family: var(--gothic);
  font-size: 1.5rem;
  color: var(--blood);
  line-height: 1;
}
.album__tracklistTitle {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--bone);
}
.album__tracklistSub {
  font-family: var(--term);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--bone-mute);
  grid-column: 1 / -1;
  text-transform: uppercase;
}

/* =============================================================
   MOBILE BUMP — readability on small screens
   ============================================================= */
@media (max-width: 560px) {
  body {
    font-size: 21px;
  }
  .terminal__body { font-size: 1.15rem; }
  .track__title-log,
  .quest__city {
    font-size: 1rem;
    color: var(--bone-dim);   /* lift from mute → dim on mobile */
  }
  .stats__list { font-size: 1.1rem; }
  .raven__lineV { font-size: 1.05rem; }
  .pitch__cardCopy { font-size: 1.1rem; }
  .pitch__list li { font-size: 1.1rem; }
  .album__introText { font-size: 1.15rem; }
  /* a bit more breathing room on chapter cards */
  .track__row { padding: 1.1rem 1rem; }
}


@media print {
  .crt-scanlines, .crt-flicker, .crt-vignette, .crt-grain, .dac, .hud { display: none !important; }
  body { background: white; color: black; text-shadow: none; }
}
