/* ════════════════════════════════════════════════════════════════
   EXAEETH ⸺ AłӾłⱯ
   master stylesheet
   ════════════════════════════════════════════════════════════════ */

:root {
  --void: #050507;
  --void-2: #0a0a10;
  --void-3: #14141c;
  --ghost: #e8e6dc;
  --ghost-dim: #8a877a;
  --ghost-low: #3a3830;
  --blood: #ff1f2e;
  --blood-deep: #b3001b;
  --uv: #6f3eff;
  --uv-deep: #3a00b8;
  --crt: #39ff14;
  --crt-dim: #1a8a09;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--ghost);
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ─── grain overlay ──────────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ─── CRT scanlines ──────────────────────────────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0,0,0,0.18) 3px,
    transparent 4px
  );
  opacity: 0.5;
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

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

a {
  color: var(--ghost);
  text-decoration: none;
  position: relative;
  transition: color 0.18s;
}
a:hover { color: var(--blood); }

/* ════════════════════════════════════════════════════════════════
   CUSTOM CURSOR — toggleable
   ════════════════════════════════════════════════════════════════ */
.cursor-emoji {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  font-size: 32px;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
  user-select: none;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.6));
  display: none;
}
.cursor-emoji.active { display: block; }

/* ════════════════════════════════════════════════════════════════
   PRELOADER
   ════════════════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--ghost-dim);
  transition: opacity 0.32s ease, visibility 0.32s ease;
}
#preloader.gone { opacity: 0; visibility: hidden; }

#preloader .glyph {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 96px;
  color: var(--blood);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  animation: pulseGlyph 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 31, 46, 0.4);
  font-weight: 400;
}
@keyframes pulseGlyph {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.04); }
}
#preloader .status {
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
#preloader .status::after { content: "_"; animation: blink 0.6s steps(1) infinite; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ════════════════════════════════════════════════════════════════
   TOP BAR — sticky on scroll
   ════════════════════════════════════════════════════════════════ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  /* reserve space on the right so content never runs under the fixed MENU button */
  padding-right: 128px;
  background: rgba(5, 5, 7, 0.6);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--ghost-low);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  user-select: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s, transform 0.5s;
}
.top-bar.visible { opacity: 1; transform: translateY(0); }

.tb-left, .tb-right { flex: 0 0 auto; white-space: nowrap; }
.tb-left .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blood);
  margin-right: 8px;
  vertical-align: middle;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--blood); }
  50% { opacity: 0.3; box-shadow: 0 0 0 var(--blood); }
}
.tb-left a {
  color: inherit;
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--blood);
  text-transform: none;
}

.tb-social {
  display: flex;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
}
.tb-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  color: var(--ghost-dim);
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.28em;
  transition: color 0.22s, border-color 0.22s, background 0.22s, transform 0.22s;
}
.tb-social a:hover {
  color: var(--ghost);
  border-color: var(--blood);
  background: rgba(255, 31, 46, 0.06);
  transform: translateY(-1px);
}
.tb-social svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: filter 0.22s;
}
.tb-social a:hover svg { filter: drop-shadow(0 0 6px rgba(255, 31, 46, 0.6)); }

@media (max-width: 860px) {
  .top-bar { padding: 8px 12px; gap: 4px; padding-right: 64px; }
  .tb-left { font-size: 9px; letter-spacing: 0.1em; }
  .tb-right { display: none; }
  .tb-social a { padding: 6px 8px; }
  .tb-social .tb-label { display: none; }
}
@media (max-width: 480px) {
  .tb-left .dot { display: none; }
  .tb-left a { font-size: 16px; }
  .tb-social a { padding: 5px 6px; gap: 0; }
}

/* ════════════════════════════════════════════════════════════════
   SOCIAL HERO — big linktree-style block on main page
   ════════════════════════════════════════════════════════════════ */
.social-hero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  position: relative;
  z-index: 5;
}
.social-hero a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 18px;
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.social-hero a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 31, 46, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.social-hero a:hover {
  border-color: var(--blood);
  background: rgba(40, 8, 16, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -12px rgba(255, 31, 46, 0.4);
}
.social-hero a:hover::before { opacity: 1; }
.social-hero a > * { position: relative; z-index: 1; }

.social-hero svg {
  width: 44px;
  height: 44px;
  color: var(--ghost);
  transition: color 0.3s, transform 0.4s;
}
.social-hero a:hover svg {
  color: var(--blood);
  transform: scale(1.1);
}
.social-hero .platform {
  font-family: "Metal Mania", serif;
  font-size: 26px;
  color: var(--ghost);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.social-hero a:hover .platform { color: var(--blood); }
.social-hero .handle {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ghost-dim);
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .social-hero { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 32px 16px; }
  .social-hero a { padding: 22px 12px; gap: 10px; }
  .social-hero svg { width: 36px; height: 36px; }
  .social-hero .platform { font-size: 22px; }
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding: 40px 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("hero_wings.jpg") center/cover no-repeat;
  opacity: 0.22;
  filter: saturate(0.9) contrast(1.1);
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero > * { position: relative; z-index: 1; }

.hero-name {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: clamp(80px, 20vw, 320px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  color: var(--blood);
  text-align: center;
  position: relative;
  user-select: none;
  filter: drop-shadow(0 0 24px rgba(255, 31, 46, 0.45)) drop-shadow(0 0 60px rgba(179, 0, 27, 0.25));
  font-weight: 400;
}
.hero-name::before,
.hero-name::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.hero-name::before {
  color: var(--ghost);
  animation: glitchA 4s infinite;
  z-index: -1;
  opacity: 0.5;
}
.hero-name::after {
  color: var(--uv);
  animation: glitchB 5.5s infinite;
  z-index: -2;
  opacity: 0.6;
}
@keyframes glitchA {
  0%, 92%, 100% { transform: translate(0, 0); }
  93% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -2px); }
  95% { transform: translate(-2px, 2px); }
  96% { transform: translate(2px, -1px); }
}
@keyframes glitchB {
  0%, 88%, 100% { transform: translate(0, 0); }
  89% { transform: translate(2px, -1px); }
  90% { transform: translate(-2px, 2px); }
  91% { transform: translate(3px, -2px); }
}

.hero-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  margin-top: 32px;
  text-align: center;
}
.hero-sigil {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--blood);
  margin-top: 16px;
  text-shadow: 0 0 12px rgba(255, 31, 46, 0.4);
}
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollPulse {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════
   SECTION SCAFFOLD
   ════════════════════════════════════════════════════════════════ */
section { position: relative; z-index: 2; }
.section-mark {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
  font-family: "JetBrains Mono", monospace;
}
.section-mark .num { font-size: 11px; color: var(--blood); letter-spacing: 0.3em; }
.section-mark .name { font-size: 11px; color: var(--ghost-dim); letter-spacing: 0.4em; text-transform: uppercase; }
.section-mark .line { flex: 1; height: 1px; background: var(--ghost-low); }

.sigil-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.sigil-divider img {
  width: 90px;
  height: 90px;
  opacity: 0.35;
  filter: invert(1) brightness(1.1);
  animation: rotateSigil 60s linear infinite;
}
@keyframes rotateSigil {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ════════════════════════════════════════════════════════════════
   BIO BLOCK — moved here from manifesto
   ════════════════════════════════════════════════════════════════ */
.bio-block {
  padding: 100px 32px 100px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.bio-block::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  background: url("chaos_collage.jpg") center/cover no-repeat;
  opacity: 0.10;
  filter: saturate(1.3) hue-rotate(-15deg);
  mix-blend-mode: screen;
  pointer-events: none;
  border-radius: 50%;
  mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  z-index: 0;
}
.bio-block > * { position: relative; z-index: 1; }

.bio-name {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--blood);
  text-shadow: 0 0 24px rgba(255, 31, 46, 0.3);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.bio-name .star {
  color: var(--ghost);
  font-size: 0.7em;
  margin: 0 0.2em;
}
.bio-handle {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.bio-glyphs {
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: 0.25em;
  color: var(--ghost);
  margin-bottom: 28px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(232, 230, 220, 0.2);
  user-select: none;
}
.bio-line {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.35;
  color: var(--ghost);
  margin-bottom: 18px;
  font-weight: 300;
  max-width: 22ch;
}
.bio-line.collab {
  color: var(--blood);
  font-style: normal;
  font-family: "Metal Mania", serif;
  font-size: clamp(28px, 4vw, 48px);
}
.bio-line .swords {
  display: inline-block;
  margin-left: 0.3em;
  filter: drop-shadow(0 0 8px rgba(255, 31, 46, 0.5));
}
.bio-stats {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  border-top: 1px solid var(--ghost-low);
  padding-top: 20px;
}
.bio-stats span strong {
  color: var(--ghost);
  font-weight: 700;
  font-size: 14px;
}

/* ════════════════════════════════════════════════════════════════
   DISCOGRAPHY
   ════════════════════════════════════════════════════════════════ */
.disco {
  padding: 80px 32px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.disco-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(180px, auto);
}

.work {
  border: 1px solid var(--ghost-low);
  padding: 28px;
  background: rgba(20, 20, 28, 0.4);
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.work:hover {
  border-color: var(--blood);
  background: rgba(40, 8, 16, 0.6);
  transform: translateY(-2px);
}
.work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(111, 62, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.work:hover::before { opacity: 1; }

.work .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.work .label .year { color: var(--blood); }

.work .title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--ghost);
  margin-bottom: 8px;
  word-break: break-word;
  letter-spacing: 0.02em;
}
.work .title.mono {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.work .subtitle {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ghost-dim);
  margin-bottom: 16px;
}
.work .desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ghost);
  opacity: 0.85;
  flex: 1;
}
.work .footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ghost-dim);
  text-transform: uppercase;
}
.work .badge {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid var(--blood);
  color: var(--blood);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.work .badge.uv { border-color: var(--uv); color: var(--uv); }
.work .badge.crt { border-color: var(--crt-dim); color: var(--crt); }

.work .cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 4px 0 18px;
  background: var(--void-2);
  border: 1px solid var(--ghost-low);
  position: relative;
  overflow: hidden;
}
.work .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), filter 0.4s;
  filter: saturate(0.92) contrast(1.05);
}
.work:hover .cover img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.1);
}
.work .cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 5, 7, 0.4) 100%);
  pointer-events: none;
}
.work.x-lg .cover { aspect-ratio: 16 / 10; }
.work.x-wide .cover { aspect-ratio: 21 / 9; }
.work.x-sm .cover { aspect-ratio: 4 / 3; }

