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

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: #f6f1e7;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.82) 100%),
    url('images/background.jpg') center / cover no-repeat;
  display: flex;
  flex-direction: column;
}

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

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.smart-link-page {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(280px, 460px);
  gap: 48px;
  align-items: center;
}

.cover-panel {
  display: flex;
  justify-content: center;
}

.cover-art {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(242, 186, 87, 0.65);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 40px rgba(0, 0, 0, 0.35);
}

.cover-nowhere-to-go {
  background-image: url('images/release1.png?v=20260423');
}

.cover-turn-of-the-tide {
  background-image: url('images/release2.png?v=20260423');
}

.cover-the-boy-who-cried-wolf {
  background-image: url('images/release3.png?v=20260423');
}

.links-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f2ba57;
}

.release-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.release-subtitle {
  color: rgba(246, 241, 231, 0.82);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 34ch;
}

.button-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.smart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(242, 186, 87, 0.45);
  background: rgba(8, 8, 8, 0.72);
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.smart-button:hover {
  transform: translateY(-2px);
  background: rgba(20, 20, 20, 0.9);
  border-color: rgba(242, 186, 87, 0.9);
}

.smart-button.primary {
  background: #f2ba57;
  color: #111;
  border-color: #f2ba57;
}

.smart-button.primary:hover {
  background: #ffd27f;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #f2ba57;
  font-size: 0.95rem;
}

.page-footer {
  padding: 18px 20px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .smart-link-page {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .links-panel {
    width: min(460px, 100%);
    text-align: center;
    align-items: center;
  }

  .release-subtitle {
    max-width: 40ch;
  }

  .button-list {
    width: 100%;
  }
}

@media (max-width: 600px) {
  main {
    padding: 24px 16px 30px;
  }

  .smart-link-page {
    gap: 22px;
  }

  .release-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .release-subtitle {
    font-size: 0.95rem;
  }

  .smart-button {
    min-height: 54px;
    font-size: 0.95rem;
  }
}
