@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Syne:wght@700;800&display=swap");

:root {
  --glass-fill: rgba(123, 182, 210, 0.14);
  --glass-stroke: rgba(188, 228, 246, 0.34);
  --edge-line: 1px solid var(--glass-stroke);
  --button-text: #eaf6ff;
  --panel-fill-top: rgba(70, 122, 148, 0.22);
  --panel-fill-bottom: rgba(14, 34, 48, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--button-text);
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #2f3e45;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at 74% 12%,
      rgba(164, 211, 234, 0.24),
      transparent 42%
    ),
    radial-gradient(
      circle at 20% 88%,
      rgba(108, 161, 191, 0.16),
      transparent 38%
    ),
    linear-gradient(160deg, rgba(8, 19, 27, 0.5), rgba(7, 13, 20, 0.7));
  pointer-events: none;
}

.page {
  width: min(560px, 100%);
  border: var(--edge-line);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(22px) saturate(130%);
  background: linear-gradient(
    160deg,
    var(--panel-fill-top),
    var(--panel-fill-bottom)
  );
  box-shadow: 0 28px 70px rgba(4, 10, 18, 0.45);
}

.logo-wrap {
  margin-bottom: 34px;
  padding-top: 8px;
  display: flex;
  justify-content: center;
}

.logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

.audio-wrap {
  margin: 0 auto 18px;
  width: 100%;
  max-width: 360px;
}

.audio-player {
  width: 100%;
  height: 40px;
  opacity: 0.88;
  filter: saturate(0.85) brightness(0.95);
}

.release-hero {
  position: relative;
  isolation: isolate;
  margin-bottom: 18px;
  display: grid;
  gap: 12px;
}

.release-hero::before,
.release-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.release-hero::before {
  top: -22px;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  border: 1px solid rgba(187, 230, 248, 0.26);
  background: radial-gradient(
    circle,
    rgba(166, 212, 234, 0.2) 0%,
    rgba(166, 212, 234, 0.08) 48%,
    rgba(166, 212, 234, 0) 72%
  );
}

.release-hero::after {
  top: -8px;
  width: 276px;
  height: 276px;
  transform: translateX(-50%);
  border: 1px solid rgba(195, 234, 250, 0.18);
}

.cover-art {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(186, 227, 245, 0.38);
  box-shadow: 0 18px 38px rgba(4, 10, 18, 0.48);
  display: block;
}

.release-headline {
  margin: 0;
  text-align: center;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
  font-family: "Syne", "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.button-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.glass-button {
  text-decoration: none;
  color: var(--button-text);
  text-align: center;
  font-family: "Syne", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 16px;
  border-radius: 14px;
  border: var(--edge-line);
  background: var(--glass-fill);
  box-shadow: 0 10px 26px rgba(3, 9, 16, 0.34);
  backdrop-filter: blur(14px);
  transition: transform 140ms ease, background 140ms ease;
}

.glass-button:hover,
.glass-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(145, 201, 228, 0.24);
}

.glass-button:active {
  transform: translateY(0);
}

.playlist-wrap {
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  background: rgba(118, 178, 207, 0.14);
  backdrop-filter: blur(13px);
  padding: 10px;
}

.playlist-cta {
  margin: 0 4px 12px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
  font-family: "Syne", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #dff2ff;
}

.playlist-wrap iframe {
  display: block;
}

.site-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(223, 242, 255, 0.78);
}

.footer-text {
  white-space: nowrap;
}

.footer-mark {
  height: 1em;
  width: auto;
  display: inline-block;
  opacity: 0.88;
}

@media (max-width: 520px) {
  .page {
    border-radius: 20px;
    padding: 18px;
  }
}