.work.x-lg { grid-column: span 8; grid-row: span 2; }
.work.x-md { grid-column: span 4; grid-row: span 2; }
.work.x-sm { grid-column: span 4; grid-row: span 1; }
.work.x-tall { grid-column: span 4; grid-row: span 2; }
.work.x-wide { grid-column: span 6; grid-row: span 1; }
.work.x-lg .title { font-size: 72px; }
.work.cosmic {
  background:
    radial-gradient(circle at 30% 80%, rgba(111, 62, 255, 0.18), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 31, 46, 0.12), transparent 50%),
    rgba(10, 10, 16, 0.7);
}
@media (max-width: 900px) {
  .disco-grid { grid-template-columns: repeat(2, 1fr); }
  .work.x-lg, .work.x-md, .work.x-sm, .work.x-tall, .work.x-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .work.x-lg .title { font-size: 48px; }
}

/* ════════════════════════════════════════════════════════════════
   BANDS
   ════════════════════════════════════════════════════════════════ */
.bands { padding: 60px 32px 120px; max-width: 1400px; margin: 0 auto; }
.band {
  border-top: 1px solid var(--ghost-low);
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.band:last-child { border-bottom: 1px solid var(--ghost-low); }
.band:hover .band-name { color: var(--blood); }
.band-name {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  color: var(--ghost);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}
.band-info p { margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
.band-info .role {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 12px;
}
.band-roster { margin-top: 24px; list-style: none; }
.band-roster li {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  padding: 6px 0;
  color: var(--ghost);
  border-bottom: 1px dashed var(--ghost-low);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.band-roster li:last-child { border-bottom: none; }
.band-roster .what { color: var(--ghost-dim); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; text-align: right; }
@media (max-width: 800px) {
  .band { grid-template-columns: 1fr; gap: 24px; }
}

/* ════════════════════════════════════════════════════════════════
   VIDEOS PORTAL — mystical link
   ════════════════════════════════════════════════════════════════ */
.videos-portal {
  padding: 80px 32px 100px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.portal-link {
  display: inline-block;
  position: relative;
  padding: 64px 80px;
  border: 1px solid var(--ghost-low);
  background: radial-gradient(circle at center, rgba(40, 8, 16, 0.4), rgba(5,5,7,0.6));
  text-align: center;
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
  overflow: hidden;
}
.portal-link::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg,
    var(--blood) 0deg,
    transparent 60deg,
    var(--uv) 120deg,
    transparent 180deg,
    var(--blood) 240deg,
    transparent 300deg,
    var(--blood) 360deg);
  animation: portalSpin 8s linear infinite;
  z-index: -1;
  opacity: 0.5;
}
.portal-link::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--void);
  z-index: -1;
}
@keyframes portalSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.portal-link:hover {
  transform: scale(1.02);
  box-shadow: 0 0 80px -10px rgba(255, 31, 46, 0.4);
}
.portal-eye {
  font-size: 56px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 16px rgba(255, 31, 46, 0.4));
  animation: portalEye 4s ease-in-out infinite;
}
@keyframes portalEye {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.portal-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: clamp(44px, 6vw, 76px);
  color: var(--blood);
  letter-spacing: 0.02em;
  text-shadow: 0 0 24px rgba(255, 31, 46, 0.5);
  line-height: 1;
  margin-bottom: 12px;
}
.portal-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ghost-dim);
  text-transform: uppercase;
}
.portal-arrows {
  margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  color: var(--blood);
  letter-spacing: 0.5em;
  font-size: 14px;
  opacity: 0.6;
}

/* ════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════ */
.about { padding: 80px 32px 120px; max-width: 900px; margin: 0 auto; }
.about-block p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--ghost);
}
.about-block p:first-child::first-letter {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 80px;
  line-height: 1;
  float: left;
  padding: 8px 14px 0 0;
  color: var(--blood);
}
.about-block strong { color: var(--ghost); font-weight: 600; }
.about-block em { font-style: italic; color: var(--ghost-dim); }

.truth-card {
  margin-top: 64px;
  border: 1px solid var(--ghost-low);
  padding: 16px;
  background: rgba(20, 20, 28, 0.4);
  max-width: 460px;
  transform: rotate(-1.2deg);
  transition: transform 0.5s;
}
.truth-card:hover { transform: rotate(0deg); }
.truth-card img {
  width: 100%;
  display: block;
  filter: sepia(0.15) contrast(1.05) brightness(0.92);
}
.truth-card .truth-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  text-align: right;
  margin-top: 12px;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--ghost-low);
  padding: 64px 32px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
footer .stamp {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--blood);
  letter-spacing: 0.2em;
  text-shadow: 0 0 12px rgba(255, 31, 46, 0.3);
}
footer .credo {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ghost);
  letter-spacing: 0;
  text-transform: none;
}

/* ════════════════════════════════════════════════════════════════
   SUBPAGE — album / singles / videos / exploring infinity
   ════════════════════════════════════════════════════════════════ */
.subpage {
  padding: 100px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  margin-bottom: 40px;
  padding: 8px 14px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.back-link:hover {
  color: var(--blood);
  border-color: var(--blood);
  background: rgba(255, 31, 46, 0.05);
}

.subpage-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 80px;
  align-items: center;
}
@media (max-width: 800px) {
  .subpage-header { grid-template-columns: 1fr; gap: 32px; }
}
.subpage-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--ghost-low);
  background: var(--void-2);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}
.subpage-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,5,7,0.3));
  pointer-events: none;
}
.subpage-meta-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.subpage-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: clamp(56px, 9vw, 130px);
  color: var(--blood);
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(255, 31, 46, 0.35);
}
.subpage-title.mono {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.02em;
}
.subpage-subtitle {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ghost);
  margin-bottom: 28px;
}
.subpage-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ghost);
  margin-bottom: 24px;
}

/* tracklist */
.tracklist {
  margin: 80px 0;
  border-top: 1px solid var(--ghost-low);
}
.track {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ghost-low);
  align-items: center;
  transition: background 0.25s, padding-left 0.25s;
}
.track:hover { background: rgba(255, 31, 46, 0.04); padding-left: 16px; }
.track-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: var(--blood);
  letter-spacing: 0.1em;
}
.track-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 28px;
  color: var(--ghost);
  letter-spacing: 0.01em;
}
.track-title-link { color: inherit; text-decoration: none; }
.track-title-link:hover { color: var(--blood); text-decoration: underline; }
.track-title.mono {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.track-streams {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--ghost-low);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  transition: all 0.22s;
}
.stream-btn:hover {
  color: var(--ghost);
  border-color: var(--blood);
  background: rgba(255,31,46,0.06);
}
.stream-btn svg { width: 12px; height: 12px; }
@media (max-width: 700px) {
  .track { grid-template-columns: 30px 1fr; }
  .track-streams { grid-column: 1 / -1; }
  .track-title { font-size: 22px; }
}

