.inspiration {
  position: relative;
  background: url("../images/BG_180.png") center 40% / 120% no-repeat !important;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.tracks-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 100px auto 80px;
  position: relative;
}

/* карточка */
.track-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 0 60px rgba(255, 255, 255, 0.03),
    0 12px 32px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
  z-index: 1;
backdrop-filter: blur(16px)!important;
  -webkit-backdrop-filter: blur(16px)!important;
}

/* верхняя — чёткая, без блюра */
.track-card:nth-child(1) {
  opacity: 0.85;
  z-index: 1;
  backdrop-filter: none; /* без размытия! */
  background: rgba(255, 255, 255, 0.04);
}

/* нижняя — крупнее и чуть наезжает, но меньше */
.track-card:nth-child(2) {
  margin-top: -20px;
  transform: scale(1);
  opacity: 0.95;
  z-index: 2;
  backdrop-filter: blur(20px); /* только нижняя размывает фон */
  background: rgba(255, 255, 255, 0.06);
}

/* hover эффект */
.track-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 80px rgba(136, 70, 255, 0.08),
    0 14px 40px rgba(136, 70, 255, 0.25);
  opacity: 1;
}

/* обложка */
.track-cover {
  position: relative;
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(136, 70, 255, 0.25);
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  filter: brightness(0.9);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-btn:hover {
  background: linear-gradient(135deg, #66A8F3, #0052D4);
  box-shadow: 0 0 15px rgba(102, 168, 243, 0.6);
}

/* контент */
.track-content {
  flex: 1;
  text-align: left;
}

.track-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.track-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.track-number {
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(90deg, #66A8F3, #0052D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.track-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

/* теги */
.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 13px;
  font-size: 18px;
  opacity: 0.95;
  transition: background 0.25s ease;
}

.tag:hover {
  background: rgba(136, 70, 255, 0.25);
}

/* адаптив */
@media (max-width: 768px) {
  .track-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

  .track-card:nth-child(2) {
    margin-top: -30px;
  }

  .track-cover {
    width: 140px;
    height: 140px;
  }

  .track-content {
    text-align: center;
  }
}
