.songs {
    max-width: 720px;
    margin: 20px auto;
    padding: 0 16px
}

.song-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #1b1f2a;
    margin-bottom: 12px
}

.song-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #eef2ff;
    width: 100%
}

.song-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover
}

.song-name {
    font-size: 18px;
    font-weight: 600
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0
}

.back-link {
    text-align: center;
    display: block;
}

.songs-header {
  position: relative;
  max-width: 720px;
  margin: 30px auto;
}

.songs-title {
  text-align: center;
  font-size: 24px;
  color: #eef2ff;
  margin: 0;
}

.close-btn {
  position: absolute;
  left: 5px;
  top: -20px;
  width: 32px;
  height: 32px;
  color: #a5b0c4;
  text-align: center;
  line-height: 32px;
  font-size: 32px;
  text-decoration: none;
  transition: 0.2s;
}
.close-btn:hover { color: #ffffff; }
