/* Estilos y Animaciones de la Página Principal */
@keyframes floatGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animated-bg {
    background: linear-gradient(-45deg, #172172, #0b113a, #1e2b9a, #040614);
    background-size: 400% 400%;
    animation: floatGradient 15s ease infinite;
}
