 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: fixed;
            /*font-family: 'D-DIN', sans-serif;*/
             font-family: "Manrope", sans-serif;
            color: #453b24ff;
        }

    ::selection {
        color: #323131;
        background: #e24141;
        }

        #background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }

        .background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                var(--color1) 0%, 
                #f5deb3 50%, 
                var(--color2) 100%);
        }

        .background::before,
        .background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: opacity 3s ease-in-out;
        }

        .background::before {
            background: linear-gradient(135deg, 
                var(--color1) 0%, 
                transparent 40%);
            opacity: var(--opacity1, 0.7);
        }

        .background::after {
            background: linear-gradient(135deg, 
                transparent 60%,
                var(--color2) 100%);
            opacity: var(--opacity2, 0.7);
        }

        .grain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='6.5' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 1;
            pointer-events: none;
            mix-blend-mode: overlay;
        }

        #amoeba-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .telo {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 4s ease-out;
            filter: blur(35px) contrast(var(--fig-contrast, 1)) saturate(var(--fig-saturation, 1));
            box-shadow: 0 0 60px rgba(70, 130, 180, 0.4);
            will-change: transform, border-radius;
        }

        .telo.eating {
            z-index: 10;
        }

        .yadro {
            position: absolute;
            background: radial-gradient(circle at 50% 50%,
                rgba(255, 100, 100, 0.8) 0%,
                rgba(255, 150, 100, 0.6) 40%,
                rgba(255, 150, 100, 0.3) 70%,
                transparent 100%);
            border-radius: 50%;
        }