/* singles grid */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin: 60px 0;
}
.single-card {
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.4);
  padding: 22px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.single-card:hover {
  border-color: var(--blood);
  background: rgba(40, 8, 16, 0.6);
  transform: translateY(-3px);
}
.single-card .single-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--void-2);
  margin-bottom: 16px;
  border: 1px solid var(--ghost-low);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Metal Mania", serif;
  font-size: 64px;
  color: var(--blood);
  text-shadow: 0 0 20px rgba(255,31,46,0.4);
  position: relative;
  overflow: hidden;
}
.single-card .single-cover.has-img { font-size: 0; }
.single-card .single-cover img {
  width: 100%; height: 100%; object-fit: cover;
}
.single-card .single-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 30px;
  color: var(--ghost);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.single-card .single-title.mono {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.single-card .single-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.single-card .stream-row {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* video embeds */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin: 60px 0;
}
.video-card {
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.4);
  padding: 16px;
  transition: all 0.3s;
}
.video-card:hover { border-color: var(--blood); }
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--void);
  border: 1px solid var(--ghost-low);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-card h3 {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 32px;
  color: var(--ghost);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.video-card h3.mono {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.video-card .meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.video-card .yt-link {
  display: inline-block;
  margin-top: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--blood);
  border-bottom: 1px dashed var(--blood);
  text-transform: uppercase;
  padding-bottom: 2px;
}

/* ════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .bio-block { padding: 60px 20px; }
  .disco, .bands, .about, .subpage { padding-left: 20px; padding-right: 20px; }
  footer { padding: 48px 20px 64px; }
}

/* ════════════════════════════════════════════════════════════════
   SECRET TERMINAL
   ════════════════════════════════════════════════════════════════ */
#terminal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 7, 0.95);
  border-top: 1px solid var(--crt-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--crt);
  padding: 16px 32px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.4, 1);
  max-height: 40vh;
  overflow-y: auto;
}
#terminal.open { transform: translateY(0); }
#terminal .line { padding: 2px 0; }
#terminal .line.user { color: var(--ghost); }
#terminal .line.error { color: var(--blood); }
#terminal .prompt { color: var(--blood); margin-right: 8px; }
#terminal .input-row { display: flex; align-items: baseline; }
#terminal input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--crt);
  font: inherit;
  flex: 1;
}

/* ════════════════════════════════════════════════════════════════
   EDGY CURSOR (SVG)
   ════════════════════════════════════════════════════════════════ */
.cursor-svg {
  position: fixed;
  top: 0; left: 0;
  z-index: 10000;
  pointer-events: none;
  width: 48px;
  height: 48px;
  display: none;
  filter: drop-shadow(0 0 6px rgba(255, 31, 46, 0.5)) drop-shadow(0 0 2px rgba(0,0,0,0.7));
  user-select: none;
}
.cursor-svg.active { display: block; }
.cursor-svg svg { display: block; pointer-events: none; }

/* override old emoji cursor */
.cursor-emoji { display: none !important; }

/* ════════════════════════════════════════════════════════════════
   GAMES SIDEBAR — fixed left side
   ════════════════════════════════════════════════════════════════ */
.games-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px 12px 0;
  background: rgba(5, 5, 7, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--ghost-low);
  border-right: 1px solid var(--ghost-low);
  border-bottom: 1px solid var(--ghost-low);
  border-left: 1px solid var(--blood);
  border-radius: 0 4px 4px 0;
}
.games-sidebar .games-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--blood);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 8px 4px;
  border-bottom: 1px dashed var(--ghost-low);
  margin: -12px 0 0 0;
  align-self: center;
}
.game-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 10px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--ghost);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  min-width: 64px;
}
.game-link:hover {
  background: rgba(255, 31, 46, 0.1);
  border-color: var(--blood);
  color: var(--blood);
  transform: translateX(4px);
}
.game-link .icon {
  font-size: 24px;
  line-height: 1;
  filter: grayscale(0.3);
  transition: transform 0.4s, filter 0.3s;
}
.game-link:hover .icon {
  transform: scale(1.15) rotate(-6deg);
  filter: grayscale(0) drop-shadow(0 0 8px rgba(255, 31, 46, 0.5));
}
.game-link .name {
  display: block;
  line-height: 1.2;
}
.game-link .desc {
  font-size: 7px;
  letter-spacing: 0.2em;
  color: var(--ghost-dim);
  margin-top: 2px;
}
.game-link:hover .desc { color: var(--ghost); }

@media (max-width: 1100px) {
  .games-sidebar {
    top: auto; bottom: 12px; left: 12px;
    transform: none;
    flex-direction: row;
    border-radius: 4px;
    border-left: 1px solid var(--blood);
  }
  .games-sidebar .games-label { display: none; }
}
@media (max-width: 600px) {
  .games-sidebar { padding: 6px; }
  .game-link { padding: 8px 6px; min-width: 50px; }
  .game-link .icon { font-size: 18px; }
  .game-link .name { font-size: 8px; }
  .game-link .desc { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   OCCULT DECORATIONS — scattered throughout
   ════════════════════════════════════════════════════════════════ */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.18;
  color: var(--blood);
}
.deco.ghost { color: var(--ghost-dim); opacity: 0.14; }
.deco.spin { animation: rotateSigil 30s linear infinite; }
.deco.spin-slow { animation: rotateSigil 90s linear infinite; }
.deco.spin-fast { animation: rotateSigil 12s linear infinite; }
.deco.spin-rev { animation: rotateSigil 60s linear infinite reverse; }
.deco.float { animation: decoFloat 6s ease-in-out infinite; }
.deco.flicker { animation: decoFlicker 3s linear infinite; }

@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(4deg); }
}
@keyframes decoFlicker {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.05; }
  75% { opacity: 0.25; }
}

.deco-skull { font-size: 80px; }
.deco-spider { font-size: 60px; }
.deco-moon { font-size: 70px; }
.deco-cross { font-size: 90px; }
.deco-flame { font-size: 70px; }
.deco-eye { font-size: 50px; }
.deco-pent { font-size: 90px; }

/* spider web in corner */
.web-corner {
  position: absolute;
  width: 200px;
  height: 200px;
  pointer-events: none;
  user-select: none;
  opacity: 0.18;
  z-index: 1;
}
.web-corner.tl { top: 0; left: 0; }
.web-corner.tr { top: 0; right: 0; transform: scaleX(-1); }
.web-corner.bl { bottom: 0; left: 0; transform: scaleY(-1); }
.web-corner.br { bottom: 0; right: 0; transform: scale(-1, -1); }

/* sectional accent banner */
.section-accent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  font-size: 28px;
  color: var(--blood);
  opacity: 0.5;
  letter-spacing: 0.4em;
  user-select: none;
}
.section-accent .symbol {
  display: inline-block;
  animation: decoFloat 6s ease-in-out infinite;
}
.section-accent .symbol:nth-child(2) { animation-delay: 0.5s; }
.section-accent .symbol:nth-child(3) { animation-delay: 1s; }
.section-accent .symbol:nth-child(4) { animation-delay: 1.5s; }
.section-accent .symbol:nth-child(5) { animation-delay: 2s; }

/* ════════════════════════════════════════════════════════════════
   SOCIAL HERO — 6-platform layout
   ════════════════════════════════════════════════════════════════ */
.social-hero.six-up {
  grid-template-columns: repeat(6, 1fr);
}
.social-hero.six-up a {
  padding: 26px 14px;
  gap: 12px;
}
.social-hero.six-up svg {
  width: 36px;
  height: 36px;
}
.social-hero.six-up .platform {
  font-size: 22px;
}
.social-hero.six-up .handle {
  font-size: 9px;
  letter-spacing: 0.25em;
}

@media (max-width: 1100px) {
  .social-hero.six-up { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .social-hero.six-up { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 32px 16px; }
  .social-hero.six-up a { padding: 18px 10px; gap: 8px; }
  .social-hero.six-up svg { width: 30px; height: 30px; }
  .social-hero.six-up .platform { font-size: 19px; }
}

/* top bar — 6 social icons */
@media (max-width: 1024px) {
  .tb-social { gap: 2px; }
  .tb-social a { padding: 6px 8px; }
}
@media (max-width: 720px) {
  .top-bar { padding: 8px 12px; gap: 4px; }
}

/* ════════════════════════════════════════════════════════════════
   HERO V2 — full viewport with streaming + social on top
   ════════════════════════════════════════════════════════════════ */

/* hide games sidebar globally */
.games-sidebar { display: none !important; }

/* hide identity transmission on home */
body.home .bio-block { display: none !important; }

.hero.hero-v2 {
  min-height: 100vh;
  height: 100vh;
  max-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
  justify-items: stretch;
  padding: 18px 24px 24px;
  position: relative;
  overflow: hidden;
}
.hero.hero-v2 .hero-bg { display: none; }

/* ─── Background layer ─── */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo-shapes {
  position: absolute;
  inset: -10% -10% -10% -10%;
  width: 120%;
  height: 120%;
}
.geo-orbit {
  transform-origin: 600px 400px;
  animation: orbitSpin 80s linear infinite;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.geo-shapes-anim {
  transform-origin: 50% 50%;
  animation: shapesFloat 30s ease-in-out infinite;
}
@keyframes shapesFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(15px) rotate(240deg); }
}
.geo-cross {
  animation: crossFlicker 8s ease-in-out infinite;
}
@keyframes crossFlicker {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.04; }
}

