.intro {
  font-size: 1.2rem;
  margin: 20px 0 40px;
  line-height: 1.8;
  color: #dcdde1;
  font-family: 'Raleway', sans-serif;
}

.hook {
  background: rgba(50, 50, 80, 0.9);
  padding: 20px;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  font-family: 'Raleway', sans-serif;
  color: #f4d03f;
  text-align: center;
  box-sizing: content-box;
  overflow: auto;
}

.hook h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #f4d03f;
  margin-bottom: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hook p {
  font-size: 1.2rem;
  margin: 10px 0;
  line-height: 1.6;
  color: #dcdde1;
}

.profile-pic-container {
  text-align: center;
  margin: 20px auto;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #f4d03f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.social-icons a {
  font-size: 2rem;
  color: #f4d03f;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #d4ac0d;
}


.channels {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.channels ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Abstand zwischen Icon und Text */
  margin: 10px 0;
  font-size: 1rem;
  color: #dcdde1;
}

.channels ul li i {
  font-size: 1.5rem;
  /* Größere Icons für bessere Sichtbarkeit */
  color: #f4d03f;
}

.channels ul li:hover i {
  color: #d4ac0d;
  /* Hover-Effekt für Icons */
}

.channels ul li a {
  text-decoration: none;
  color: #f4d03f;
  transition: color 0.3s;
}

.channels ul li a:hover {
  color: #d4ac0d;
}

.hash {
  color: #d4ac0d;
  font-weight: bold;
}

.contact {
  background: rgba(32, 32, 64, 0.8);
  padding: 20px;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.contact a {
  color: #f4d03f;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.contact a:hover {
  color: #d4ac0d;
  transform: scale(1.1);
  /* Leichter Vergrößerungseffekt beim Hover */
}

.contact p {
  margin-bottom: 10px;
  /* Für mehr Abstand zur E-Mail */
}



.month-selector {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto;
  padding: 10px;
  background: rgba(32, 32, 64, 0.9);
  border-radius: 10px;
}

.month-selector button {
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.month-selector button:hover {
  transform: scale(1.1);
}

/* Monatsspezifische Farben für die Buttons */
.month-selector button:nth-child(1) {
  background: #a9d801;
  /* Januar */
}

.month-selector button:nth-child(2) {
  background: #3498db;
  /* Februar */
}

.month-selector button:nth-child(3) {
  background: #f1c40f;
  /* März */
}

.month-selector button:nth-child(4) {
  background: #e67e22;
  /* April */
}

.month-selector button:nth-child(5) {
  background: #2ecc71;
  /* Mai */
}

.month-selector button:nth-child(6) {
  background: #9b59b6;
  /* Juni */
}

.month-selector button:nth-child(7) {
  background: #34495e;
  /* Juli */
}

.month-selector button:nth-child(8) {
  background: #e74c3c;
  /* August */
}

.month-selector button:nth-child(9) {
  background: #1abc9c;
  /* September */
}

.month-selector button:nth-child(10) {
  background: #d35400;
  /* Oktober */
}

.month-selector button:nth-child(11) {
  background: #8e44ad;
  /* November */
}

.month-selector button:nth-child(12) {
  background: #f39c12;
  /* Dezember */
}




.video-container {
    position: relative;
    flex: 0 0 30%;
    max-width: 300px;
    margin-left: 20px;
    float: right;
}

.promo-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: block;
}

.audio-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.audio-toggle:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Optional: Style für mobile Ansicht */
@media (max-width: 768px) {
    .audio-toggle {
        font-size: 12px;
        padding: 4px 8px;
    }
}


/* Responsivität für kleine Bildschirme */
@media (max-width: 768px) {
  .video-container {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto;
    float: none;
    /* Zentriert unter dem Text */
  }

  .promo-video {
    width: 80%;
    /* Reduzierte Breite für kleinere Bildschirme */
    margin: 0 auto;
  }
}