/* -----------------------------
   🌑 Basislayout
------------------------------ */
body {
  margin: 0;
  padding: 0;
  background-color: #0e0e0e;
  font-family: 'Courier New', Courier, monospace;
  color: #c7f0d8;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1000px;
  padding: 20px;
  border: 2px solid #2fd9b9;
  background-color: #1a1a1a;
  box-shadow: 0 0 15px #2fd9b9;
}


/* -----------------------------
   🖋️ Headings & Texte
------------------------------ */
.title {
  text-align: center;
  font-size: 3em;
  margin-bottom: 0.2em;
  color: #2fd9b9;
}

.subtitle {
  text-align: center;
  font-style: italic;
  margin-bottom: 1.5em;
  color: #8de6c3;
}

.songs {
  text-align: center;
  margin-top: 0.5em;
  padding-top: 0;
}

.songs h2 {
  color: #c7f0d8;
  margin-bottom: 1.5em;
  font-size: 1.5em;
}


/* -----------------------------
   🎥 Video Grid
------------------------------ */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.video-card {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-card iframe {
  width: 100%;
  height: 170px;
  border: 2px solid #2fd9b9;
  box-shadow: 0 0 10px #2fd9b9;
  transition: transform 0.3s;
}

.video-card iframe:hover {
  transform: scale(1.05);
}

.video-card p {
  margin-top: 8px;
  font-size: 1.1em;
  color: #9ce3c7;
  font-style: italic;
}


/* -----------------------------
   🔙 Zurück-Button (Retro Style)
------------------------------ */
.back-button {
  margin-bottom: 2em;
  text-align: left;
}

.back-button a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.9em;
  letter-spacing: 0.3px;
  color: #2fd9b9;
  background-color: #0e0e0e;
  border: 2px solid #2fd9b9;
  font-family: 'VT323', monospace;
  text-decoration: none;
  box-shadow:
    0 0 4px #2fd9b9,
    0 0 8px #2fd9b9,
    inset 0 0 4px #2fd9b9;
  position: relative;
  transition: all 0.3s ease;
}

.back-button a::before {
  content: ">";
  margin-right: 8px;
  color: #8de6c3;
}

.back-button a:hover {
  background-color: #2fd9b9;
  color: #0e0e0e;
  box-shadow:
    0 0 10px #2fd9b9,
    0 0 20px #2fd9b9,
    inset 0 0 10px #0e0e0e;
  text-shadow: 0 0 3px #0e0e0e;
}
