/* Link in bio — mobile-first, Instagram-friendly */

:root {
  --bio-bg0: #0c0c0c;
  --bio-bg1: #1a1a1a;
  --bio-fg: #f2f2f2;
  --bio-muted: #a8a8a8;
  --bio-line: rgba(255, 255, 255, 0.14);
  --bio-card: rgba(255, 255, 255, 0.04);
  --bio-card-hover: rgba(255, 255, 255, 0.09);
  --bio-accent: #e8e8e8;
  --bio-font: "Switzer", "Avenir Next", sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 255, 255, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bio-bg1) 0%, var(--bio-bg0) 45%, #080808 100%);
  background-attachment: fixed;
  color: var(--bio-fg);
  font-family: var(--bio-font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.bio {
  width: min(100%, 440px);
  margin: 0 auto;
  padding: 2rem 1.15rem 3.5rem;
  min-height: 100vh;
}

.bio__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  animation: bioIn 0.55s ease both;
}

.bio__logo {
  width: min(72%, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.bio__name {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bio-fg);
}

.bio__tagline {
  margin: 0;
  font-size: 0.92rem;
  color: var(--bio-muted);
  letter-spacing: 0.02em;
}

.bio__section {
  margin-top: 1.75rem;
  animation: bioIn 0.55s ease both;
  animation-delay: calc(var(--i, 0) * 60ms + 80ms);
}

.bio__section[hidden] {
  display: none !important;
}

.bio__heading {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bio-muted);
}

.bio__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bio__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--bio-line);
  border-radius: 999px;
  background: var(--bio-card);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.bio__btn:hover,
.bio__btn:focus-visible {
  background: var(--bio-card-hover);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

.bio__btn:active {
  transform: scale(0.985);
}

.bio__shows,
.bio__releases,
.bio__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.bio__show {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--bio-line);
  border-radius: 14px;
  background: var(--bio-card);
  transition: background 0.18s ease;
}

.bio__show:hover {
  background: var(--bio-card-hover);
}

.bio__show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.bio__show-month {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bio-muted);
}

.bio__show-day {
  font-size: 1.25rem;
  font-weight: 750;
}

.bio__show-info {
  min-width: 0;
}

.bio__show-event {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bio__show-place {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--bio-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bio__show-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bio-muted);
  white-space: nowrap;
}

.bio__show[href] .bio__show-cta {
  color: var(--bio-fg);
}

.bio__release {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.55rem;
  border: 1px solid var(--bio-line);
  border-radius: 14px;
  background: var(--bio-card);
  transition: background 0.18s ease;
}

.bio__release:hover {
  background: var(--bio-card-hover);
}

.bio__release-cover {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
}

.bio__release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio__release-meta {
  min-width: 0;
}

.bio__release-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bio__release-artists {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--bio-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bio__contact {
  display: block;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--bio-line);
  border-radius: 14px;
  background: var(--bio-card);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.bio__contact:hover,
.bio__contact:focus-visible {
  background: var(--bio-card-hover);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

.bio__contact-role {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bio-muted);
}

.bio__contact-name {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  font-weight: 650;
}

.bio__contact-email {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--bio-muted);
  word-break: break-all;
}

.bio__empty {
  margin: 0;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  color: var(--bio-muted);
}

.bio__footer {
  margin-top: 2.25rem;
  text-align: center;
  animation: bioIn 0.55s ease both;
  animation-delay: 0.35s;
}

.bio__footer a {
  font-size: 0.78rem;
  color: var(--bio-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.bio__footer a:hover {
  color: var(--bio-fg);
  border-bottom-color: var(--bio-line);
}

.bio--loading .bio__section {
  opacity: 0.45;
}

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

@media (min-width: 480px) {
  .bio {
    padding-top: 2.75rem;
  }
}
