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

body {
  background: #0a0a0c;
  color: #f0ede6;
  font-family: "Outfit", system-ui, sans-serif;
  padding: 3.5rem 1.25rem 5rem;
}

.page {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
  animation: headerIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.artwork-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 1.25rem;
}

.artwork {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  display: block;
}

.artwork-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  border: 1.5px solid rgba(255, 106, 61, 0.35);
}

.show-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.875rem;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.show-hosts {
  font-size: 0.8rem;
  color: rgba(240, 237, 230, 0.38);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rule {
  width: 28px;
  height: 2px;
  background: #ff6a3d;
  border-radius: 2px;
  margin: 1.25rem 0;
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.3);
  font-weight: 500;
}

.links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.link-item {
  opacity: 0;
  animation: rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.link-item {
  animation-delay: calc(sibling-index() * 0.05s);
}

.link-a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  text-decoration: none;
  color: #f0ede6;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.2s;
  &:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateX(4px);
}}

.badge,
.service-img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: white;
  border-radius: 9px;
  overflow: clip;
}

.link-name {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
}

.link-arrow {
  color: rgba(240, 237, 230, 0.2);
  flex-shrink: 0;
  transition:
    color 0.18s,
    transform 0.2s;
}

.link-a:hover .link-arrow {
  color: #ff6a3d;
  transform: translateX(2px);
}

/* RSS gets a subtle dashed treatment */
.rss-item .link-a {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
}

.footer {
  margin-top: 2.75rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.8;
  animation: footerIn 0.6s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes footerIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.footer a {
  color: oklch(70% 48% 37deg);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 237, 230, 0.15);
  transition:
    color 0.15s,
    border-color 0.15s;
}

.footer a:hover {
  color: rgba(240, 237, 230, 0.65);
  border-color: rgba(240, 237, 230, 0.35);
}
