/* ===== ANIMATIONS CSS ===== */

/* ===== KEYFRAMES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.3);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes rotateOut {
    from {
        opacity: 1;
        transform: rotate(0deg);
    }
    to {
        opacity: 0;
        transform: rotate(200deg);
    }
}

@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes flipInY {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

@keyframes rubberBand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }
    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }
    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }
    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes jello {
    0% {
        transform: scale(1);
    }
    11.1% {
        transform: scale(1.1) skewX(-12.5deg) skewY(-12.5deg);
    }
    22.2% {
        transform: scale(1.1) skewX(12.5deg) skewY(12.5deg);
    }
    33.3% {
        transform: scale(1.1) skewX(-12.5deg) skewY(-12.5deg);
    }
    44.4% {
        transform: scale(1.1) skewX(12.5deg) skewY(12.5deg);
    }
    55.5% {
        transform: scale(1.1) skewX(-12.5deg) skewY(-12.5deg);
    }
    66.6% {
        transform: scale(1.1) skewX(12.5deg) skewY(12.5deg);
    }
    77.7% {
        transform: scale(1.1) skewX(-12.5deg) skewY(-12.5deg);
    }
    88.8% {
        transform: scale(1.1) skewX(12.5deg) skewY(12.5deg);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floatReverse {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-20px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes slideReverse {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 30px rgba(99, 102, 241, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}

@keyframes counter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes morphing {
    0% {
        border-radius: 50% 50% 50% 50%;
    }
    25% {
        border-radius: 50% 50% 50% 0%;
    }
    50% {
        border-radius: 50% 50% 0% 0%;
    }
    75% {
        border-radius: 50% 0% 0% 0%;
    }
    100% {
        border-radius: 0% 0% 0% 0%;
    }
}

@keyframes wave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes particle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes matrix {
    0% {
        transform: translateY(-100vh);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* ===== ANIMATION CLASSES ===== */
.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

.animate-slideInUp {
    animation: slideInUp 0.6s ease-out;
}

