* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Montserrat Alternates', sans-serif;
}

body {
    /* ERSETZT: Der animierte Farbverlauf wurde entfernt. */
    /* Nur noch eine schwarze Fallback-Farbe, falls das Video nicht lädt. */
    background-color: #000;
    color: #ffffff;
    overflow: hidden; 
}

/* ENTFERNT: Die Keyframes für den alten Hintergrund sind weg. */

/* NEU: Styling für das Hintergrundvideo */
.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    opacity: 0.7; /* Optional: Macht das Video etwas dunkler */
}

.container {
    display: flex;
    justify-content: center; 
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.floating-text {
    font-size: 5vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    /* Angepasster Textschatten für bessere Lesbarkeit über einem Video */
    text-shadow: 0 5px 35px rgba(0, 0, 0, 0.6);
    
    animation: vertical-float 6s ease-in-out infinite;
}

@keyframes vertical-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px); 
    }
    100% {
        transform: translateY(0px);
    }
}

.discord-link {
    position: absolute;
    bottom: 30px;
}

.discord-link img {
    width: 45px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.discord-link:hover img {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-text {
        font-size: 9vw;
        letter-spacing: 0.2rem;
        text-align: center;
    }
}