/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    animation: float 25s infinite ease-in-out 2s;
}

.shape-3 {
    animation: float 30s infinite ease-in-out 4s;
}

.shape-4 {
    animation: float 22s infinite ease-in-out 1s;
}

.shape-5 {
    animation: float 28s infinite ease-in-out 3s;
}

.shape-6 {
    animation: float 24s infinite ease-in-out 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(40px, 10px) rotate(270deg);
    }
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: pulse 8s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }

    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}
