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

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

#vanta-bg {
    position: fixed;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 10;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for the probability bars */
@keyframes growWidth {
    from { width: 0; }
    to { width: var(--final-width); }
}

.bg-gray-800 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-gray-800:hover {
    transform: translateY(-5px);
}