@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

.gradient-text {
    background: linear-gradient(90deg, #6366F1 0%, #EC4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.03);
}

/* Payment animations */
@keyframes paymentSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.payment-success {
    animation: paymentSuccess 2s ease;
    background-color: #f0fff4;
    border-left: 4px solid #48bb78;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.375rem;
}
