/* REVIVE+ featured era module */
html[data-page="eras"] .era-tab:last-child[aria-selected="true"] .era-tab-dot {
  background: linear-gradient(135deg, #ff8fd5, #9f6cff);
  box-shadow: 0 0 26px rgba(202, 120, 255, .52);
}

html[data-page="eras"] .era-archive-card:last-child {
  border-color: rgba(226, 178, 255, .28);
  background:
    radial-gradient(circle at 80% 8%, rgba(159, 108, 255, .16), transparent 34%),
    linear-gradient(150deg, rgba(33, 20, 52, .88), rgba(8, 6, 15, .95));
}

.revive-feature {
  padding-top: 28px;
}

.revive-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid rgba(226, 195, 255, .2);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(255, 114, 201, .12), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(118, 92, 255, .16), transparent 38%),
    linear-gradient(145deg, rgba(23, 14, 37, .94), rgba(6, 5, 12, .97));
  box-shadow: 0 34px 120px rgba(0, 0, 0, .42);
}

.revive-shell::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(159, 108, 255, .14);
  pointer-events: none;
}

.revive-copy,
.revive-visual {
  position: relative;
  z-index: 1;
}

.revive-title {
  margin: 14px 0 18px;
  font-size: clamp(4rem, 8vw, 7.4rem);
  line-height: .84;
  letter-spacing: -.075em;
}

.revive-lead {
  max-width: 620px;
  margin: 0;
  color: #b8b0c2;
  font-size: clamp(.98rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}

.revive-meta {
  margin: 30px 0 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.revive-meta div {
  padding: 19px 14px 19px 0;
}

.revive-meta div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.revive-meta span {
  display: block;
  margin-bottom: 7px;
  color: #8f879a;
  font-size: .61rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.revive-meta strong {
  font-size: .98rem;
}

.revive-concepts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.revive-concepts span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #d9d0e1;
  background: rgba(255, 255, 255, .035);
  font-size: .64rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.revive-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.revive-actions a {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #f4ebf9;
  background: rgba(255, 255, 255, .045);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.revive-actions a:first-child {
  color: #170713;
  border-color: transparent;
  background: linear-gradient(100deg, #d79bff, #ff79c6);
}

.revive-actions a:hover,
.revive-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .4);
}

.revive-visual {
  display: grid;
  gap: 16px;
  align-content: start;
}

.blackhole-frame {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  overflow: hidden;
  background: #05040a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
}

.blackhole-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blackhole-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #928a9d;
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.revive-track-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
}

.revive-track-panel header {
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.revive-track-panel h3 {
  margin: 0;
  font-size: 1.05rem;
}

.revive-track-panel header span {
  color: #8f879a;
  font-size: .63rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.revive-tracklist {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  list-style: none;
  counter-reset: revive-track;
}

.revive-tracklist li {
  counter-increment: revive-track;
  min-height: 38px;
  padding: 9px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .075);
  color: #d5cedd;
  font-size: .78rem;
}

.revive-tracklist li::before {
  content: counter(revive-track, decimal-leading-zero);
  color: #756d80;
  font-size: .58rem;
  letter-spacing: .08em;
}

.revive-tracklist li:nth-child(-n + 2) {
  color: #fff;
  font-weight: 700;
}

.revive-tracklist em {
  color: #9e95a7;
  font-size: .68rem;
  font-style: normal;
}

@media (max-width: 1050px) {
  .revive-shell {
    grid-template-columns: 1fr;
  }

  .revive-visual {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: stretch;
  }

  .blackhole-frame {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .revive-shell {
    padding: 24px;
    border-radius: 26px;
  }

  .revive-title {
    font-size: clamp(3.8rem, 20vw, 5.7rem);
  }

  .revive-meta,
  .revive-visual,
  .revive-tracklist {
    grid-template-columns: 1fr;
  }

  .revive-meta div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .blackhole-frame {
    min-height: 250px;
  }
}
