/* Content Background Animations */
.content-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Bubbles */
.bubble {
    position: absolute;
    background: rgba(123, 97, 255, 0.1);
    border-radius: 50%;
    /* filter: blur(2px); */
    animation: float-up 15s infinite linear;
    opacity: 0.7;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Cartoon Elements */
.cartoon-element {
    position: absolute;
    /* opacity: 0.6; */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,1));
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(1px);
    animation: float-shape 30s infinite linear;
}

@keyframes float-shape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(100px, 0) rotate(180deg);
    }
    75% {
        transform: translate(50px, -50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bubble, .cartoon-element, .floating-shape {
        display: none;
    }
}
