/* ─── AK86 Bubbles CSS ────────────────────────────────────────────────────── */

:root {
    --animation-bg:  #f00;
    --animation-bg1: #ff0;
}

/* Blur wird per JS gesetzt (body.blurry) */
body.blurry .bubbles {
    filter: blur(35px);
    transform: translate3d(0, 0, 0);
    will-change: filter;
}
.bubbles-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 25vw;
    height: 25vh;
    transform-origin: center center;
    transform: translate(-50%, -50%) scale(4);
    z-index: -1;
}
.bubbles {
    width: 100%;
    height: 100%;
    transform-origin: center center;
}

.bubble {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    mix-blend-mode: lighten;
    will-change: transform;
}

.bubbleinner {
    position: absolute;
    inset: 0;
}

.innerbubble {
    position: absolute;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    will-change: transform;
}

.innerbubble-dark {
    position: absolute;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-image: radial-gradient(var(--bgcolor), var(--bgcolor-0)) !important;
    will-change: transform;
}

.innerbubble-dark2 {
    position: absolute;
    left: 50%;
    bottom: calc(0px - 15%);
    height: 30%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-image: radial-gradient(#000, #000) !important;
}

.bubble1,
.innerbubble1 {
    background-image: radial-gradient(var(--animation-bg), #000);
}

.bubble2,
.innerbubble2 {
    background-image: radial-gradient(var(--animation-bg-1), #000) !important;
}