.header-img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 2rem auto 1rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px #0006;
}
  
header {
    text-align: center;
    margin-bottom: 1rem;
}
  
header h1 {
    margin-top: 1rem;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

.show-card {
  background: #3498db;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 110px;
  text-decoration: none;
  transition: background 0.2s;
  text-align: center;
  box-shadow: 0 2px 8px #0004;
}
.show-card:hover {
  background: #217dbb;
}

.show-page {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  background: #222;
  border-radius: 12px;
}

.show-poster {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.song-list {
  list-style: none;
  padding: 0;
}
.song-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.song-list span {
  flex: 1;
  font-size: 1.1rem;
}
.back-link {
  color: #3498db;
  text-decoration: none;
  font-size: 1rem;
  margin-right: 1rem;
}