ody {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  margin: 20px;
  color: #333;
}

.header, .footer {
  text-align: center;
  background-color: #d91e18;
  color: white;
  padding: 10px;
  border-radius: 8px;
}

.main-content {
  max-width: 900px;
  margin: auto;
}

.genre-title {
  color: #d91e18;
  border-bottom: 2px solid #d91e18;
  padding-bottom: 5px;
}

.artist-name {
  font-size: 1.3em;
  margin-top: 15px;
}

.album-title {
  font-style: italic;
  color: #555;
}

.album-cover img {
  width: 200px;
  border-radius: 8px;
}

.songs-list {
  list-style: none;
  padding-left: 0;
}

.song-item {
  margin-bottom: 20px;
}

.video-wrapper iframe {
  width: 100%;
  max-width: 400px;
  height: 225px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 1000;
}