body {
    font-family: 'Inter', sans-serif;
}

html, body {
    overflow-x: hidden;
}

/* Hide scrollbar for content categories on mobile */
.overflow-x-auto::-webkit-scrollbar {
    display: none;
}

/* Child-friendly font for content category titles */
.category-title {
    font-family: 'Fredoka One', 'Nunito', cursive;
}

/* Mobile carousel smooth scrolling */
.mobile-carousel {
    scroll-behavior: smooth;
}

/* Mobile carousel fast scroll animation */
.mobile-carousel.fast-scroll {
    animation: fastScroll 1s ease-in-out;
}

@keyframes fastScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200px);
    }
} 