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

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes confetti {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

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

button:active {
    transform: scale(0.98);
}

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

::selection {
    background-color: rgba(227, 28, 95, 0.2);
}

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

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

::-webkit-scrollbar-track {
    background: #FFFBF5;
}

::-webkit-scrollbar-thumb {
    background: #E31C5F;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B5CF6;
}