/* ─── Giant background sigil (Orbitron) ─── */
.bg-sigil {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Orbitron", "JetBrains Mono", sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 22vw, 380px);
  letter-spacing: 0.12em;
  color: var(--uv);
  opacity: 0.07;
  white-space: nowrap;
  user-select: none;
  z-index: 1;
  text-shadow: 0 0 40px rgba(111, 62, 255, 0.4);
  animation: sigilDrift 18s ease-in-out infinite, sigilGlitch 7s steps(1) infinite;
  filter: blur(0.4px);
}
@keyframes sigilDrift {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg) scale(1); }
  25% { transform: translate(-50%, -52%) rotate(1deg) scale(1.02); }
  50% { transform: translate(-49%, -50%) rotate(2deg) scale(0.99); }
  75% { transform: translate(-51%, -48%) rotate(-1deg) scale(1.01); }
}
@keyframes sigilGlitch {
  0%, 92%, 100% { transform: translate(-50%, -50%) rotate(-2deg) scale(1); filter: blur(0.4px); opacity: 0.07; }
  93% { transform: translate(-49%, -50%) rotate(-2deg) scale(1) skewX(2deg); filter: blur(0px); opacity: 0.1; }
  94% { transform: translate(-51%, -50%) rotate(-2deg) scale(1) skewX(-3deg); opacity: 0.04; }
  95% { transform: translate(-50%, -49%) rotate(-2deg) scale(1.005); opacity: 0.12; }
}
@media (max-width: 760px) {
  .bg-sigil { font-size: 22vw; opacity: 0.06; }
}

/* hide old hero-bg image */
.hero.hero-v2 > .hero-bg { display: none !important; }

/* ─── TOP: streaming + social ─── */
.hero-top {
  grid-row: 1;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* streaming row */
.streaming-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: stretch;
}
.platform-block {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s;
}
.platform-block:hover {
  border-color: var(--ghost-dim);
  background: rgba(30, 25, 35, 0.6);
}
.platform-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 6px;
  border-right: 1px dashed var(--ghost-low);
  color: var(--ghost-dim);
}
.platform-icon svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.platform-icon span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  white-space: nowrap;
}
.alias-btn {
  display: inline-block;
  padding: 4px 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  border: 1px solid var(--ghost-low);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.alias-btn:hover {
  color: var(--ghost);
  border-color: var(--blood);
  background: rgba(255, 31, 46, 0.08);
}
.alias-btn.primary {
  color: var(--blood);
  border-color: var(--blood);
}
.alias-btn.primary:hover {
  background: var(--blood);
  color: var(--void);
  text-shadow: 0 0 10px rgba(255, 31, 46, 0.4);
}

/* social row mini */
.social-row-mini {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.social-row-mini a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--ghost-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.social-row-mini a:hover {
  color: var(--ghost);
  border-color: var(--blood);
  background: rgba(40, 8, 16, 0.5);
}
.social-row-mini svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .platform-icon span { display: none; }
}
@media (max-width: 760px) {
  .streaming-row { gap: 4px; }
  .platform-block { padding: 4px 6px; gap: 4px; }
  .alias-btn { padding: 3px 6px; font-size: 9px; letter-spacing: 0.1em; }
  .social-row-mini a span { display: none; }
  .social-row-mini a { padding: 6px; }
}

/* ─── CENTER: hero name + pentagrams + taglines ─── */
.hero-center {
  grid-row: 2;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 0;
}

.hero-name.with-pentagrams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 36px);
  font-size: clamp(56px, 14vw, 220px);
  line-height: 0.9;
  margin: 0;
  position: relative;
}
.hero-name.with-pentagrams .hero-name-text {
  font-family: "Metal Mania", "Pirata One", serif;
  color: var(--blood);
  font-weight: 400;
  letter-spacing: 0.005em;
  filter: drop-shadow(0 0 24px rgba(255, 31, 46, 0.45)) drop-shadow(0 0 60px rgba(179, 0, 27, 0.25));
}
.penta {
  font-size: clamp(50px, 11vw, 170px);
  line-height: 1;
  color: var(--blood);
  filter: drop-shadow(0 0 18px rgba(255, 31, 46, 0.5));
  animation: pentaPulse 4s ease-in-out infinite;
  user-select: none;
}
.penta-l { animation-delay: 0s; }
.penta-r { animation-delay: 2s; transform: scaleX(-1); }
@keyframes pentaPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.95; }
  50% { transform: scale(1.06) rotate(8deg); opacity: 1; }
}
.penta-r { animation-name: pentaPulseR; }
@keyframes pentaPulseR {
  0%, 100% { transform: scale(1) scaleX(-1) rotate(0deg); opacity: 0.95; }
  50% { transform: scale(1.06) scaleX(-1) rotate(-8deg); opacity: 1; }
}

.vibe-tagline {
  font-family: "Metal Mania", "Pirata One", serif;
  color: var(--blood);
  font-size: clamp(22px, 3.6vw, 48px);
  line-height: 1.1;
  margin-top: clamp(12px, 2vw, 24px);
  text-shadow: 0 0 18px rgba(255, 31, 46, 0.45);
  letter-spacing: 0.01em;
}
.collab-tagline {
  font-family: "Metal Mania", "Pirata One", serif;
  color: var(--blood);
  font-size: clamp(16px, 2.4vw, 28px);
  line-height: 1.1;
  margin-top: 8px;
  text-shadow: 0 0 14px rgba(255, 31, 46, 0.35);
  letter-spacing: 0.01em;
  opacity: 0.9;
}
.collab-tagline .swords {
  display: inline-block;
  margin-left: 0.2em;
  filter: drop-shadow(0 0 6px rgba(255, 31, 46, 0.5));
}

/* ─── BOTTOM: tag list + scroll cue ─── */
.hero-bottom {
  grid-row: 3;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
}
.hero-tag-list {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  text-align: center;
  max-width: 1100px;
  line-height: 1.7;
}
.hero-tag-list .dot-sep {
  color: var(--blood);
  margin: 0 4px;
  opacity: 0.6;
}
.hero-tag-list span:not(.dot-sep) {
  display: inline-block;
  transition: color 0.3s;
}
.hero-tag-list span:not(.dot-sep):hover {
  color: var(--blood);
}

/* scroll cue inside grid bottom */
.hero.hero-v2 .scroll-cue {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .hero.hero-v2 { padding: 12px 16px 16px; }
  .hero-name.with-pentagrams { gap: 8px; }
  .penta { font-size: 38px; }
  .hero-name.with-pentagrams .hero-name-text { font-size: 56px; }
  .vibe-tagline { font-size: 22px; }
  .collab-tagline { font-size: 16px; }
  .hero-tag-list { font-size: 8px; letter-spacing: 0.2em; line-height: 1.6; }
}

/* ════════════════════════════════════════════════════════════════
   STREAMING BUTTONS V2 — bigger, more readable
   ════════════════════════════════════════════════════════════════ */
.streaming-row {
  gap: 12px;
}
.platform-block {
  padding: 10px 14px;
  gap: 10px;
}
.platform-icon svg {
  width: 18px;
  height: 18px;
}
.platform-icon span {
  font-size: 11px;
  letter-spacing: 0.18em;
}
.alias-btn {
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* social mini buttons - also bigger */
.social-row-mini a {
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
}
.social-row-mini svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1100px) {
  .platform-icon span { display: none; }
  .platform-block { padding: 8px 10px; }
}
@media (max-width: 760px) {
  .platform-block { padding: 6px 8px; gap: 6px; }
  .alias-btn { padding: 5px 9px; font-size: 10px; letter-spacing: 0.12em; }
  .social-row-mini a { padding: 6px 9px; font-size: 10px; }
}

/* hide collab tagline on home */
body.home .collab-tagline { display: none; }

/* hide spinning sigil-divider on home (between hero and disco) */
body.home > .sigil-divider:first-of-type { display: none; }

/* ════════════════════════════════════════════════════════════════
   PROJECT PORTALS — small versions of "enter the archive" portal
   placed between hero name and tagline list
   ════════════════════════════════════════════════════════════════ */
.project-portals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin-top: clamp(20px, 3vh, 40px);
  max-width: 1200px;
}

.project-portal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  padding: 14px 22px;
  min-width: 130px;
  text-decoration: none;
  background: radial-gradient(circle at center, rgba(40, 8, 16, 0.5), rgba(5,5,7,0.7));
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
  overflow: hidden;
  border: 1px solid var(--ghost-low);
  z-index: 1;
}
.project-portal::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: conic-gradient(from 0deg,
    var(--blood) 0deg,
    transparent 80deg,
    var(--uv) 160deg,
    transparent 240deg,
    var(--blood) 320deg,
    var(--blood) 360deg);
  animation: portalSpin 7s linear infinite;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.5s;
}
.project-portal::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--void);
  z-index: -1;
}
.project-portal:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 12px 40px -12px rgba(255, 31, 46, 0.5);
}
.project-portal:hover::before { opacity: 1; }

