/* Grundlayout */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000;
    font-family: "Audiowide", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Container zentriert mit Blur-Hintergrund */
.container {
    text-align: center;
    padding: 50px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    animation: fadeIn 2s ease forwards;
}

/* Überschrift mit Glow + Verlauf */
.glow-text {
    font-size: 3.5em;
    background: linear-gradient(90deg, #747373, #c7c7c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    opacity: 0;
    animation: glowFade 2s ease-in-out forwards;
}

/* Text langsam einblenden */
.fade-in {
    color: #aaa;
    font-size: 1.2em;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 3s ease 1s forwards;
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowFade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 600px) {
    .glow-text {
        font-size: 2em;
    }
    .fade-in {
        font-size: 1em;
    }
    .container {
        padding: 30px;
    }
}

/* Canvas für Sternenhimmel */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: 0; /* Hintergrund */
    background-color: #000; /* Schwarz */
}

/* Container weiterhin über Canvas */
.container {
    position: relative;
    z-index: 1;
    /* ... dein bestehendes Styling bleibt */
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05), transparent 70%);
  animation: fogMove 20s linear infinite;
  z-index: 1;
}

@keyframes fogMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
 footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 1em;
    color: rgba(200, 200, 200, 0.5);
    font-family: "Audiowide", monospace;
    z-index: 2;
    user-select: none;
    text-shadow: 0 0 5px rgba(255,255,255,0.1);
  }