.anb-btn-wrapper {
    text-align: center;
    margin: 20px 0;
}

.anb-animated-btn {
    background: linear-gradient(90deg, #538ac6, #ff3300);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    animation: pulse 2s infinite;
}

.anb-animated-btn:hover {
    background: linear-gradient(90deg, #ff3300, #ff6600);
    transform: scale(1.08);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}