.portal-icon {
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 31, 46, 0.4));
  transition: transform 0.4s;
}
.project-portal:hover .portal-icon {
  transform: scale(1.15);
}
.portal-name {
  font-family: "Metal Mania", serif;
  color: var(--ghost);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.05;
  transition: color 0.3s;
}
.project-portal:hover .portal-name {
  color: var(--blood);
}
.portal-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  text-align: center;
}

/* WIP tag */
.portal-wip {
  position: absolute;
  top: 4px;
  right: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.3em;
  color: var(--blood);
  background: rgba(40, 8, 16, 0.85);
  padding: 2px 5px;
  border: 1px solid var(--blood);
  text-transform: uppercase;
}
.portal-different {
  position: absolute;
  top: 4px;
  right: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.3em;
  color: var(--crt);
  background: rgba(8, 20, 8, 0.85);
  padding: 2px 5px;
  border: 1px solid var(--crt-dim);
  text-transform: uppercase;
}

/* ─── game teaser — plain exposed text + tiny pixel icon, no tile,
   8-bit flavored, sits left/above the EXAEETH logo. align-self:flex-start
   (not absolute positioning) so it can never overlap anything below it
   at any viewport width — it just adds its own line to the flex column. */
.game-teaser {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px 6px;
  text-decoration: none;
  font-family: "Press Start 2P", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--blood);
  text-shadow: 0 0 14px rgba(255, 31, 46, 0.6);
  animation: gameTeaserPulse 1.8s ease-in-out infinite;
  max-width: calc(100vw - 32px);
}
.game-teaser:hover { color: #ffffff; }
/* icon hidden for now — a proper hand-designed one is coming later */
.game-teaser svg { display: none; }
.game-teaser span {
  white-space: normal;
  overflow-wrap: break-word;
}
@keyframes gameTeaserPulse { 0%, 100% { opacity: 1; } 50% { opacity: .68; } }
@media (prefers-reduced-motion: reduce) { .game-teaser { animation: none; } }
@media (max-width: 600px) {
  .game-teaser { font-size: 8px; gap: 6px; margin-left: 4px; }
  .game-teaser svg { width: 14px; height: 14px; }
}

/* ─── Other Projects group — cienka ramka grupująca Ash Seraph + Zdrzewa ─── */
.other-projects-group {
  position: relative;
  padding: 18px 18px 12px;
  border: 1px dashed var(--blood);
  border-radius: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
}
.other-projects-group::before {
  content: "OTHER MUSIC PROJECTS";
  position: absolute;
  top: -8px;
  left: 16px;
  background: var(--void);
  padding: 0 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--blood);
  text-transform: uppercase;
}
.other-projects-group .project-portal {
  border-color: rgba(255, 31, 46, 0.25);
  min-width: 110px;
  padding: 12px 18px;
}

@media (max-width: 760px) {
  .project-portals { gap: 8px; margin-top: 16px; }
  .project-portal { min-width: 100px; padding: 10px 14px; }
  .portal-name { font-size: 18px; }
  .portal-icon { font-size: 18px; }
  .other-projects-group { padding: 14px 12px 10px; }
  .other-projects-group .project-portal { min-width: 88px; padding: 10px 12px; }
}

/* ════════════════════════════════════════════════════════════════
   ART GALLERY — for Videos & Art subpage
   ════════════════════════════════════════════════════════════════ */
.art-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin: 60px 0;
}
.art-piece {
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.4);
  padding: 16px;
  position: relative;
  transition: all 0.3s;
}
.art-piece:hover {
  border-color: var(--blood);
  background: rgba(40, 8, 16, 0.4);
}
.art-piece-image {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--ghost-low);
  margin-bottom: 16px;
  overflow: hidden;
  display: block;
}
.art-piece-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.4s;
  filter: saturate(0.92);
}
.art-piece:hover .art-piece-image img {
  filter: saturate(1.1);
}
.art-piece h3 {
  font-family: "Metal Mania", serif;
  font-size: 28px;
  color: var(--ghost);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.art-piece h3.mono {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.art-piece .art-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ghost-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.art-piece .art-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ghost);
  opacity: 0.88;
}
.art-piece .ai-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 2px solid var(--uv);
  background: rgba(111, 62, 255, 0.05);
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ghost-dim);
}
.art-piece .ai-note::before {
  content: "⸺ a note from Zuli (AI assistant)";
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--uv);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
}
/* "STOLEN" badge — the credo says it all: stolen by me on purpose */
.art-piece .art-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blood);
  background: rgba(5, 5, 7, 0.82);
  border: 1px solid var(--blood);
  padding: 4px 8px;
  pointer-events: none;
}
/* a note in Łukasz's own voice (distinct from Zuli's ai-note) */
.art-piece .art-comment {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 2px solid var(--blood);
  background: rgba(255, 31, 46, 0.05);
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ghost-dim);
}
.art-piece .art-comment::before {
  content: "⸺ Łukasz";
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ════════════════════════════════════════════════════════════════
   POLISH LAYER — spacing · type rhythm · hover refinement
   (mood, blackletter title & pentagrams left untouched)
   ════════════════════════════════════════════════════════════════ */

/* anchored jumps clear the fixed top-bar */
html { scroll-padding-top: 74px; }

/* — Typographic refinement: balanced headings, no orphaned words — */
.hero-name,
.hero-name.with-pentagrams,
.bio-name,
.band-name,
.subpage-title,
.portal-title,
.work .title,
.vibe-tagline { text-wrap: balance; }

.about-block p,
.band-info p,
.subpage-desc,
.work .desc,
.single-card .single-meta,
.art-piece .art-desc,
.bio-line { text-wrap: pretty; }

/* body reading rhythm — a hair more open, less cramped */
.about-block p { font-size: 19px; line-height: 1.78; }
.band-info p { line-height: 1.75; }

/* — One consistent motion curve across every interactive card — */
.work,
.single-card,
.video-card,
.art-piece,
.social-hero a,
.project-portal,
.stream-btn,
.social-row-mini a,
.platform-block,
.alias-btn,
.tb-social a,
.back-link {
  transition-timing-function: cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-duration: 0.32s;
}

/* — Card hover: unify the lift and add the signature blood glow — */
.work:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 46px -16px rgba(255, 31, 46, 0.42);
}
.single-card:hover,
.video-card:hover,
.art-piece:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 46px -16px rgba(255, 31, 46, 0.36);
}

/* — Tracklist: a growing accent bar on hover, calmer than the jump — */
.track { position: relative; }
.track::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: var(--blood);
  box-shadow: 0 0 10px rgba(255, 31, 46, 0.5);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.track:hover::before { transform: scaleY(1); }

/* — Keyboard focus: a visible blood ring (accessibility polish) — */
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--blood);
  outline-offset: 3px;
}

/* — Even out the big section paddings for a steadier vertical rhythm — */
.disco { padding-top: 96px; padding-bottom: 128px; }
.bands { padding-top: 72px; padding-bottom: 128px; }
.about { padding-top: 96px; padding-bottom: 128px; }
footer { padding-top: 72px; }

/* ════════════════════════════════════════════════════════════════
   SIGNAL CONSOLE — redesigned hero streaming + social header
   one glass panel · blood-hairline accent · LISTEN / FOLLOW rows
   ════════════════════════════════════════════════════════════════ */
.hero-top {
  gap: 0;
  padding: 12px 22px 13px;
  width: fit-content;
  max-width: min(100%, 1180px);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(18, 18, 26, 0.5), rgba(8, 8, 14, 0.36));
  border: 1px solid var(--ghost-low);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  position: relative;
}
.hero-top::before {
  content: "";
  position: absolute;
  left: 14%; right: 14%; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blood), transparent);
  opacity: 0.75;
}

/* row-leading label ◇ LISTEN / ◇ FOLLOW */
.sc-tag {
  align-self: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  padding-right: 15px;
  margin-right: 5px;
  border-right: 1px solid var(--ghost-low);
  white-space: nowrap;
  user-select: none;
}
.sc-tag::before { content: "◇ "; color: var(--blood); }

/* LISTEN row */
.streaming-row {
  gap: 0 2px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 11px;
  margin-bottom: 11px;
  border-bottom: 1px dashed var(--ghost-low);
}

/* each platform becomes a clean seam-separated unit (no box) */
.streaming-row .platform-block {
  border: none;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 3px 15px;
  gap: 10px;
  position: relative;
}
.streaming-row .platform-block:hover {
  border: none;
  background: none;
}
.streaming-row .platform-block + .platform-block::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 24px;
  background: var(--ghost-low);
}
.streaming-row .platform-icon {
  border-right: none;
  padding-right: 0;
  gap: 7px;
  transition: color 0.3s;
}
.streaming-row .platform-block:hover .platform-icon,
.streaming-row .platform-block:hover .platform-icon span { color: var(--ghost); }
.streaming-row .platform-block:hover .platform-icon svg {
  filter: drop-shadow(0 0 7px rgba(255, 31, 46, 0.55));
  color: var(--blood);
}

