/* ===== Optimiert: media.css ===== */

.main-content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Media Tabs */
.media-tabs {
  display: flex !important;
  justify-content: space-between;
  background-color: #313131;
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 14px;
  width: 100%;
  flex-wrap: wrap;
  gap: 4px;
  position: relative;
  z-index: 10;
}

.tab-button {
  flex: 1;
  min-width: fit-content;
  background-color: #313131;
  color: #cccccc;
  border: none;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
}
.tab-button.active {
  background-color: #000000;
  color: #ffffff;
}
.fa-solid {
  margin-right: 10px;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section Titles */
.section-title {
  font-size: 28px;
  color: #ff5314;
  margin-top: 10px;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
}

/* Song List */
.songs-section {
  background: linear-gradient(135deg, rgba(26, 24, 24, 0.05), rgba(44, 34, 27, 0.2));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 14px;
  padding: 16px;
  margin-top: 10px;
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
}

.song-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.song-item {
  border: 1.5px solid #ff5e00;
  border-radius: 6px;
  padding: 18px 26px 16px 26px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.song-item:hover {
  box-shadow: 0 12px 56px 6px rgba(255,110,50,0.38),
              0 0 0 3.5px rgba(255,94,0,0.13),
              0 0 32px 8px #ff6f38bb inset;
}
.song-meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.song-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 0 0 3px 0;
  text-align: left;
}
.song-album {
  font-size: 14px;
  color: #ccc;
  font-style: italic;
  margin: 0;
  text-align: left;
}
.song-duration {
  font-size: 16px;
  color: #ff6b35;
  font-weight: 600;
  margin-left: 40px;
  white-space: nowrap;
}

.song-player-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 6px;
  width: 100%;
}

.streaming-section {
  text-align: center;
}
.streaming-title {
  display: none;
  font-size: 20px;
  color: white;
  margin-bottom: 25px;
  font-weight: 600;
}

/* ============================================= */
/* 📱📲💻🖥 RESPONSIVE BREAKPOINTS – 5 STUFEN BASIS */
/* ============================================= */

/* 📱 1. XS – Kleine Smartphones */
@media (max-width: 480px) {

  .songs-section {
    max-width: 100%;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* 📱 2. S – Normale Smartphones */
@media (min-width: 481px) and (max-width: 768px) {

  .songs-section {
    max-width: 100%;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* 📲 3. M – Tablets */
@media (min-width: 769px) and (max-width: 1023px) {

}

/* 💻 4. L – Laptops / kleine Desktops */
@media (min-width: 1024px) and (max-width: 1440px) {

}

/* 🖥 5. XL – Große Bildschirme / 4K */
@media (min-width: 1441px) {

}
