/* Animated Background Wrapper */
.animated-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(135deg, #fce7f3 0%, #fff1f2 50%, #ffe4e6 100%);
}

/* Blur Elements */
.blur {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    will-change: transform;
}

.blur:nth-child(1) {
    background: radial-gradient(circle, rgba(244, 114, 182, 0.8) 0%, rgba(236, 72, 153, 0.4) 50%, transparent 100%);
}

.blur:nth-child(2) {
    background: radial-gradient(circle, rgba(251, 207, 232, 0.8) 0%, rgba(249, 168, 212, 0.4) 50%, transparent 100%);
}

.blur:nth-child(3) {
    background: radial-gradient(circle, rgba(190, 24, 93, 0.6) 0%, rgba(219, 39, 119, 0.3) 50%, transparent 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blur {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }
}

@media (max-width: 480px) {
    .blur {
        width: 200px;
        height: 200px;
        filter: blur(40px);
    }
}