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

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

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Count animation */
.animate-count {
    transition: all 1s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #6a006a;
}

/* Selection color */
::selection {
    background: #800080;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 100px;
    }
}