/* ════════════════════════════════════════════════════════════════
   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.8s 0.4s, visibility 0.8s 0.4s;
}
#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;
  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; }
  .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.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;
}

/* ─── 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;
}
