@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #0a0612;
  --bg-mid: #110b1f;
  --bg-surface: #1a1030;
  --purple-glow: #7b2ff2;
  --purple-light: #a855f7;
  --purple-soft: #c084fc;
  --neon-magenta: #e040fb;
  --neon-cyan: #00e5ff;
  --gold-accent: #fbbf24;
  --text-primary: #f0e6ff;
  --text-secondary: #a78bdb;
  --text-muted: #6b5b8a;
  --vhs-red: #ff3366;
  --vhs-blue: #3366ff;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ═══ VHS SCANLINES OVERLAY ═══ */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(123, 47, 242, 0.03) 2px,
    rgba(123, 47, 242, 0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse 600px 600px at 30% 20%, rgba(123, 47, 242, 0.15), transparent),
    radial-gradient(ellipse 400px 400px at 70% 60%, rgba(224, 64, 251, 0.08), transparent),
    radial-gradient(ellipse 300px 300px at 50% 80%, rgba(0, 229, 255, 0.05), transparent);
  animation: drift 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -1%) rotate(1deg); }
  66% { transform: translate(-1%, 2%) rotate(-1deg); }
}

.hero-eye {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-eye svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(123, 47, 242, 0.6));
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.hero h1 .network {
  display: block;
  background: linear-gradient(135deg, var(--purple-light), var(--neon-magenta), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.hero-lede {
  max-width: 600px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple-light), transparent);
  margin: 0 auto;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ═══ GLITCH DIVIDER ═══ */
.glitch-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--purple-glow), var(--neon-magenta), var(--neon-cyan), transparent);
  position: relative;
  overflow: hidden;
}

.glitch-divider::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: glitch-sweep 4s linear infinite;
}

@keyframes glitch-sweep {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* ═══ SHOWS SECTION ═══ */
.shows {
  padding: 6rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 3rem;
  line-height: 1.15;
}

.show-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .show-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.show-card {
  background: linear-gradient(145deg, var(--bg-surface), var(--bg-mid));
  border: 1px solid rgba(123, 47, 242, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.show-card:hover {
  border-color: rgba(123, 47, 242, 0.5);
  transform: translateY(-4px);
}

.show-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-glow), var(--neon-magenta));
  opacity: 0;
  transition: opacity 0.3s;
}

.show-card:hover::before { opacity: 1; }

.show-genre {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.show-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.show-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══ UNIVERSE SECTION ═══ */
.universe {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.universe::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 400px at 20% 50%, rgba(123, 47, 242, 0.08), transparent),
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(0, 229, 255, 0.05), transparent);
}

.universe-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.universe-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 700px) {
  .universe-features {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.universe-feature {
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.universe-feature h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--purple-soft);
}

.universe-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══ VIBE SECTION ═══ */
.vibe {
  padding: 6rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.vibe-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  border-left: 3px solid var(--purple-glow);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vibe-tag {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(123, 47, 242, 0.3);
  border-radius: 100px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  background: rgba(123, 47, 242, 0.05);
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 8rem 1.5rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 500px 500px at 50% 50%, rgba(123, 47, 242, 0.12), transparent);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--purple-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ═══ FOOTER ═══ */
footer {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(123, 47, 242, 0.1);
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-slogan {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 375px) {
  .hero { padding: 1.5rem 1rem; }
  .shows, .universe, .vibe, .closing { padding-left: 1rem; padding-right: 1rem; }
  .show-card { padding: 1.5rem; }
}

/* ═══════════════════════════════════════
   CATALOG PAGE — Brand Hub / Show Catalog
   ═══════════════════════════════════════ */

/* VHS noise */
.vhs-noise {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.04) 3px,
      rgba(0, 0, 0, 0.04) 4px
    );
  pointer-events: none;
  z-index: 9998;
}

/* Nav */
.catalog-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 47, 242, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-soft);
}

/* Hero */
.catalog-hero {
  position: relative;
  padding: 7rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}

.catalog-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.bg-orb-1 {
  width: 600px; height: 600px;
  top: -100px; left: -200px;
  background: radial-gradient(circle, rgba(123, 47, 242, 0.2), transparent 70%);
  animation: drift-slow 25s ease-in-out infinite;
}

.bg-orb-2 {
  width: 400px; height: 400px;
  bottom: -50px; right: -100px;
  background: radial-gradient(circle, rgba(224, 64, 251, 0.12), transparent 70%);
  animation: drift-slow 18s ease-in-out infinite reverse;
}