/* FOLLOW row — compact icon cluster */
.social-row-mini {
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.social-row-mini a {
  width: 34px;
  height: 34px;
  padding: 0;
  justify-content: center;
  border: 1px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.5);
}
.social-row-mini a span { display: none; }
.social-row-mini svg { width: 16px; height: 16px; }
.social-row-mini a:hover {
  color: var(--blood);
  border-color: var(--blood);
  background: rgba(40, 8, 16, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(255, 31, 46, 0.5);
}

@media (max-width: 760px) {
  .hero-top { padding: 10px 14px 11px; }
  .sc-tag { display: none; }
  .streaming-row .platform-block { padding: 3px 10px; }
  .social-row-mini a { width: 32px; height: 32px; }
}

/* ════════════════════════════════════════════════════════════════
   REFINEMENT PASS — section marks · footer sigil · top-bar · track cue
   ════════════════════════════════════════════════════════════════ */

/* 1 — Section headers: leading sigil + gradient rule with a diamond node */
.section-mark::before {
  content: "⛧";
  align-self: center;
  color: var(--blood);
  font-size: 15px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 31, 46, 0.5));
  animation: pentaPulse 4s ease-in-out infinite;
}
.section-mark .line {
  align-self: center;
  height: 1px;
  position: relative;
  background: linear-gradient(90deg, var(--ghost-low), rgba(255, 31, 46, 0.55));
}
.section-mark .line::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  transform: translate(50%, -50%) rotate(45deg);
  background: var(--blood);
  box-shadow: 0 0 10px rgba(255, 31, 46, 0.6);
}

/* 2 — Footer: enlarged AłӾłⱯ sigil watermark + blood hairline sign-off */
footer { overflow: hidden; }
.footer-sigil {
  position: absolute;
  left: 50%; bottom: -0.34em;
  transform: translateX(-50%);
  font-size: clamp(80px, 14vw, 200px);
  color: var(--ghost);
  opacity: 0.07;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.footer-sigil .sigil { gap: 0.2em; }
footer::after {
  content: "";
  position: absolute;
  left: 22%; right: 22%; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blood), transparent);
  opacity: 0.5;
}
footer > *:not(.footer-sigil) { position: relative; z-index: 2; }

/* 3 — Top-bar social: bordered icon-buttons matching the console */
.tb-social { gap: 6px; }
.tb-social a {
  width: 32px;
  height: 32px;
  padding: 0;
  justify-content: center;
  border: 1px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.4);
}
.tb-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(255, 31, 46, 0.5);
}

/* 4 — Tracklist: a play cue that slides in on hover */
.track-title::before {
  content: "▶";
  font-family: "JetBrains Mono", monospace;
  color: var(--blood);
  font-size: 0.42em;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transform: translateX(-4px);
  filter: drop-shadow(0 0 6px rgba(255, 31, 46, 0.6));
  transition: opacity 0.3s, max-width 0.3s, margin-right 0.3s, transform 0.3s;
}
.track:hover .track-title::before {
  opacity: 1;
  max-width: 1.2em;
  margin-right: 0.4em;
  transform: translateX(0);
}

/* ════════════════════════════════════════════════════════════════
   UNIFIED SIGIL — AłӾłⱯ built in Syne (turned-A = rotated A)
   ════════════════════════════════════════════════════════════════ */
.sigil {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
  line-height: 1;
  vertical-align: middle;
}
.sigil > i { font-style: normal; display: inline-block; }
.sigil .inv { transform: rotate(180deg); }
.sigil .x { position: relative; }
.sigil .x::after {
  content: "";
  position: absolute;
  left: 50%; top: 7%; bottom: 7%;
  width: 0.08em;
  transform: translateX(-50%);
  background: currentColor;
  border-radius: 1px;
}
.bg-sigil .sigil { gap: 0.28em; }

/* ════════════════════════════════════════════════════════════════
   EXPANDING CONSOLE — platforms reveal aliases on hover
   ════════════════════════════════════════════════════════════════ */
.streaming-row .platform-block .aliases {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}
@media (hover: hover) {
  .streaming-row .platform-block .aliases {
    max-width: 0;
    opacity: 0;
    margin-left: -10px;
    transform: translateX(-4px);
    transition: max-width 0.42s cubic-bezier(0.2,0.7,0.3,1), opacity 0.3s, margin-left 0.42s, transform 0.42s;
  }
  .streaming-row .platform-block:hover .aliases,
  .streaming-row .platform-block:focus-within .aliases {
    max-width: 240px;
    opacity: 1;
    margin-left: 0;
    transform: translateX(0);
  }
}

/* ════════════════════════════════════════════════════════════════
   TRACK PLAYER ⸺ expandable rows, panels, downloads, video
   ════════════════════════════════════════════════════════════════ */

/* row controls (play + expand) live in the auto column */
.track { cursor: pointer; }
.track-ctl,
.card-ctl {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.card-ctl { margin-top: auto; padding-top: 14px; }

.ee-play-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blood);
  background: rgba(255, 31, 46, 0.06);
  color: var(--blood);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
  padding-left: 2px;
}
.ee-play-btn:hover {
  background: var(--blood);
  color: var(--void);
  box-shadow: 0 0 16px -2px rgba(255, 31, 46, 0.6);
}
.ee-play-btn.on {
  background: var(--blood);
  color: var(--void);
  padding-left: 0;
}
.ee-unit.playing { background: rgba(255, 31, 46, 0.06); }
.ee-unit.playing .track-title { color: var(--blood); }

.track-expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  min-height: 40px;
  border: 1px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.4);
  color: var(--ghost-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.22s, border-color 0.22s, background 0.22s;
}
.track-expand b { font-size: 13px; transition: transform 0.3s; line-height: 1; }
.track-expand:hover { color: var(--ghost); border-color: var(--blood); background: rgba(255, 31, 46, 0.06); }
.track-expand.on { color: var(--blood); border-color: var(--blood); }
.track-expand.on b { transform: rotate(180deg); }

/* the expanding panel */
.track-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), opacity 0.3s;
  border-bottom: 1px solid transparent;
}
.track-panel.open {
  max-height: 1600px;
  opacity: 1;
  border-bottom: 1px solid var(--ghost-low);
}
.track-panel-inner {
  padding: 20px 4px 26px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-card .track-panel-inner { padding: 16px 0 4px; }
.tp-links, .tp-dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.tp-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  margin-right: 4px;
}
.tp-lbl::before { content: "◇ "; color: var(--blood); }
.stream-btn.tp-exact { border-color: var(--blood); color: var(--blood); }
.stream-btn.tp-dlbtn { border-color: var(--uv); color: var(--ghost); }
.stream-btn.tp-dlbtn:hover { border-color: var(--uv); background: rgba(111, 62, 255, 0.12); color: var(--ghost); }
.tp-empty {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ghost-dim);
}

/* inline video */
.tp-embed-live { margin-bottom: 4px; }
.tp-embed-live .tp-lbl { margin-bottom: 8px; }
.tp-video { display: flex; flex-direction: column; gap: 12px; }
.tp-vbtn.on { border-color: var(--blood); color: var(--blood); }
.tp-video-stage {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.tp-video-stage.open { max-height: 70vh; }
.tp-video-el {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--ghost-low);
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   NOW-PLAYING BAR ⸺ persistent, survives navigation
   ════════════════════════════════════════════════════════════════ */
body.ee-has-bar { padding-bottom: 68px; }
.ee-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  min-height: 64px;
  background: rgba(8, 8, 14, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--blood);
  box-shadow: 0 -10px 40px -12px rgba(255, 31, 46, 0.3);
  font-family: "JetBrains Mono", monospace;
  color: var(--ghost);
}
.ee-bar[hidden] { display: none; }
.ee-bar-glyph {
  flex: 0 0 auto;
  font-size: 20px;
  color: var(--blood);
  filter: drop-shadow(0 0 10px rgba(255, 31, 46, 0.4));
}
.ee-bar-meta { flex: 1 1 180px; min-width: 0; }
.ee-bar-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 19px;
  line-height: 1.1;
  color: var(--ghost);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ee-bar-album {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ee-bar-controls { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; }
.ee-ctl {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.5);
  color: var(--ghost);
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}
.ee-ctl:hover { border-color: var(--blood); color: var(--blood); }
.ee-ctl:active { transform: scale(0.92); }
.ee-play { width: 44px; height: 44px; border-color: var(--blood); color: var(--blood); font-size: 14px; }
.ee-play.is-playing { background: var(--blood); color: var(--void); }
.ee-bar-scrub { flex: 2 1 260px; display: flex; align-items: center; gap: 10px; min-width: 0; }
.ee-t { font-size: 10px; color: var(--ghost-dim); flex: 0 0 auto; width: 34px; }
.ee-t.ee-dur { text-align: right; }
.ee-bar-vol { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.ee-mute.muted { color: var(--ghost-dim); }
.ee-close { border-color: transparent; color: var(--ghost-dim); }
.ee-close:hover { color: var(--blood); border-color: transparent; }

/* range sliders — blood-tuned */
.ee-seek, .ee-vol {
  -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 2px;
  background: var(--ghost-low);
  cursor: pointer; outline: none; margin: 0;
}
.ee-seek { flex: 1 1 auto; min-width: 60px; }
.ee-vol { width: 84px; }
.ee-seek::-webkit-slider-thumb, .ee-vol::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 8px rgba(255, 31, 46, 0.6);
  cursor: pointer;
}
.ee-seek::-moz-range-thumb, .ee-vol::-moz-range-thumb {
  width: 13px; height: 13px; border: none; border-radius: 50%;
  background: var(--blood); box-shadow: 0 0 8px rgba(255, 31, 46, 0.6); cursor: pointer;
}

