:root {
  --accent-color: #555;
}
.special-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  line-height: 1.8;
  color: #333;
}
.back {
  display: inline-block;
  margin-bottom: 2rem;
  text-decoration: none;
  color: var(--accent-color);
  font-size: 0.9rem;
}
.album-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 600px) {
  .album-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.album-jacket img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.title-area {
  text-align: center;
  margin-bottom: 3rem;
}
h1 {
  font-weight: 400;
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.05em;
}
.catchphrase {
  font-size: 1.1rem;
  color: #666;
  display: block;
}
.description {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.album-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}
.meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.meta-table th {
  text-align: left;
  font-weight: 400;
  color: #999;
  padding: 0.3rem 1rem 0.3rem 0;
  width: 130px;
}
.meta-table td {
  padding: 0.3rem 0;
}
.buy-section h2 {
  font-weight: 400;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.buy-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.buy-links a {
  flex: 1;
  text-align: center;
  padding: 0.8rem;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.buy-links a:hover {
  background: #f5f5f5;
  border-color: #999;
}
.tracklist {
  margin-bottom: 3rem;
  text-align: center;
}
.tracklist h2 {
  font-weight: 400;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  min-width: 200px;
}
.tracklist ol {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}
.tracklist li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f9f9f9;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.tracklist li span {
  color: #999;
}
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  margin-bottom: 3rem;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.credit {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-bottom: 3rem;
}
.credit h2 {
  font-weight: 400;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  min-width: 200px;
  color: #333;
}
.credit-table {
  margin: 0 auto;
  border-collapse: collapse;
  width: auto;
}
.credit-table th {
  text-align: right;
  font-weight: 400;
  padding: 0.2rem 1rem 0.2rem 0;
  color: #999;
  width: 130px;
}
.credit-table td {
  text-align: left;
  padding: 0.2rem 0;
  min-width: 120px;
}
footer {
  margin-top: 5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
}
