/* --- Overlay Content --- */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);   /* <-- statt pure white */
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.06); /* leichtes Glas-Feeling */
  backdrop-filter: blur(3px);
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000; /* Fallback */
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 0;
}


/* ===== Elliverse Intro – Fullscreen minimalist ===== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px) brightness(0.6);
  background: rgba(0, 0, 0, 0.3);
  color: #e9e9f0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.8px;
  font-size: clamp(18px, 2vw, 22px);
  text-transform: none;
  animation: fadeOut 1s ease forwards;
  animation-delay: 2.5s; /* bleibt ~2,5s sichtbar */
}

.intro-inner {
  text-align: center;
}

.cursor {
  display: inline-block;
  margin-left: 4px;
  color: #ffffff;
  opacity: 1;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Bewegung vermeiden, falls Nutzer das wünscht */
@media (prefers-reduced-motion: reduce) {
  .cursor { animation: none; }
  .intro { animation: none; opacity: 0; visibility: hidden; }
}

/* ===== Elliverse Footer ===== */
footer.quote {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Poppins', system-ui, sans-serif;
  letter-spacing: 0.3px;
  z-index: 5;
  user-select: none;
  pointer-events: none; /* Damit es Klicks auf Buttons nicht blockiert */
}

footer.quote {
  opacity: 0;
  transition: opacity 1.2s ease;
}
body.loaded footer.quote {
  opacity: 1;
}