/* keep the secret terminal above the bar when open */
#terminal { z-index: 9999; }

@media (max-width: 760px) {
  body.ee-has-bar { padding-bottom: 60px; }
  .ee-bar { gap: 8px; padding: 8px 10px; min-height: 56px; }
  .ee-bar-glyph { display: none; }
  .ee-bar-vol { display: none; }
  .ee-bar-meta { flex-basis: auto; }
  .ee-bar-title { font-size: 16px; }
  .ee-bar-scrub { flex-basis: 100%; order: 3; gap: 8px; }
  .ee-close { display: none; }
  .ee-ctl { width: 34px; height: 34px; }
  .ee-play { width: 40px; height: 40px; }
}
@media (max-width: 700px) {
  /* track rows: play + expand sit under the title, full-width tap targets */
  .track { grid-template-columns: 34px 1fr; row-gap: 12px; }
  .track-ctl { grid-column: 1 / -1; justify-content: flex-start; }
  .track-expand { flex: 1 1 auto; justify-content: space-between; }
  .track-panel-inner { padding: 16px 2px 22px 8px; }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE TOP CONSOLE ⸺ tap-friendly LISTEN / FOLLOW
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  .hero-top { width: 100%; max-width: 100%; padding: 12px 12px 13px; }
  /* on touch the aliases are always shown — lay platforms out as a tidy grid */
  .streaming-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .streaming-row .platform-block { padding: 8px 10px; justify-content: center; }
  .streaming-row .platform-block + .platform-block::after { display: none; }
  .streaming-row .platform-block .aliases {
    max-width: none !important; opacity: 1 !important;
    margin-left: 6px !important; transform: none !important;
  }
  .streaming-row .platform-icon span { display: inline !important; }
  .alias-btn { min-height: 34px; display: inline-flex; align-items: center; }
  .social-row-mini { flex-wrap: wrap; gap: 8px; }
  .social-row-mini a { width: 40px; height: 40px; }
}
@media (max-width: 420px) {
  .streaming-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   PERFORMANCE / MOTION ⸺ calmer on phones & reduced-motion
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  /* the scanline + grain overlays are the heaviest paints on mobile */
  body::after { opacity: 0.28; }
  .deco { display: none; }             /* floating occult glyphs: desktop only */
  .bg-sigil { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   SIGNAL FEED ⸺ random discovery grid + preview modal
   ════════════════════════════════════════════════════════════════ */
.feed-section {
  padding: 40px 32px 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.feed-rail { padding-top: 72px; }
.feed-head-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: -28px 0 30px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ghost-dim);
  flex-wrap: wrap;
}
.feed-reshuffle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ghost-low);
  color: var(--ghost-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.feed-reshuffle:hover { color: var(--blood); border-color: var(--blood); background: rgba(255,31,46,0.06); }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}
.feed-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.4);
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.2,0.7,0.3,1), transform 0.3s cubic-bezier(0.2,0.7,0.3,1), box-shadow 0.3s;
}
.feed-tile:hover {
  border-color: var(--blood);
  transform: translateY(-4px);
  box-shadow: 0 16px 46px -16px rgba(255, 31, 46, 0.4);
}
.feed-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--void-2);
  overflow: hidden;
}
.feed-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.82);
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.3,1), filter 0.4s;
}
.feed-tile:hover .feed-thumb img { transform: scale(1.06); filter: saturate(1.1) contrast(1.1) brightness(0.95); }
.feed-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ghost);
  background: rgba(5, 5, 7, 0.72);
  border: 1px solid var(--ghost-low);
  padding: 3px 7px;
}
.feed-play, .feed-open {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(5, 5, 7, 0.6);
  border: 1px solid var(--blood);
  color: var(--blood);
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px) scale(0.9);
  transition: opacity 0.3s, transform 0.3s, background 0.3s, color 0.3s;
  padding-left: 3px;
}
.feed-open { padding-left: 0; }
.feed-tile:hover .feed-play, .feed-tile:hover .feed-open {
  opacity: 1; transform: translateY(0) scale(1);
}
.feed-tile:hover .feed-play { background: var(--blood); color: var(--void); }
.feed-info { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.feed-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: 20px;
  line-height: 1.08;
  color: var(--ghost);
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s;
}
.feed-tile:hover .feed-title { color: var(--blood); }
.feed-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost-dim);
}
@media (max-width: 600px) {
  .feed-section { padding: 32px 16px 64px; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feed-title { font-size: 16px; }
}

/* preview modal */
.feed-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.feed-modal[hidden] { display: none; }
.feed-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 3, 6, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.feed-modal-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: linear-gradient(180deg, rgba(20,20,28,0.96), rgba(8,8,14,0.98));
  border: 1px solid var(--blood);
  box-shadow: 0 30px 90px -20px rgba(255, 31, 46, 0.4);
}
.feed-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  width: 34px; height: 34px;
  border: 1px solid var(--ghost-low);
  background: rgba(5,5,7,0.7);
  color: var(--ghost);
  cursor: pointer;
  font-size: 13px;
  transition: color 0.2s, border-color 0.2s;
}
.feed-modal-close:hover { color: var(--blood); border-color: var(--blood); }
.feed-modal-media {
  position: relative;
  min-height: 220px;
  background: var(--void-2);
}
.feed-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feed-modal-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; }
.feed-modal-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blood);
}
.feed-modal-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
  color: var(--ghost);
  letter-spacing: 0.01em;
}
.feed-modal-desc { font-size: 15px; line-height: 1.6; color: var(--ghost); opacity: 0.85; }
.feed-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.feed-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid var(--ghost-low);
  color: var(--ghost);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.2s;
}
.feed-cta:hover { border-color: var(--blood); color: var(--blood); transform: translateY(-2px); }
.feed-cta.primary { border-color: var(--blood); color: var(--blood); background: rgba(255,31,46,0.08); }
.feed-cta.primary:hover { background: var(--blood); color: var(--void); }
.feed-modal-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
@media (max-width: 620px) {
  .feed-modal-card { grid-template-columns: 1fr; max-height: 92vh; }
  .feed-modal-media { aspect-ratio: 16 / 9; min-height: 0; }
}

/* ════════════════════════════════════════════════════════════════
   TRACK ROW ⸺ big play on the FAR LEFT of the title
   ════════════════════════════════════════════════════════════════ */
.track.has-lead-play {
  grid-template-columns: 52px 44px 1fr auto;
  gap: 18px;
}
.ee-play-lead { flex: 0 0 auto; }
.ee-play-lead.is-empty {
  border-color: var(--ghost-low);
  color: var(--ghost-low);
  background: transparent;
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}
.ee-play-lead.is-empty:hover { background: transparent; color: var(--ghost-low); box-shadow: none; }
@media (max-width: 700px) {
  .track.has-lead-play { grid-template-columns: 46px 26px 1fr; column-gap: 12px; row-gap: 10px; }
  .track.has-lead-play .track-ctl { grid-column: 1 / -1; justify-content: flex-start; }
  .ee-play-lead { width: 42px; height: 42px; }
}

/* ════════════════════════════════════════════════════════════════
   ARTWORK ⸺ per-release hi-res gallery + downloads
   ════════════════════════════════════════════════════════════════ */
.artwork-section { margin: 80px 0 40px; }
.artwork-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.artwork-card {
  margin: 0;
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.4);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.artwork-card:hover {
  border-color: var(--blood);
  transform: translateY(-3px);
  box-shadow: 0 16px 46px -18px rgba(255, 31, 46, 0.4);
}
.artwork-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--void-2);
  border: 1px solid var(--ghost-low);
}
.artwork-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); transition: transform 0.6s, filter 0.4s; }
.artwork-card:hover .artwork-img img { transform: scale(1.05); filter: saturate(1.1); }
.artwork-cap {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost-dim);
}
.artwork-dl { align-self: flex-start; }
.artwork-img[role="button"] { cursor: zoom-in; }

