/* Hızlı ama Profesyonel Bounce Animasyonu */
@keyframes professionalBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.vps-bounce-animation {
    animation: professionalBounce 2s ease-in-out infinite;
    transition: all 0.2s ease;
}

/* Daha küçük cihazlar için */
@media (max-width: 992px) {
    .vps-bounce-animation {
        max-width: 280px;
        margin: 0 auto;
        animation: professionalBounce 2.5s ease-in-out infinite;
    }
    
    .text-lg-end {
        text-align: center !important;
    }
}