@keyframes shake-attention {
    0%, 90%, 100% {
        transform: translateX(0) rotate(0);
    }
    92%, 96% {
        transform: translateX(-4px) rotate(-2deg);
    }
    94%, 98% {
        transform: translateX(4px) rotate(2deg);
    }
}

@keyframes pulse-attention {
    0% {
        box-shadow: 0 4px 12px rgba(255, 127, 50, 0.4), 0 0 0 0 rgba(255, 127, 50, 0.6);
    }
    70% {
        box-shadow: 0 4px 12px rgba(255, 127, 50, 0.4), 0 0 0 15px rgba(255, 127, 50, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(255, 127, 50, 0.4), 0 0 0 0 rgba(255, 127, 50, 0);
    }
}

@keyframes hero-zoom-out {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-wheel-anim {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--easing-standard), transform 0.8s var(--easing-standard);
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

:not(.is-visible).fade-in-up:nth-child(1) {
    transition-delay: 0.1s;
}
:not(.is-visible).fade-in-up:nth-child(2) {
    transition-delay: 0.2s;
}
:not(.is-visible).fade-in-up:nth-child(3) {
    transition-delay: 0.3s;
}
:not(.is-visible).fade-in-up:nth-child(4) {
    transition-delay: 0.4s;
}
:not(.is-visible).fade-in-up:nth-child(5) {
    transition-delay: 0.5s;
}
:not(.is-visible).fade-in-up:nth-child(6) {
    transition-delay: 0.6s;
}
:not(.is-visible).fade-in-up:nth-child(7) {
    transition-delay: 0.7s;
}
:not(.is-visible).fade-in-up:nth-child(8) {
    transition-delay: 0.8s;
}