/* VEL AI SaaS PWA Theme */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #405de6, #833ab4, #c13584, #fd1d1d);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.saas-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.btn-gradient {
    background: linear-gradient(45deg,#405de6,#c13584,#fd1d1d);
    border: none;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
}

.btn-gradient:hover {
    opacity: 0.9;
}