/* Shared Animated Background */

body {
    background: linear-gradient(-45deg, #eef3f7, #e8eff5, #ecf1f6, #e5edf4, #eff4f8, #e7eff6);
    background-size: 400% 400%;
    animation: gradientBG 5s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    20% { background-position: 40% 80%; }
    40% { background-position: 100% 50%; }
    60% { background-position: 60% 20%; }
    80% { background-position: 20% 60%; }
    100% { background-position: 0% 50%; }
}

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

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob 12s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(147, 197, 253, 0.35);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: rgba(196, 181, 253, 0.3);
    top: 20%;
    right: -80px;
    animation-delay: -4s;
}

.blob-3 {
    width: 420px;
    height: 420px;
    background: rgba(253, 186, 140, 0.25);
    bottom: -50px;
    left: 5%;
    animation-delay: -8s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 40px) scale(1.05);
    }
}
