body {
    margin: 0;
    overflow: hidden;
    background-color: #121212;
    color: #fff;
    font-family: sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.emoji {
    position: absolute;
    font-size: 2em;
    animation: fall linear forwards;
    cursor: pointer; /* Macht Emojis anklickbar */
}

.container {
    position: relative; /* Für die Reflektion */
    background: rgba(255, 255, 255, 0.05); /* Noch transparenter */
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); /* Stärkerer Schatten */
    backdrop-filter: blur(3px); /* Weniger Blur */
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2em;
    text-align: center;
    max-width: 80%;
    width: 500px;
    overflow: hidden; /* Verhindert, dass Reflektion überläuft */
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 150%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    animation: reflection 5s linear infinite;
    z-index: 1; /* Stellt sicher, dass die Reflektion über dem Hintergrund liegt */
}

.logo {
    max-width: 150px;
    margin-bottom: 1em;
}

h1 {
    margin-bottom: 0.5em;
}

@keyframes fall {
    to {
        transform: translateY(105vh);
    }
}

@keyframes reflection {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(50%);
    }
}

@media (max-width: 600px) {
    .container {
        max-width: 95%;
        padding: 1.5em;
    }

    .emoji {
        font-size: 1.5em;
    }

    .logo {
        max-width: 120px;
    }
}