/* Animated Background Styles */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f5 100%);
}

.bg-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 191, 0, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 50%;
    animation: bgFloat 20s infinite ease-in-out;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    top: 70%;
    right: -100px;
    animation-delay: 3s;
}

.bg-shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 15%;
    animation-delay: 6s;
}

.bg-shape-4 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 20%;
    animation-delay: 9s;
}

.bg-shape-5 {
    width: 220px;
    height: 220px;
    bottom: 30%;
    right: 35%;
    animation-delay: 12s;
}

.bg-shape-6 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 25%;
    animation-delay: 15s;
}

@keyframes bgFloat {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(10px, 15px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translate(5px, 25px) rotate(10deg) scale(1);
    }
    75% {
        transform: translate(15px, 5px) rotate(5deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* Ensure content is positioned above background */
.main-content {
    position: relative;
    z-index: 1;
}

/* Add a subtle backdrop filter to content areas */
.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 191, 0, 0.1);
    position: relative;
    overflow: hidden;
} 