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

body {
  min-height: 100vh;
  background: #000;
  color: #eaeaea;
  font-family: Georgia, serif;
}

.album-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.album-title {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.35em;
  color: #a47e3c;
  margin-bottom: 0.5em;
}

.album-subtitle {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3em;
  text-transform: uppercase;
}

.album-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
  margin-bottom: 3em;
}

.album-card {
  display: block;
  width: 100%;
  max-width: 420px;
  padding: 14px 24px;
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #a47e3c;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.album-card:hover {
  border-color: rgba(164, 126, 60, 0.6);
  color: rgba(164, 126, 60, 0.95);
}

.album-back {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.album-back:hover {
  color: #a47e3c;
}
