    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: sans-serif;
      color: white;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      box-sizing: border-box;
	}
    h1 {
      color: #ffffff;
      text-align: center;
      font-size: clamp(20px, 4vw, 32px);
	  margin-bottom: 3em; /* 👈 Abstand unter der Überschrift */
    }
	h2 {
	  text-align: center;
      font-size: clamp(14px, 2vw, 18px);
      margin-bottom: 2em; /* 👈 Abstand unter der Überschrift */
    }
	h3 {
	  text-align: center;
	  font-size: clamp(14px, 2vw, 18px);
	}
	h4 {
	  text-align: center;
	  margin-bottom: 2em; /* 👈 Abstand unter der Überschrift */
	}	
	h5 {
      color: #ffffff;
      text-align: center;
      font-size: clamp(20px, 4vw, 32px);
    }
	h6 {
		  margin-bottom: 4em; /* 👈 Abstand unter der Überschrift */
	}
    a {
      color: #888888;
      word-break: break-word;
    }	

.musikplayer {
  position: fixed;
  top: 1.5em;
  right: 1.5em;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* Runder Play-Button */
.musikplayer button {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #888888;
  font-size: 1.5em;
  cursor: pointer;
  display: flex;                  /* Hinzugefügt */
  align-items: center;           /* Zentriert vertikal */
  justify-content: center;       /* Zentriert horizontal */
  line-height: 1;                /* Verhindert vertikalen Versatz */
  padding: 0;                    /* Vermeidet Extra-Abstand */
}

.musikplayer button:hover {
  color: white;
}

/* Volume-Container versteckt sich standardmäßig */
.volume-container {
  position: relative;
  width: 16px;
  height: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.volume-container:hover {
  opacity: 1;
}

/* Vertikaler Slider */
.volume-container input[type="range"] {
  writing-mode: bt-lr;
  transform: rotate(270deg);
  width: 50px;
  height: 16px;
  accent-color: #888888;
  cursor: pointer;
}
#blurCover {
  position: fixed;
  z-index: 99999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
#blurCover.fadeOut {
  opacity: 0;
  pointer-events: none;
}
#unlockBtn {
  background-color: transparent;
  color: #888888;
  border: 2px solid #888888;
  border-radius: 10px;
  font-size: 1.5em;
  padding: 1em 2em;
  cursor: pointer;
  transition: 0.3s ease;
}
#unlockBtn:hover {
  background-color: #888888;
  color: black;
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