.bg-orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06), transparent 70%);
  animation: drift-slow 30s ease-in-out infinite;
}

.scanline-scroll {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 4px,
    rgba(123, 47, 242, 0.04) 4px,
    rgba(123, 47, 242, 0.04) 5px
  );
  animation: scanlines-move 8s linear infinite;
}

@keyframes drift-slow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(3%, -2%); }
  66% { transform: translate(-2%, 3%); }
}

@keyframes scanlines-move {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

.catalog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.catalog-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.catalog-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.catalog-title .catalog-title-main {
  display: block;
  color: var(--text-primary);
}

.catalog-title .catalog-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--purple-light), var(--neon-magenta), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.catalog-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.catalog-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.catalog-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Static bar */
.static-bar {
  background: var(--bg-mid);
  border-top: 1px solid rgba(123, 47, 242, 0.2);
  border-bottom: 1px solid rgba(123, 47, 242, 0.2);
  padding: 0.6rem 0;
  overflow: hidden;
}

.static-bar-inner {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.static-bar span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Shows grid */
.catalog-main {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.catalog-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Individual show entry */
.show-entry {
  background: linear-gradient(145deg, var(--bg-surface), var(--bg-mid));
  border: 1px solid rgba(123, 47, 242, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  scroll-margin-top: 6rem;
}

.show-entry:hover {
  border-color: rgba(123, 47, 242, 0.45);
  transform: translateY(-2px);
}

.show-entry-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(123, 47, 242, 0.12);
  position: relative;
}

.show-entry-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-glow), var(--neon-magenta));
}

.show-entry-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.show-entry-index {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(123, 47, 242, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.show-entry-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-weight: 600;
}

.tag-genre {
  background: rgba(0, 229, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.tag-mood {
  background: rgba(224, 64, 251, 0.1);
  color: var(--neon-magenta);
  border: 1px solid rgba(224, 64, 251, 0.2);
}

.show-entry-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.show-entry-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

.show-entry-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.show-entry-description p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.entry-sub {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 1rem;
  font-weight: 600;
}

.show-entry-lore p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lore-symbols {
  display: flex;
  gap: 0.75rem;
}

.lore-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(123, 47, 242, 0.1);
  border: 1px solid rgba(123, 47, 242, 0.2);
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--purple-soft);
  cursor: default;
}

.lore-symbol.large {
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
  border-radius: 10px;
}

.character-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.character-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 47, 242, 0.08);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
}

.character-card:hover {
  background: rgba(123, 47, 242, 0.05);
  border-color: rgba(123, 47, 242, 0.2);
}

.character-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

.character-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.character-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.character-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.show-entry-footer {
  padding: 1.25rem 2.5rem;
  border-top: 1px solid rgba(123, 47, 242, 0.08);
}

.show-universe-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Connected universe */
.connected-universe {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.connected-universe::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 20% 50%, rgba(123, 47, 242, 0.07), transparent),
    radial-gradient(ellipse 500px 300px at 80% 50%, rgba(0, 229, 255, 0.04), transparent);
}

.connected-universe-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.universe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 700px) {
  .universe-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.universe-card {
  background: linear-gradient(145deg, var(--bg-surface), var(--bg-mid));
  border: 1px solid rgba(123, 47, 242, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.universe-card:hover {
  border-color: rgba(123, 47, 242, 0.35);
  transform: translateY(-3px);
}

.universe-card-icon {
  margin-bottom: 1.25rem;
}

.universe-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.universe-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Lore archive */
.lore-archive {
  margin-top: 4rem;
  background: linear-gradient(145deg, var(--bg-surface), var(--bg-mid));
  border: 1px solid rgba(123, 47, 242, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
}

.archive-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.archive-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.archive-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.archive-symbols-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.archive-group-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Catalog footer */
.catalog-footer {
  border-top: 1px solid rgba(123, 47, 242, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}

.catalog-footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.catalog-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.footer-brand-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.15rem;
}

.catalog-footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 700px) {
  .catalog-nav { padding: 1rem 1.25rem; }
  .catalog-hero { padding: 5rem 1.25rem 3rem; }
  .catalog-main { padding: 3rem 1.25rem; }
  .show-entry-header,
  .show-entry-body,
  .show-entry-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .static-bar-inner { gap: 2.5rem; }
  .catalog-hero-meta { gap: 1.25rem; }
  .character-info strong { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .nav-links { gap: 1rem; }
  .catalog-stat { font-size: 0.75rem; }
}