.rj-container-34d41e01 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
    background: transparent;
    width: 100%;
}

.rj-juggling-arena {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.rj-robot-container {
    position: relative;
    z-index: 2;
    transition: width 0.3s, height 0.3s;
}

.rj-robot-svg {
    width: 100%;
    height: 100%;
}

/* Base style for elements */
.rj-body-color {
    transition: fill 0.3s;
}

.rj-accent-color {
    transition: fill 0.3s, box-shadow 0.3s;
}

.rj-eye {
    transition: fill 0.3s;
    transform-origin: center;
    animation: rj-blink-34d41e01 4s infinite;
}

/* Juggling item styles */
.rj-item {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2c3e50;
    font-size: 18px;
    z-index: 1;
    pointer-events: none;
    transform-origin: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    animation: rj-juggle-34d41e01 linear infinite;
    bottom: 0;
    left: 50%;
}

/* Juggling Animation offset positions */
.rj-item-1 { animation-delay: 0s; }
.rj-item-2 { animation-delay: -0.8s; }
.rj-item-3 { animation-delay: -1.6s; }
.rj-item-4 { animation-delay: -2.4s; }
.rj-item-5 { animation-delay: -3.2s; }

/* Robot Idle Float */
.rj-main-body {
    animation: rj-float-34d41e01 3s ease-in-out infinite;
    transform-origin: bottom center;
}

.rj-core-pulse {
    animation: rj-pulse-34d41e01 1.5s ease-in-out infinite;
    transform-origin: 50px 62px;
}

/* Arm Movements responding to juggling rhythm */
.rj-arm-left {
    animation: rj-wave-left-34d41e01 1.5s ease-in-out infinite alternate;
    transform-origin: 23px 54px;
}

.rj-arm-right {
    animation: rj-wave-right-34d41e01 1.5s ease-in-out infinite alternate;
    transform-origin: 77px 54px;
}

/* ANIMATIONS */

/* Futuristic Parabolic Juggling Orbit Animation */
@keyframes rj-juggle-34d41e01 {
    0% {
        transform: translate(-140px, -60px) scale(0.85);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    35% {
        transform: translate(-80px, -230px) scale(1.1);
    }
    50% {
        transform: translate(0px, -270px) scale(1.2);
    }
    65% {
        transform: translate(80px, -230px) scale(1.1);
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translate(140px, -60px) scale(0.85);
        opacity: 0;
    }
}

@keyframes rj-float-34d41e01 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes rj-pulse-34d41e01 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes rj-blink-34d41e01 {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

@keyframes rj-wave-left-34d41e01 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

@keyframes rj-wave-right-34d41e01 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(10deg);
    }
}