.animate-slideInDown {
    animation: slideInDown 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

.animate-zoomIn {
    animation: zoomIn 0.6s ease-out;
}

.animate-zoomOut {
    animation: zoomOut 0.6s ease-out;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease-out;
}

.animate-scaleOut {
    animation: scaleOut 0.6s ease-out;
}

.animate-rotateIn {
    animation: rotateIn 0.6s ease-out;
}

.animate-rotateOut {
    animation: rotateOut 0.6s ease-out;
}

.animate-flipInX {
    animation: flipInX 0.6s ease-out;
}

.animate-flipInY {
    animation: flipInY 0.6s ease-out;
}

.animate-bounceIn {
    animation: bounceIn 0.6s ease-out;
}

.animate-bounceOut {
    animation: bounceOut 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-wobble {
    animation: wobble 1s ease-in-out;
}

.animate-swing {
    animation: swing 1s ease-in-out;
}

.animate-tada {
    animation: tada 1s ease-in-out;
}

.animate-flash {
    animation: flash 1s ease-in-out;
}

.animate-rubberBand {
    animation: rubberBand 1s ease-in-out;
}

.animate-jello {
    animation: jello 1s ease-in-out;
}

.animate-heartBeat {
    animation: heartBeat 1.3s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-floatReverse {
    animation: floatReverse 3s ease-in-out infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-spinReverse {
    animation: spinReverse 1s linear infinite;
}

.animate-slide {
    animation: slide 2s ease-in-out infinite;
}

.animate-slideReverse {
    animation: slideReverse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-gradient {
    animation: gradient 3s ease infinite;
}

.animate-typing {
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

.animate-counter {
    animation: counter 0.6s ease-out;
}

.animate-progress {
    animation: progress 2s ease-out;
}

.animate-ripple {
    animation: ripple 0.6s ease-out;
}

.animate-morphing {
    animation: morphing 2s ease-in-out infinite;
}

.animate-wave {
    animation: wave 1s ease-in-out infinite;
}

.animate-particle {
    animation: particle 3s linear infinite;
}

.animate-matrix {
    animation: matrix 2s linear infinite;
}

/* ===== ANIMATION DELAYS ===== */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-900 {
    animation-delay: 0.9s;
}

.delay-1000 {
    animation-delay: 1s;
}

/* ===== ANIMATION DURATIONS ===== */
.duration-100 {
    animation-duration: 0.1s;
}

.duration-200 {
    animation-duration: 0.2s;
}

.duration-300 {
    animation-duration: 0.3s;
}

.duration-400 {
    animation-duration: 0.4s;
}

.duration-500 {
    animation-duration: 0.5s;
}

.duration-600 {
    animation-duration: 0.6s;
}

.duration-700 {
    animation-duration: 0.7s;
}

.duration-800 {
    animation-duration: 0.8s;
}

.duration-900 {
    animation-duration: 0.9s;
}

.duration-1000 {
    animation-duration: 1s;
}

.duration-1500 {
    animation-duration: 1.5s;
}

.duration-2000 {
    animation-duration: 2s;
}

.duration-3000 {
    animation-duration: 3s;
}

/* ===== ANIMATION ITERATIONS ===== */
.iteration-1 {
    animation-iteration-count: 1;
}

.iteration-2 {
    animation-iteration-count: 2;
}

.iteration-3 {
    animation-iteration-count: 3;
}

.iteration-infinite {
    animation-iteration-count: infinite;
}

/* ===== ANIMATION FILL MODES ===== */
.fill-none {
    animation-fill-mode: none;
}

.fill-forwards {
    animation-fill-mode: forwards;
}

.fill-backwards {
    animation-fill-mode: backwards;
}

.fill-both {
    animation-fill-mode: both;
}

/* ===== ANIMATION TIMING FUNCTIONS ===== */
.timing-linear {
    animation-timing-function: linear;
}

.timing-ease {
    animation-timing-function: ease;
}

.timing-ease-in {
    animation-timing-function: ease-in;
}

.timing-ease-out {
    animation-timing-function: ease-out;
}

.timing-ease-in-out {
    animation-timing-function: ease-in-out;
}

.timing-cubic-bezier {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HOVER ANIMATIONS ===== */
.hover-lift:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.hover-skew:hover {
    transform: skew(-5deg);
    transition: transform 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    transition: box-shadow 0.3s ease;
}

.hover-pulse:hover {
    animation: pulse 1s infinite;
}

.hover-bounce:hover {
    animation: bounceIn 0.6s ease;
}

.hover-wobble:hover {
    animation: wobble 1s ease;
}

.hover-swing:hover {
    animation: swing 1s ease;
}

.hover-tada:hover {
    animation: tada 1s ease;
}

.hover-flash:hover {
    animation: flash 1s ease;
}

.hover-rubberBand:hover {
    animation: rubberBand 1s ease;
}

.hover-jello:hover {
    animation: jello 1s ease;
}

.hover-heartBeat:hover {
    animation: heartBeat 1.3s ease infinite;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-rotate {
    opacity: 0;
    transform: rotate(-10deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-rotate.visible {
    opacity: 1;
    transform: rotate(0deg);
}

/* ===== LOADING ANIMATIONS ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.loading-dots {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 10px;
}

.loading-dots div {
    position: absolute;
    top: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
    left: 0;
    animation: loading-dots1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
    left: 0;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
    left: 16px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
    left: 32px;
    animation: loading-dots3 0.6s infinite;
}

@keyframes loading-dots1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes loading-dots3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes loading-dots2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(16px, 0);
    }
}

.loading-bars {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 20px;
}

.loading-bars div {
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background: currentColor;
    animation: loading-bars 1.2s ease-in-out infinite;
}

.loading-bars div:nth-child(1) {
    left: 0;
    animation-delay: -1.1s;
}

.loading-bars div:nth-child(2) {
    left: 4px;
    animation-delay: -1s;
}

.loading-bars div:nth-child(3) {
    left: 8px;
    animation-delay: -0.9s;
}

.loading-bars div:nth-child(4) {
    left: 12px;
    animation-delay: -0.8s;
}

.loading-bars div:nth-child(5) {
    left: 16px;
    animation-delay: -0.7s;
}

@keyframes loading-bars {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
    }
}

/* ===== PARTICLE ANIMATIONS ===== */
.particle {
    position: absolute;
    pointer-events: none;
    animation: particle 3s linear infinite;
}

.particle:nth-child(1) {
    animation-delay: 0s;
}

.particle:nth-child(2) {
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    animation-delay: 1s;
}

.particle:nth-child(4) {
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    animation-delay: 2s;
}

/* ===== GRADIENT ANIMATIONS ===== */
.gradient-animated {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.gradient-text {
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

/* ===== MORPHING SHAPES ===== */
.morphing-shape {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    animation: morphing 4s ease-in-out infinite;
}

/* ===== WAVE ANIMATIONS ===== */
.wave {
    position: relative;
    overflow: hidden;
}

.wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: wave 2s ease-in-out infinite;
}

/* ===== MATRIX EFFECT ===== */
.matrix-bg {
    position: relative;
    overflow: hidden;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="10" y="20" font-family="monospace" font-size="12" fill="%2300ff00" opacity="0.1">1</text><text x="30" y="40" font-family="monospace" font-size="12" fill="%2300ff00" opacity="0.1">0</text><text x="50" y="60" font-family="monospace" font-size="12" fill="%2300ff00" opacity="0.1">1</text><text x="70" y="80" font-family="monospace" font-size="12" fill="%2300ff00" opacity="0.1">0</text></svg>') repeat;
    animation: matrix 10s linear infinite;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.will-change-auto {
    will-change: auto;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-float,
    .animate-floatReverse,
    .animate-pulse,
    .animate-heartBeat,
    .animate-spin,
    .animate-spinReverse,
    .animate-slide,
    .animate-slideReverse,
    .animate-glow,
    .animate-gradient,
    .animate-typing,
    .animate-morphing,
    .animate-wave,
    .animate-particle,
    .animate-matrix {
        animation: none !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .animate-fadeIn,
    .animate-fadeInUp,
    .animate-fadeInDown,
    .animate-fadeInLeft,
    .animate-fadeInRight,
    .animate-slideInUp,
    .animate-slideInDown,
    .animate-slideInLeft,
    .animate-slideInRight,
    .animate-zoomIn,
    .animate-zoomOut,
    .animate-scaleIn,
    .animate-scaleOut,
    .animate-rotateIn,
    .animate-rotateOut,
    .animate-flipInX,
    .animate-flipInY,
    .animate-bounceIn,
    .animate-bounceOut,
    .animate-pulse,
    .animate-shake,
    .animate-wobble,
    .animate-swing,
    .animate-tada,
    .animate-flash,
    .animate-rubberBand,
    .animate-jello,
    .animate-heartBeat,
    .animate-float,
    .animate-floatReverse,
    .animate-spin,
    .animate-spinReverse,
    .animate-slide,
    .animate-slideReverse,
    .animate-glow,
    .animate-gradient,
    .animate-typing,
    .animate-counter,
    .animate-progress,
    .animate-ripple,
    .animate-morphing,
    .animate-wave,
    .animate-particle,
    .animate-matrix {
        animation: none !important;
    }
}
