/*
Theme Name: InMail WP Theme
Theme URI: https://inmail.ng
Author: InMail Team
Author URI: https://inmail.ng
Description: Custom WordPress theme for the InMail News portal.
Version: 1.0.0
License: Proprietary
Text Domain: inmail
*/

/* We will rely on Tailwind CSS via CDN for styling. Custom CSS goes here if needed. */

body {
    background-color: #000000;
    color: #ffffff;
}

/* Hide scrollbar for carousel but keep functionality */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations from Tailwind config */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fade-in {
    animation: fade-in 0.5s ease-out forwards;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
.animate-bounce {
    animation: bounce 1s infinite;
}
