:root {
  --bg-top: #f6fbff;
  --bg-bottom: #d7f0ff;
  --card: rgba(255, 255, 255, 0.9);
  --card-border: rgba(20, 102, 181, 0.12);
  --text: #092540;
  --muted: #577087;
  --primary: #1565c0;
  --primary-deep: #0f4d95;
  --pill: #edf6ff;
  --shadow: 0 24px 70px rgba(12, 52, 93, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(36, 145, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(21, 101, 192, 0.12), transparent 30%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
}

.hero-card {
  width: min(100%, 460px);
  max-height: calc(100vh - 32px);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 22px 18px 18px;
  text-align: center;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-wrap {
  margin-bottom: 12px;
}

.brand-logo {
  display: block;
  width: min(200px, 62vw);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--pill);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(30px, 7vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin: 10px auto 0;
  max-width: 32ch;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.album-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.meta-pill {
  background: #fff;
  border: 1px solid rgba(16, 88, 159, 0.08);
  border-radius: 18px;
  padding: 12px 10px;
  min-width: 152px;
  text-align: center;
}

.meta-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meta-pill strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

.hero-image-wrap {
  margin-top: 14px;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(27vh, 240px);
  object-fit: contain;
  margin: 0 auto;
  background: transparent;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 36px rgba(21, 101, 192, 0.18));
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
}

.store-badge-image {
  display: block;
  width: auto;
  height: 56px;
  max-width: 100%;
}

.helper-text {
  margin: 14px 8px 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.image-fallback {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 24px;
  color: var(--primary-deep);
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.08), rgba(21, 101, 192, 0.02));
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 520px) {
  .hero-card {
    padding: 18px 14px 16px;
    border-radius: 26px;
  }

  .store-badge-image {
    height: 50px;
  }

  .hero-image {
    max-height: min(22vh, 180px);
  }
}
