/* Explain: App-specific component classes (add as needed) */

@keyframes wave-aurora {
    0% { transform: scale(1) translate(0, 0); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { transform: scale(1.1) translate(5%, -5%); border-radius: 70% 30% 50% 70% / 60% 70% 30% 40%; }
    100% { transform: scale(1) translate(0, 0); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.aurora-blob {
    animation: wave-aurora 20s infinite ease-in-out;
    transform-origin: center center;
}
