 /* Base styles */
        body {
            font-family: 'inter', sans-serif;
            @apply bg-white dark:bg-secondary text-secondary dark:text-gray-200 transition-colors duration-300;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'poppins', sans-serif;
            @apply font-bold;
        }
        /* Custom gradient */
        .heading-gradient {
            @apply text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent;
        }
        
        /* Breaking News Ticker Animation */
        .ticker-wrap {
            @apply w-full overflow-hidden;
        }
        .ticker-content {
            @apply inline-block whitespace-nowrap pl-[100%];
            animation: ticker-scroll 30s linear infinite;
        }
        @keyframes ticker-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-150%); } /* Adjust based on content length */
        }

        /* Active Nav Link */
        .nav-link.active {
            @apply text-primary dark:text-primary font-semibold;
        }
        
        /* Mobile Menu Animation */
        #mobile-menu {
            transition: transform 0.3s ease-in-out;
        }
        #mobile-menu.hidden {
            transform: translateX(-100%);
        }
    