
#milchblasen-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.bubble-container {
    position: fixed;
    bottom: 0;
    width: 150px;
    height: 100vh;
    z-index: 9999;
    overflow: visible;
}

.bubble-container.left {
    left: 2vw;
}

.bubble-container.right {
    right: 2vw;
}

.bubble {
    position: absolute;
    bottom: -50px;
    opacity: 0;
    animation: rise 12s linear forwards;
    will-change: transform, opacity;
}

@keyframes rise {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    70% {
        transform: translateY(-70vh);
        opacity: 0.9;
    }
    80% {
        transform: translateY(-80vh);
        opacity: 0;
    }
    100% {
        transform: translateY(-90vh);
        opacity: 0;
    }
}

/* Auf Tablet und Mobile komplett deaktivieren */
@media (max-width: 1024px) {
    #milchblasen-wrapper {
        display: none;
    }
}
