/* style.css */

#password-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

#password-input {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-align: center;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  outline: none;
  background: transparent;
  width: 120px;
}

#password-input::placeholder {
  color: #ccc;
  text-transform: uppercase;
}

body {
  margin: 0;
  /* Dies erzeugt die Scroll-Strecke für Lenis */
  height: 600vh;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  /* Diese beiden Zeilen sorgen für die sanfte, visuelle Größenanpassung */
  width: 100vw;
  height: 100dvh;
}

/* NEU: Den Scrollbalken für die Ästhetik ausblenden */
body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;  /* IE und Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Für Firefox */
* {
  scrollbar-width: thin; /* Macht die Scrollbar dünner */
  scrollbar-color: #ddd #fff; /* Scrollbar-Farbe und Hintergrundfarbe */
}

/* Für Webkit-Browser (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px; /* Breite der Scrollbar */
}

::-webkit-scrollbar-track {
  background: #fff; /* Hintergrund der Scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #ddd; /* Farbe des Scrollbar-Thumbs */
  border-radius: 10px; /* Abgerundete Ecken */
}
