* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  height: 100%;
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: "Fira Code", "JetBrains Mono", Consolas, "Courier New", monospace;
}
body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}
.page-shell {
  width: min(100%, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 48px);
}
.card {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.release-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 22px;
}

.release-panel {
  align-items: center;
  text-align: center;
}

.album {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.album-cover {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.album-title {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.release-copy {
  width: 180px;
  margin: 0 auto;
  color: #d0d0d0;
  line-height: 1.6;
}
.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  opacity: 0.78;
}
.release-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.release-panel p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.6;
}
.links-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.title-row .tag {
  color: #6af2ff;
  font-size: 1.25rem;
}
.links-panel h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
}
.subtitle {
  margin: 0;
  color: #d0d0d0;
  letter-spacing: 0.02em;
}
.links-list {
  display: grid;
  gap: 14px;
}
.link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.link-item:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 720px) {
  .card {
    grid-template-columns: 1fr;
  }
  .release-panel {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 22px;
  }
  .album-cover {
    width: 140px;
    height: 140px;
  }
}