/* artwork lightbox */
.art-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.art-lightbox[hidden] { display: none; }
.art-lightbox-backdrop { position: absolute; inset: 0; background: rgba(2, 2, 5, 0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.art-lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: min(1100px, 100%);
  max-height: 92vh;
}
.art-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--ghost-low);
  box-shadow: 0 30px 90px -20px rgba(255, 31, 46, 0.35);
}
.art-lightbox-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.art-lightbox-cap {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ghost-dim);
}
.art-lightbox-close {
  position: absolute;
  top: -6px; right: -6px;
  transform: translate(50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--blood);
  background: rgba(5, 5, 7, 0.85);
  color: var(--ghost);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.art-lightbox-close:hover { background: var(--blood); color: var(--void); }
@media (max-width: 600px) {
  .art-lightbox { padding: 16px; }
  .art-lightbox-close { top: 2px; right: 2px; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   FEED MODAL ⸺ embedded video / local player
   ════════════════════════════════════════════════════════════════ */
.feed-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  grid-column: 1 / -1;
}
.feed-embed iframe,
.feed-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.feed-modal-card.has-embed { grid-template-columns: 1fr; width: min(920px, 100%); }

/* feed filter + search bar */
.feed-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.feed-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.feed-filter {
  padding: 8px 14px;
  border: 1px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.4);
  color: var(--ghost-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.feed-filter:hover { color: var(--ghost); border-color: var(--ghost-dim); }
.feed-filter.on { color: var(--blood); border-color: var(--blood); background: rgba(255, 31, 46, 0.08); }
.feed-search {
  flex: 1 1 200px;
  max-width: 320px;
  padding: 9px 14px;
  background: rgba(15, 15, 22, 0.4);
  border: 1px solid var(--ghost-low);
  color: var(--ghost);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color 0.25s;
}
.feed-search:focus { border-color: var(--blood); }
.feed-search::placeholder { color: var(--ghost-low); letter-spacing: 0.2em; text-transform: uppercase; font-size: 10px; }
.feed-reshuffle-btn {
  padding: 8px 14px;
  border: 1px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.4);
  color: var(--ghost-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.feed-reshuffle-btn:hover { color: var(--blood); border-color: var(--blood); }
.feed-sentinel { height: 1px; }
.feed-grid-collapsed { overflow: hidden; transition: max-height 0.4s ease; }
.feed-expand-toggle {
  display: block;
  margin: 16px auto 0;
  padding: 9px 22px;
  border: 1px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.4);
  color: var(--ghost-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}
.feed-expand-toggle:hover { color: var(--blood); border-color: var(--blood); }
.feed-empty {
  grid-column: 1 / -1;
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ghost-dim);
  padding: 20px 0;
}
@media (max-width: 600px) { .feed-search { max-width: none; } }

/* ════════════════════════════════════════════════════════════════
   WATCH / LISTEN PAGE
   ════════════════════════════════════════════════════════════════ */
.watch-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}
.watch-media { position: relative; width: 100%; border: 1px solid var(--ghost-low); background: var(--void-2); overflow: hidden; }
.watch-embed { aspect-ratio: 16 / 9; }
.watch-embed iframe, .watch-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.watch-cover { aspect-ratio: 1 / 1; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8); }
.watch-cover img { width: 100%; height: 100%; object-fit: cover; }
.watch-audio { display: flex; flex-direction: column; gap: 14px; }
.watch-audio-el { width: 100%; height: 44px; filter: invert(0.9) hue-rotate(180deg) saturate(0.4); border-radius: 4px; }

/* ════════════════════════════════════════════════════════════════
   COMMENTS
   ════════════════════════════════════════════════════════════════ */
.cmt-section { margin: 64px 0 20px; max-width: 820px; }
.cmt-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.4);
  margin-bottom: 28px;
}
.cmt-form-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cmt-nick-in, .cmt-text {
  background: rgba(8, 8, 14, 0.6);
  border: 1px solid var(--ghost-low);
  color: var(--ghost);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.25s;
}
.cmt-nick-in { width: 240px; max-width: 100%; }
.cmt-text { width: 100%; resize: vertical; line-height: 1.6; }
.cmt-nick-in:focus, .cmt-text:focus { border-color: var(--blood); }
.cmt-id-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ghost-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cmt-form-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.cmt-note { font-family: "JetBrains Mono", monospace; font-size: 10px; line-height: 1.6; color: var(--ghost-dim); max-width: 46ch; }
.cmt-submit { cursor: pointer; }
.cmt-submit:disabled { opacity: 0.5; cursor: wait; }

.cmt-list { display: flex; flex-direction: column; gap: 16px; }
.cmt-empty { font-family: "Crimson Pro", serif; font-style: italic; font-size: 16px; color: var(--ghost-dim); }
.cmt {
  padding: 14px 16px;
  border: 1px solid var(--ghost-low);
  border-left: 2px solid var(--ghost-low);
  background: rgba(15, 15, 22, 0.35);
}
.cmt.mine { border-left-color: var(--blood); background: rgba(255, 31, 46, 0.04); }
.cmt.cmt-flash { border-left-color: var(--blood); background: rgba(255, 31, 46, 0.16); transition: background 2.4s ease; }
.cmt-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.cmt-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border: 1px solid;
  border-radius: 3px;
}
.cmt-nick { font-family: "Syne", sans-serif; font-weight: 700; font-size: 15px; color: var(--ghost); }
.cmt-you { font-family: "JetBrains Mono", monospace; font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--void); background: var(--blood); padding: 2px 6px; }
.cmt-time { font-family: "JetBrains Mono", monospace; font-size: 10px; color: var(--ghost-dim); margin-left: auto; }
.cmt-body { font-family: "Crimson Pro", serif; font-size: 16px; line-height: 1.6; color: var(--ghost); white-space: pre-wrap; word-break: break-word; }
.cmt-meta { margin-top: 8px; font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: 0.06em; color: var(--ghost-low); word-break: break-all; }
@media (max-width: 600px) {
  .cmt-nick-in { width: 100%; }
  .cmt-time { margin-left: 0; }
  .cmt-note { max-width: none; }
}
.watch-media .feed-badge { top: 12px; left: 12px; }
.watch-info { display: flex; flex-direction: column; gap: 14px; }
.watch-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blood);
}
.watch-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  color: var(--ghost);
  letter-spacing: 0.01em;
  text-shadow: 0 0 30px rgba(255, 31, 46, 0.25);
}
.watch-desc { font-size: 17px; line-height: 1.7; color: var(--ghost); opacity: 0.88; }
.watch-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 6px; }
.watch-info .tp-links, .watch-info .tp-dl { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.watch-missing {
  text-align: center;
  padding: 80px 0;
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ghost-dim);
}
.watch-missing a { color: var(--blood); border-bottom: 1px dashed var(--blood); }
@media (max-width: 820px) {
  .watch-layout { grid-template-columns: 1fr; gap: 28px; }
  .watch-cover { max-width: 420px; }
}

/* ════════════════════════════════════════════════════════════════
   ARTS PAGE
   ════════════════════════════════════════════════════════════════ */
.arts-hero { max-width: 900px; margin: 0 0 56px; }
.arts-title {
  font-family: "Metal Mania", "Pirata One", serif;
  font-size: clamp(64px, 13vw, 180px);
  line-height: 0.9;
  color: var(--blood);
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(255, 31, 46, 0.35);
  margin: 10px 0 20px;
}
.arts-title .x { color: var(--ghost); display: inline-block; transform: rotate(6deg); }
.arts-lede { font-size: clamp(18px, 2.2vw, 24px); line-height: 1.6; color: var(--ghost); max-width: 40ch; }
.arts-note {
  margin-top: 22px;
  padding-left: 14px;
  border-left: 2px solid var(--uv);
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ghost-dim);
  max-width: 52ch;
}
.art-piece { margin: 0; display: flex; flex-direction: column; }
.art-piece-image[role="button"] { cursor: zoom-in; }
.art-piece .art-dl { align-self: flex-start; margin-top: 16px; }

/* ════════════════════════════════════════════════════════════════
   EDITS PAGE (TikTok short-form)
   ════════════════════════════════════════════════════════════════ */
.edits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.edit-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ghost-low);
  background: rgba(20, 20, 28, 0.4);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.edit-card:hover { border-color: var(--blood); transform: translateY(-4px); box-shadow: 0 16px 46px -18px rgba(255, 31, 46, 0.4); }
.edit-thumb {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: var(--void-2);
  overflow: hidden;
}
.edit-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.7); transition: transform 0.6s, filter 0.4s; }
.edit-card:hover .edit-thumb img { transform: scale(1.05); filter: saturate(1.05) brightness(0.9); }
.edit-badge {
  position: absolute; top: 8px; left: 8px;
  font-family: "JetBrains Mono", monospace; font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ghost); background: rgba(5,5,7,0.7); border: 1px solid var(--ghost-low); padding: 3px 7px;
}
.edit-play {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--blood); background: rgba(5,5,7,0.5); color: var(--blood);
  font-size: 18px; padding-left: 4px; transition: background 0.3s, color 0.3s, transform 0.3s;
}
.edit-card:hover .edit-play { background: var(--blood); color: var(--void); transform: scale(1.08); }
.edit-info { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.edit-title { font-family: "Metal Mania", "Pirata One", serif; font-size: 20px; line-height: 1.05; color: var(--ghost); }
.edit-meta { font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ghost-dim); }
.edit-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
@media (max-width: 600px) { .edits-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
