body { 
    font-family: 'Inter', sans-serif; 
}

.animate-pulse-fast { 
    animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite; 
}

.gradient-bg { 
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%); 
}

.cta-arrow {
    display: inline-block;
    margin-left: 8px;
    animation: bounce-right 0.8s ease-in-out infinite;
}

.cta-button:hover .cta-arrow {
    animation: bounce-right 0.4s ease-in-out infinite;
}

@keyframes bounce-right {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}