/* --- Allgemein --- */
body {
  background-color: #000;
  color: #0ff;
  font-family: monospace;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* --- Overlay Vollbild --- */
#introOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

/* GIF Vollbild */
#introGif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  z-index: -1;
}

/* Text über GIF */
#introText {
  color: #fff;
  font-size: 2em;
  font-weight: 300;
  cursor: pointer;
  z-index: 1;
  text-align: center;
}

/* --- Banner GIF --- */
#bannerContainer {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  opacity: 0;
  animation: bannerFade 2s forwards;
}

#banner {
  width: 300px;
  height: 150px;
  border-radius: 20px;
  object-fit: cover;
}

@keyframes bannerFade {
  to { opacity: 1; }
}

/* --- Profilbild --- */
/* Wrapper kümmert sich um Positionierung */
#pbWrapper {
  position: absolute;
  bottom: 250px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: popup 2.5s forwards 4s;
}

/* Bild selbst */
#profilbild {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: none;
  transition: transform 0.3s ease; /* nur für Hover */
}

/* Animation für Wrapper */
@keyframes popup {
  to {
    opacity: 1;
  }
}

/* Hover-Effekt */
#profilbild:hover {
  transform: scale(1.1); /* funktioniert jetzt */
}


/* --- Text unter Profilbild --- */
/* Haupttext unter PB */
/* Haupttext unter PB */
#pbText {
  position: absolute;
  bottom: 190px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 400; /* dünn */
  color: rgba(255, 255, 255, 0.85); /* leicht transparent */
  text-align: center;
  text-shadow: 
    0 0 4px rgba(255,255,255,0.7),
    0 0 8px rgba(255,255,255,0.5),
    0 0 12px rgba(255, 240, 219, 0.912);
  filter: blur(0.3px);
  line-height: 1.2;
  transition: all 0.3s ease;
}



/* Untertext unter PB */
#pbSubText {
  position: absolute;
  bottom: 160px; 
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px; 
  color: rgba(255, 192, 203, 0.9); /* leichtes Rosa */
  font-weight: 400; 
  font-family: 'Poppins', 'Montserrat', 'Segoe UI', sans-serif; 
  text-align: center;
  text-shadow: 
    0 0 2px rgba(255,192,203,0.4), /* dezenter rosa Glow */
    0 0 4px rgba(255,192,203,0.3);
  filter: blur(0.1px); /* minimal, nur sanft */
}




/* --- Titel / Zitat über PB --- */
#titel {
  font-family: 'Exo 2', sans-serif; /* futuristisch & etwas anders */
  font-weight: 500;
  font-style: italic;
  font-size: 1.5em;
  color: #f0c3c3;
  text-shadow: 0 0 4px rgba(215, 186, 186, 0.6);
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #f3b2b2; /* Typing Cursor */
}



@keyframes fadeIn {
  to { opacity: 1; }
}

/* --- Musik Button oben rechts --- */
#musicBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  z-index: 10000;
  display: none; /* Start: unsichtbar */
}


/* Musik Info Button oben links */
/* Musik Info Button oben links */
#musicInfoBtn {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: rgba(50,50,50,0.7);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10000;
  transition: all 0.3s ease; /* sanfte Hover-Animation */
}

#musicInfoBtn:hover {
  background-color: rgba(255,255,255,0.2);
}

/* Musik Titel Anzeige */
#musicTitle {
  position: fixed;
  top: 60px; /* direkt unter dem Button */
  left: 20px;
  font-size: 16px;
  color: #f3b2b2;
  background-color: rgba(0,0,0,0.4);
  padding: 5px 10px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.5s ease; /* smooth fade-in/out */
  pointer-events: none;
}

