:root {
  --bg: radial-gradient(circle at 10% 0%, #0f172a 0%, #020617 55%, #000 100%);
  --text: #e2e8f0;
  --muted: rgba(226,232,240,0.65);
  --accent: #38bdf8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0f172a;
  background-image: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
.hero {
  position: relative;
  z-index: 1;
  padding: 1rem 1rem .5rem;
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.hero-img {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(15,23,42,0.3);
}
h1 {
  margin: 0 0 .2rem;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
}
.subtitle {
  margin: 0;
  opacity: .78;
  font-size: .75rem;
}
.tagline {
  margin: .25rem 0 0;
  opacity: .6;
  font-size: .75rem;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.section h2 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.track-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.track {
  background: rgba(2,6,23,0.6);
  border: 1px solid rgba(148,163,184,0.1);
  border-radius: 16px;
  padding: .65rem .75rem .6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
}
.track h3 {
  margin: 0 0 .15rem;
}
.meta {
  font-size: .72rem;
  color: var(--muted);
}
audio {
  width: 210px;
}
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1rem 2.2rem;
  background: rgba(2,6,23,0.3);
}
.codex-footer {
  margin-top: .9rem;
  display: inline-block;
  background: rgba(2,6,23,0.6);
  border: 1px solid rgba(226,232,240,0.06);
  border-radius: 14px;
  padding: .6rem 1rem .7rem;
  max-width: 480px;
  text-align: center;
}
.codex-title {
  font-weight: 600;
  margin-bottom: .25rem;
}
.codex-body {
  font-family: "Noto Sans Egyptian Hieroglyphs", ui-sans-serif, system-ui;
  font-size: .9rem;
  line-height: 1.25;
}
.codex-body.small {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .65rem;
  opacity: .7;
  margin-top: .25rem;
}
@media (max-width: 620px) {
  .hero-inner {
    gap: .9rem;
  }
  .hero-img {
    width: 70px;
    height: 70px;
  }
  .track {
    flex-direction: column;
    align-items: flex-start;
  }
  audio {
    width: 100%;
  }
.codex-body .glyph {
  font-family: 'Noto Sans Egyptian Hieroglyphs', system-ui, sans-serif;
  font-size: 1.1em;
}

.footer .codex-body .glyph--staff {
  color: #00c853 !important;  /* green */
}

.footer .codex-body .glyph--owl {
  color: #ffeb3b !important;  /* yellow */
}

.footer .codex-body .glyph--eye {
  color: #2196f3 !important;  /* blue */
}

.footer .codex-body .glyph--wing {
  color: #9e9e9e !important;  /* grey */
}