body {
  margin: 0;
  position: relative;
  background: linear-gradient(to bottom, var(--primary_color), var(--thirdly_color) 60%) no-repeat;
  color: var(--fiftly_color);
}

.music-section {
  padding-top: 150px;
  width: 90%;
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--fiftly_color);
}

.music-title h1 {
  text-align: center;
}

.music-title p {
  margin-bottom: 4rem;
  text-align: center;
}

.music-box {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  margin-bottom: 40px;
  overflow: hidden;
}

.music-box:hover {
  transform: translateY(-5px);
}

.music-box-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.music-box-left {
  padding: 10px 20px;
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.music-box-right {
  flex: 1;
}

.music-box-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.track-title {
  margin-bottom: 0;
}

.soundcloud-wrapper {
  width: 100%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px;
  margin-top: 20px;
}

.track-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap; /* Für mobiles Umbruch */
  margin: 15px 0px;
}

.track-description {
  flex: 2;
  font-weight: 500;
}

.track-list {
  flex: 1;
  list-style: none;
  padding: 0;
  font-size: clamp(16px, 2vw, 18px);
  color: #ccc;
}

.track-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

.track-list li:last-child {
  border-bottom: none;
}

.buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.buttons button:hover {
  box-shadow: 0 0 15px rgba(156, 149, 220, 0.4);
  transform: scale(105%);
}

#soundcloud {
  background: linear-gradient(90deg, #ff3300, #fa6e27); /* SoundCloud-ähnlicher Farbverlauf */
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#soundcloud:hover {
  background: linear-gradient(90deg, #fa6e27, #ff3300);
}

#instagram {
  background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#instagram:hover {
  background: linear-gradient(90deg, #4f5bd5, #962fbf, #d62976, #fa7e1e, #feda75);
}

#mixcloud {
  background: linear-gradient(90deg, #1d0852, #4f5bd5);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#mixcloud:hover {
  background: linear-gradient(90deg,  #4f5bd5, #1d0852);
}

@media only screen and (max-width: 730px) {
  .music-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
  }

  .music-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
  }

  .music-box-content {
    flex-direction: column;
  }

  .music-box-left {
    position: relative;
    z-index: 1;
  }

  .music-box-right img {
    height: 200px;
  }

  .track-details {
    flex-direction: column;
  }
  
  .track-list {
    width: 100%;
    text-align: center;
    background: rgba(102, 102, 102, 0.15);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }
}