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

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

h1, h2, h3 {
    font-family: 'Comic Neue', cursive;
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

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

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.confetti-container::before,
.confetti-container::after {
    content: '🎉';
    position: absolute;
    font-size: 3rem;
    animation: confetti-fall 3s ease-out;
}

.confetti-container::before {
    left: 20%;
    animation-delay: 0s;
}

.confetti-container::after {
    left: 80%;
    animation-delay: 0.5s;
}

@keyframes confetti-fall {
    0% {
        top: -10%;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        top: 100%;
        transform: rotate(720deg);
        opacity: 0;
    }
}

/* Add some berry particles */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Smooth transitions */
* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
}

button {
    cursor: pointer;
    user-select: none;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #FFB3C1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E63946;
}