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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #3b3b3b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b4b4b;
}

/* Animation for the hero text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, p, a {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Delayed animations */
p {
    animation-delay: 0.2s;
}

a {
    animation-delay: 0.4s;
}

/* Glow effect for premium tiers */
.card-glow {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

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