/*
Theme Name: Odisha News
Theme URI: https://rohitasya.online
Author: Deepak Kumar Sahu
Author URI: https://rohitasya.online
Description: A premium, highly customizable, and lightning-fast news and magazine WordPress theme styled exactly like NewsPulse. Includes custom widgets, trending tickers, and modern card designs.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: odisha-news
Tags: news, blog, magazine, entertainment, sports, grid-layout, custom-menu, translation-ready, rtl-support
*/

:root {
    --primary-color: #E50914;
    --dark-bg: #0F172A;
    --card-bg: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
    color: var(--text-main);
}

/* Custom News Ticker Animation */
@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}
.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}
.ticker-content {
    display: inline-block;
    animation: ticker 50s linear infinite;
}
.ticker-content:hover {
    animation-play-state: paused;
}