.falling-mouse {
    position: fixed;
    font-size: 40px;
    top: -50px; /* Startpunkt über dem Bildschirm */
    left: 50%;
    transform: translateX(-50%);
    z-index: 0; /* Hintergrund, aber nicht zu weit hinten */
    animation: fall 5s linear forwards;
    pointer-events: none; /* Nicht anklickbar */
}

@keyframes fall {
    0% { transform: translateY(-50px) translateX(-50%); opacity: 1; }
    100% { transform: translateY(100vh) translateX(-50%); opacity: 0; }
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    text-align: center;
    z-index: 1000;
}
#gameContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
}

#bottomSection {
    margin-top: 20px;
    text-align: left;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}