/* --- Grundlayout --- */
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* --- Leichter Glas-Effekt Hintergrund --- */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1522199755839-a2bacb67c546?auto=format&fit=crop&w=1600&q=80')
        center/cover no-repeat;
    filter: blur(8px) brightness(0.4);
    z-index: -1;
}

/* --- Content Box --- */
.container {
    text-align: center;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1.4s ease;
}

/* --- Titel --- */
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffcc66;
}

/* --- Text --- */
p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e6e6e6;
}

/* --- Animation --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thanks {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1rem;
    color: #ffdd99;
    letter-spacing: 0.5px;
    opacity: 0.9;
}
.thanks {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1rem;
    color: #ffdd99;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

