/* Custom styles for our Anime Theme */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F0F8FF; /* Alice Blue - a very light sky blue */
    color: #2c3e50; /* Dark Navy/Slate */
}
.font-anime {
    font-family: 'Mochiy Pop One', sans-serif;
}
.text-sakura {
    color: #FFB7C5; /* Cherry Blossom Pink */
}
.bg-navy {
    background-color: #2c3e50;
}
/* Style for the falling petals canvas */
#sakura-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none; /* Allows clicks to go through the canvas */
}
/* For hiding the scrollbar */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Custom styles for our Anime Theme */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F0F8FF; /* Alice Blue - a very light sky blue */
    color: #2c3e50; /* Dark Navy/Slate */
}
.font-anime {
    font-family: 'Mochiy Pop One', sans-serif;
}
.text-sakura {
    color: #FFB7C5; /* Cherry Blossom Pink */
}
.bg-navy {
    background-color: #2c3e50;
}
/* Style for the falling petals canvas */
#sakura-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none; /* Allows clicks to go through the canvas */
}
/* For hiding the scrollbar */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Responsive change for Hall of Fame buttons on mobile */
@media (max-width: 768px) {
    #scroll-left-btn, #scroll-right-btn {
        /* Hide buttons on small screens where touch scrolling is natural */
        display: none;
    }
}
