.tracks-section {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tracks-inner {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}

.track {
  background: linear-gradient(90deg, #23243a 0%, #18191d 100%);
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(31,37,56,.11);
  color: #f7f7fb;
  font-size: 1.02rem;
  border: 1px solid rgba(125,130,156,.08);
  min-height: 130px;
  padding: 0.9rem 1rem 0.9rem 0.7rem;
  box-sizing: border-box;
  max-width: 100%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
}

.track-cover {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,.13);
  flex-shrink: 0;
  overflow: hidden;
}

.track-cover img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.track-info-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  gap: 0.5rem;
}

.track-main-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.play-button {
  font-size: 1.3rem;
  background: none;
  border: 2px solid white;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 36px;
  padding: 0;
  margin-bottom: 0;
  transition: background 0.2s;
  flex-shrink: 0;
}

.play-button:hover {
  background: rgba(255,255,255,0.17);
}

.track-title {
  font-size: 1.11rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  margin-right: 1rem;
  max-width: 180px;
}

.seek-bar {
  width: 100%;
  max-width: 280px;
  appearance: none;
  height: 4px;
  background: #444;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-top: 10px;
}

.seek-bar::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

.track-time-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  margin-top: 2px;
}

.track-time {
  color: #bbb;
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
  margin-right: 5px;
}

/* Центрирование текста "Слушать треки на всех площадках" */
.tracks-listen-row {
  margin-top: 1.7rem;
  margin-bottom: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tracks-listen-text {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

@media (max-width: 600px) {
  .tracks-inner {
    max-width: 100%;
  }
  .track {
    min-height: 100px;
  }
}
@media (max-width: 400px) {
  .track-cover {
    width: 68px;
    height: 68px;
  }
  .seek-bar {
    max-width: 34vw;
  }
}