/* RAHUL 24 NEWS - Main Stylesheet */
:root {
    --primary: #dc3545;
    --primary-dark: #b71c1c;
    --primary-light: #e57373;
    --primary-rgb: 220, 53, 69;
    --secondary: #6c757d;
    --dark: #1a1a2e;
    --dark-secondary: #16213e;
    --darker: #0f0f23;
    --accent: #ffc107;
    --accent-rgb: 255, 193, 7;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --light-secondary: #e9ecef;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --body-bg: #f4f4f4;
    --body-color: #333333;
    --card-bg: #ffffff;
    --card-border: #e8e8e8;
    --header-bg: #ffffff;
    --footer-bg: #1a1a2e;
    --footer-color: #cccccc;
    --sidebar-bg: #ffffff;
    --input-bg: #ffffff;
    --input-border: #ced4da;
    --nav-link-color: #333333;
    --nav-link-hover: #dc3545;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --border-radius: 6px;
    --border-radius-lg: 10px;
    --border-radius-xl: 15px;
    --font-family: 'SolaimanLipi', 'Noto Sans Bengali', 'Arial', sans-serif;
    --font-family-alt: 'Arial', 'Helvetica', sans-serif;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --header-height: 60px;
    --topbar-height: 40px;
    --breaking-height: 42px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-color);
    background-color: var(--body-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--dark); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
.container { max-width: 1200px; padding: 0 15px; margin: 0 auto; }
.container-fluid { width: 100%; padding: 0 15px; margin: 0 auto; }
.section-padding { padding: 30px 0; }
.section-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid var(--primary); color: var(--dark); position: relative; display: flex; align-items: center; justify-content: space-between; }
.section-title span { flex: 1; }
.section-title .view-all { font-size: 13px; font-weight: 500; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.section-title .view-all:hover { color: var(--primary); }
.section-title-light { color: var(--white); border-bottom-color: rgba(255,255,255,0.2); }
.section-title-light .view-all { color: rgba(255,255,255,0.7); }
.section-title-light .view-all:hover { color: var(--white); }

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    height: var(--topbar-height);
    line-height: var(--topbar-height);
    position: relative;
    z-index: 1001;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.top-bar-left { display: flex; align-items: center; gap: 15px; }
.top-bar-left .current-date { white-space: nowrap; }
.top-bar-left .current-date i { margin-right: 5px; color: var(--primary); }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right .social-icons { display: flex; gap: 8px; }
.top-bar-right .social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    color: rgba(255,255,255,0.8); font-size: 13px;
    transition: var(--transition); background: rgba(255,255,255,0.1);
}
.top-bar-right .social-icons a:hover { color: var(--white); background: var(--primary); }
.dark-mode-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    cursor: pointer; color: rgba(255,255,255,0.8); font-size: 13px;
    background: rgba(255,255,255,0.1); padding: 2px 12px; border-radius: 20px;
    transition: var(--transition); border: none; outline: none;
}
.dark-mode-toggle:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.dark-mode-toggle i { font-size: 12px; }

/* Header / Logo Area */
.header-area {
    background: var(--header-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}
.header-area .container { display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; align-items: center; }
.site-logo img { max-height: 60px; width: auto; }
.site-logo .logo-text { font-size: 28px; font-weight: 900; color: var(--primary); line-height: 1; }
.site-logo .logo-text span { color: var(--dark); }
.site-logo .logo-tagline { font-size: 12px; color: var(--gray-600); margin-top: 2px; }
.header-date { text-align: right; font-size: 13px; color: var(--gray-600); }
.header-date .bangla-date { font-weight: 600; color: var(--dark); font-size: 14px; }
.header-ad { max-width: 728px; }

/* Navigation */
.main-nav { background: var(--header-bg); border-bottom: 2px solid var(--primary); position: relative; z-index: 1000; box-shadow: var(--shadow-sm); }
.main-nav.sticky { position: fixed; top: 0; left: 0; width: 100%; z-index: 1050; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.main-nav .container { display: flex; align-items: center; }
.navbar-toggler { display: none; background: none; border: none; font-size: 22px; color: var(--dark); cursor: pointer; padding: 10px; }
.nav-menu { display: flex; align-items: center; gap: 0; margin: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: block; padding: 12px 16px; color: var(--nav-link-color);
    font-weight: 600; font-size: 14px; text-transform: uppercase;
    letter-spacing: 0.3px; transition: var(--transition); position: relative;
    white-space: nowrap;
}
.nav-menu > li > a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; background: var(--primary); transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { width: 100%; }
.nav-menu > li > a i { margin-right: 5px; }
.nav-menu > li.has-dropdown > a::before {
    content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    margin-left: 5px; font-size: 12px;
}

/* Dropdown */
.dropdown-menu-custom {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--white); border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: var(--transition);
    z-index: 1050; padding: 8px 0; border: 1px solid var(--gray-200);
    border-top: 3px solid var(--primary);
}
.nav-menu > li:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-custom li a {
    display: block; padding: 8px 20px; color: var(--gray-700);
    font-size: 14px; font-weight: 500; transition: var(--transition-fast);
    border-left: 3px solid transparent;
}
.dropdown-menu-custom li a:hover { background: var(--gray-100); color: var(--primary); border-left-color: var(--primary); }
.dropdown-menu-custom .dropdown-divider { height: 1px; background: var(--gray-200); margin: 5px 0; }

/* Mega Menu */
.mega-menu { position: static !important; }
.mega-menu-content {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--white); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); z-index: 1050;
    padding: 25px; border-top: 3px solid var(--primary);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.mega-menu:hover .mega-menu-content { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-content .mega-col h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-200); }
.mega-menu-content .mega-col a { display: block; padding: 5px 0; color: var(--gray-700); font-size: 13px; transition: var(--transition-fast); }
.mega-menu-content .mega-col a:hover { color: var(--primary); padding-left: 5px; }
.mega-menu-content .mega-featured { grid-column: span 1; }
.mega-menu-content .mega-featured .mega-news-card { display: flex; flex-direction: column; gap: 8px; }
.mega-menu-content .mega-featured .mega-news-card img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--border-radius); }
.mega-menu-content .mega-featured .mega-news-card h5 { font-size: 14px; }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; padding: 0 10px; }
.nav-right .search-trigger, .nav-right .notification-trigger {
    background: none; border: none; font-size: 18px; color: var(--gray-700);
    cursor: pointer; padding: 8px; transition: var(--transition); position: relative;
}
.nav-right .search-trigger:hover, .nav-right .notification-trigger:hover { color: var(--primary); }
.nav-right .notification-trigger .badge {
    position: absolute; top: 2px; right: 2px; font-size: 9px;
    padding: 2px 5px; border-radius: 10px; min-width: 16px;
    background: var(--primary); color: var(--white);
}

/* Breaking News Ticker */
.breaking-news-bar {
    background: var(--primary); color: var(--white); height: var(--breaking-height);
    display: flex; align-items: center; overflow: hidden; position: relative;
}
.breaking-news-bar .container { display: flex; align-items: center; height: 100%; }
.breaking-label {
    background: var(--dark); color: var(--white); padding: 0 18px;
    font-weight: 700; font-size: 13px; text-transform: uppercase;
    display: flex; align-items: center; gap: 6px; height: 100%;
    flex-shrink: 0; letter-spacing: 1px;
}
.breaking-label i { animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.breaking-ticker { overflow: hidden; flex: 1; padding: 0 15px; height: 100%; display: flex; align-items: center; }
.breaking-ticker ul {
    display: flex; animation: tickerScroll 30s linear infinite;
    white-space: nowrap; gap: 50px;
}
.breaking-ticker ul li { display: inline-flex; align-items: center; }
.breaking-ticker ul li a { color: var(--white); font-weight: 500; font-size: 14px; }
.breaking-ticker ul li a:hover { text-decoration: underline; }
.breaking-ticker ul li .separator { color: rgba(255,255,255,0.4); margin-left: 50px; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.breaking-ticker:hover ul { animation-play-state: paused; }
.breaking-controls { display: flex; gap: 5px; flex-shrink: 0; }
.breaking-controls button {
    background: rgba(255,255,255,0.2); border: none;
    color: var(--white); width: 26px; height: 26px; border-radius: 50%;
    cursor: pointer; font-size: 10px; transition: var(--transition);
}
.breaking-controls button:hover { background: rgba(255,255,255,0.4); }

/* Hero Slider */
.hero-section { margin-bottom: 30px; }
.hero-slider { position: relative; overflow: hidden; border-radius: var(--border-radius-lg); }
.hero-slide { position: relative; height: 450px; overflow: hidden; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 5s ease; }
.hero-slide:hover img { transform: scale(1.05); }
.hero-slide .hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    padding: 40px 30px 25px;
}
.hero-slide .hero-category {
    display: inline-block; background: var(--primary); color: var(--white);
    padding: 2px 12px; border-radius: 3px; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}
.hero-slide .hero-title { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.hero-slide .hero-title a { color: var(--white); }
.hero-slide .hero-title a:hover { color: var(--primary-light); }
.hero-slide .hero-meta { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; gap: 15px; flex-wrap: wrap; }
.hero-slider .slick-dots { position: absolute; bottom: 15px; right: 25px; display: flex; gap: 8px; }
.hero-slider .slick-dots li { list-style: none; }
.hero-slider .slick-dots button {
    width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6);
    background: transparent; font-size: 0; cursor: pointer; transition: var(--transition); padding: 0;
}
.hero-slider .slick-dots li.slick-active button { background: var(--white); border-color: var(--white); transform: scale(1.2); }
.hero-slider .slick-prev, .hero-slider .slick-next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 45px; height: 45px; border-radius: 50%; background: rgba(0,0,0,0.5);
    border: none; color: var(--white); font-size: 18px; cursor: pointer;
    transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.hero-slider .slick-prev { left: 15px; }
.hero-slider .slick-next { right: 15px; }
.hero-slider .slick-prev:hover, .hero-slider .slick-next:hover { background: var(--primary); }

/* Hero Side / Thumbnails */
.hero-side { display: flex; flex-direction: column; gap: 10px; height: 100%; }
.hero-side-item { position: relative; flex: 1; border-radius: var(--border-radius); overflow: hidden; min-height: 130px; }
.hero-side-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hero-side-item:hover img { transform: scale(1.05); }
.hero-side-item .hero-side-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 15px;
}
.hero-side-item .hero-side-title { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; }
.hero-side-item .hero-side-title a { color: var(--white); }
.hero-side-item .hero-side-title a:hover { color: var(--primary-light); }
.hero-side-item .hero-side-category {
    display: inline-block; background: var(--primary); color: var(--white);
    padding: 1px 8px; border-radius: 2px; font-size: 10px; font-weight: 600;
    text-transform: uppercase; margin-bottom: 5px;
}

/* News Card Styles */
.news-card { background: var(--card-bg); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); margin-bottom: 20px; border: 1px solid var(--card-border); }
.news-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.news-card .card-image { position: relative; overflow: hidden; }
.news-card .card-image img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .card-image img { transform: scale(1.05); }
.news-card .card-image .card-category {
    position: absolute; top: 10px; left: 10px;
    background: var(--primary); color: var(--white);
    padding: 3px 12px; border-radius: 3px; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.3px; z-index: 2;
}
.news-card .card-image .card-category:hover { background: var(--primary-dark); }
.news-card .card-image .card-play-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 50px; height: 50px; background: rgba(220,53,69,0.85); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 20px; z-index: 2;
    transition: var(--transition); border: 3px solid rgba(255,255,255,0.5);
}
.news-card .card-image .card-play-icon:hover { transform: translate(-50%,-50%) scale(1.1); background: var(--primary); }
.news-card .card-body { padding: 15px; }
.news-card .card-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.news-card .card-title a { color: var(--dark); }
.news-card .card-title a:hover { color: var(--primary); }
.news-card .card-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 10px; }
.news-card .card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--gray-500); flex-wrap: wrap; }
.news-card .card-meta i { margin-right: 3px; }
.news-card .card-meta .author { color: var(--gray-600); font-weight: 500; }
.news-card .card-meta .author a { color: var(--gray-600); }
.news-card .card-meta .author a:hover { color: var(--primary); }

/* Featured Card Large */
.news-card.featured .card-image img { height: 350px; }
.news-card.featured .card-body { padding: 20px; }
.news-card.featured .card-title { font-size: 22px; }

/* List Layout */
.news-card.list-layout { display: flex; flex-direction: row; }
.news-card.list-layout .card-image { flex: 0 0 280px; }
.news-card.list-layout .card-image img { height: 100%; min-height: 190px; }
.news-card.list-layout .card-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }

/* Small Card */
.news-card.small-card .card-image img { height: 130px; }
.news-card.small-card .card-body { padding: 10px; }
.news-card.small-card .card-title { font-size: 14px; }
.news-card.small-card .card-meta { font-size: 11px; }

/* Horizontal Mini Card */
.mini-news-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.mini-news-item:last-child { border-bottom: none; }
.mini-news-item .mini-image { flex: 0 0 100px; border-radius: var(--border-radius); overflow: hidden; }
.mini-news-item .mini-image img { width: 100%; height: 70px; object-fit: cover; }
.mini-news-item .mini-content { flex: 1; }
.mini-news-item .mini-title { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.mini-news-item .mini-title a { color: var(--dark); }
.mini-news-item .mini-title a:hover { color: var(--primary); }
.mini-news-item .mini-meta { font-size: 11px; color: var(--gray-500); }

/* Category Badge */
.cat-badge { display: inline-block; padding: 3px 12px; border-radius: 3px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; background: var(--primary); color: var(--white); }
.cat-badge:hover { opacity: 0.9; color: var(--white); }
.cat-badge-primary { background: var(--primary); }
.cat-badge-secondary { background: var(--secondary); }
.cat-badge-success { background: var(--success); }
.cat-badge-info { background: var(--info); }
.cat-badge-warning { background: var(--warning); color: var(--dark); }
.cat-badge-danger { background: var(--danger); }
.cat-badge-dark { background: var(--dark); }

/* Category Colors */
.cat-bangladesh { background: #e74c3c; }
.cat-international { background: #3498db; }
.cat-politics { background: #9b59b6; }
.cat-sports { background: #2ecc71; }
.cat-cricket { background: #1abc9c; }
.cat-football { background: #27ae60; }
.cat-entertainment { background: #e67e22; }
.cat-technology { background: #3498db; }
.cat-education { background: #f39c12; }
.cat-business { background: #34495e; }
.cat-lifestyle { background: #e91e63; }
.cat-health { background: #00bcd4; }
.cat-islamic { background: #4caf50; }
.cat-science { background: #607d8b; }
.cat-jobs { background: #795548; }
.cat-opinion { background: #ff5722; }
.cat-travel { background: #009688; }
.cat-agriculture { background: #8bc34a; }

/* Sidebar Widgets */
.sidebar-widget { background: var(--sidebar-bg); border-radius: var(--border-radius-lg); padding: 20px; margin-bottom: 25px; box-shadow: var(--shadow-sm); border: 1px solid var(--card-border); }
.sidebar-widget .widget-title {
    font-size: 17px; font-weight: 700; margin-bottom: 15px;
    padding-bottom: 10px; border-bottom: 3px solid var(--primary);
    color: var(--dark); display: flex; align-items: center; gap: 8px;
}
.sidebar-widget .widget-title i { color: var(--primary); }

/* Social Follow Widget */
.social-follow { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.social-follow a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--border-radius); color: var(--white); font-weight: 600; font-size: 13px; transition: var(--transition); }
.social-follow a:hover { transform: translateY(-2px); opacity: 0.9; }
.social-follow a i { font-size: 18px; width: 24px; text-align: center; }
.social-follow .facebook { background: #1877f2; }
.social-follow .twitter { background: #000000; }
.social-follow .youtube { background: #ff0000; }
.social-follow .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-follow .whatsapp { background: #25d366; color: var(--white); }
.social-follow .telegram { background: #0088cc; }

/* Tags Cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tags-cloud a { display: inline-block; padding: 5px 12px; background: var(--gray-100); color: var(--gray-700); font-size: 13px; border-radius: 20px; border: 1px solid var(--gray-300); transition: var(--transition); }
.tags-cloud a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Newsletter Widget */
.newsletter-widget .nl-text { font-size: 14px; color: var(--gray-600); margin-bottom: 12px; }
.newsletter-widget .input-group { display: flex; }
.newsletter-widget .input-group input { flex: 1; padding: 10px 14px; border: 1px solid var(--input-border); border-radius: var(--border-radius) 0 0 var(--border-radius); font-size: 14px; outline: none; }
.newsletter-widget .input-group input:focus { border-color: var(--primary); }
.newsletter-widget .input-group button { padding: 10px 18px; background: var(--primary); color: var(--white); border: none; border-radius: 0 var(--border-radius) var(--border-radius) 0; cursor: pointer; font-size: 14px; transition: var(--transition); }
.newsletter-widget .input-group button:hover { background: var(--primary-dark); }

/* Weather Widget */
.weather-widget { display: flex; align-items: center; gap: 15px; padding: 10px 0; }
.weather-widget .weather-icon { font-size: 40px; color: var(--primary); }
.weather-widget .weather-temp { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1; }
.weather-widget .weather-info { font-size: 13px; color: var(--gray-600); }
.weather-widget .weather-location { font-size: 12px; color: var(--gray-500); }

/* Prayer Times Widget */
.prayer-times { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.prayer-time-item { display: flex; justify-content: space-between; padding: 6px 10px; background: var(--gray-100); border-radius: var(--border-radius); font-size: 13px; }
.prayer-time-item .prayer-name { font-weight: 600; color: var(--dark); }
.prayer-time-item .prayer-time { color: var(--gray-600); font-family: monospace; font-size: 12px; }
.prayer-time-item.active { background: var(--primary); color: var(--white); }
.prayer-time-item.active .prayer-name { color: var(--white); }
.prayer-time-item.active .prayer-time { color: rgba(255,255,255,0.8); }

/* Advertisement */
.ad-container { text-align: center; margin: 20px 0; padding: 10px; background: var(--gray-100); border-radius: var(--border-radius); min-height: 90px; display: flex; align-items: center; justify-content: center; }
.ad-container img { max-width: 100%; height: auto; }
.ad-label { font-size: 10px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.ad-container-sidebar { margin-bottom: 25px; }

/* Footer */
.site-footer {
    background: var(--footer-bg); color: var(--footer-color);
    padding: 50px 0 0; margin-top: 40px;
}
.site-footer h4 { color: var(--white); font-size: 18px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.site-footer p { font-size: 14px; line-height: 1.8; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a { color: var(--footer-color); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.site-footer ul li a:hover { color: var(--primary); padding-left: 5px; }
.site-footer .footer-logo { max-height: 50px; margin-bottom: 15px; }
.site-footer .footer-social { display: flex; gap: 10px; margin-top: 15px; }
.site-footer .footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); font-size: 16px; transition: var(--transition); }
.site-footer .footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 15px 0; margin-top: 40px; font-size: 13px; text-align: center; }
.footer-bottom a { color: var(--primary); }
.footer-bottom .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 5px; }
.footer-bottom .footer-links a { color: var(--footer-color); }
.footer-bottom .footer-links a:hover { color: var(--primary); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 5px; margin: 30px 0; }
.pagination .page-item { list-style: none; }
.pagination .page-link {
    display: flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 12px;
    border: 1px solid var(--gray-300); border-radius: var(--border-radius);
    color: var(--gray-700); font-weight: 500; font-size: 14px;
    background: var(--white); transition: var(--transition);
}
.pagination .page-link:hover { background: var(--gray-100); border-color: var(--primary); color: var(--primary); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: var(--white); }
.pagination .page-item.disabled .page-link { opacity: 0.5; pointer-events: none; }

/* Comment Section */
.comment-section { margin-top: 30px; }
.comment-section h3 { font-size: 20px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid var(--primary); }
.comment-item { display: flex; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--gray-200); }
.comment-item:last-child { border-bottom: none; }
.comment-item .comment-avatar { flex: 0 0 45px; }
.comment-item .comment-avatar img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.comment-item .comment-body { flex: 1; }
.comment-item .comment-author { font-weight: 600; color: var(--dark); font-size: 14px; }
.comment-item .comment-date { font-size: 12px; color: var(--gray-500); margin-left: 10px; }
.comment-item .comment-text { font-size: 14px; margin: 5px 0 8px; line-height: 1.6; }
.comment-item .comment-actions { display: flex; gap: 12px; font-size: 12px; }
.comment-item .comment-actions a { color: var(--gray-500); cursor: pointer; transition: var(--transition); }
.comment-item .comment-actions a:hover { color: var(--primary); }
.comment-item .comment-actions a i { margin-right: 3px; }
.comment-item.reply { margin-left: 57px; padding-left: 15px; border-left: 3px solid var(--gray-300); background: var(--gray-50); }
.comment-form { margin-top: 20px; }
.comment-form textarea { width: 100%; padding: 12px; border: 1px solid var(--input-border); border-radius: var(--border-radius); font-size: 14px; resize: vertical; min-height: 100px; outline: none; transition: var(--transition); }
.comment-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
.comment-form .form-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.comment-form .login-notice { font-size: 13px; color: var(--gray-600); }

/* Loading Spinner */
.spinner { display: inline-block; width: 40px; height: 40px; border: 3px solid var(--gray-300); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
.spinner-sm { width: 20px; height: 20px; border-width: 2px; }
.spinner-lg { width: 60px; height: 60px; border-width: 4px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.loading-dots { display: flex; gap: 6px; align-items: center; }
.loading-dots span { width: 12px; height: 12px; border-radius: 50%; background: var(--primary); animation: dotBounce 1.4s ease-in-out infinite both; }
.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes dotBounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* Social Share */
.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin: 15px 0; }
.share-buttons a, .share-buttons button {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: var(--border-radius);
    color: var(--white); font-size: 13px; font-weight: 600;
    border: none; cursor: pointer; transition: var(--transition);
}
.share-buttons a:hover, .share-buttons button:hover { transform: translateY(-2px); }
.share-btn-facebook { background: #1877f2; }
.share-btn-twitter { background: #000000; }
.share-btn-whatsapp { background: #25d366; }
.share-btn-telegram { background: #0088cc; }
.share-btn-linkedin { background: #0a66c2; }
.share-btn-pinterest { background: #bd081c; }
.share-btn-email { background: var(--gray-600); }
.share-btn-print { background: var(--gray-700); }
.share-btn-copy { background: var(--dark); }

/* Reading Progress Bar */
.reading-progress { position: fixed; top: 0; left: 0; width: 0; height: 3px; background: linear-gradient(to right, var(--primary), var(--accent)); z-index: 9999; transition: width 0.1s linear; }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px;
    border-radius: 50%; background: var(--primary); color: var(--white);
    border: none; font-size: 18px; cursor: pointer; z-index: 999;
    box-shadow: var(--shadow); transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Search Modal */
.search-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 9999; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.search-modal.show { display: flex; opacity: 1; }
.search-modal .search-modal-content { width: 100%; max-width: 600px; padding: 20px; }
.search-modal .search-modal-close { position: absolute; top: 20px; right: 30px; background: none; border: none; color: var(--white); font-size: 30px; cursor: pointer; opacity: 0.7; transition: var(--transition); }
.search-modal .search-modal-close:hover { opacity: 1; }
.search-modal .search-form { display: flex; }
.search-modal .search-form input {
    flex: 1; padding: 15px 20px; font-size: 18px; border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background: var(--white); outline: none;
}
.search-modal .search-form button {
    padding: 15px 25px; background: var(--primary); color: var(--white);
    border: none; border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 18px; cursor: pointer; transition: var(--transition);
}
.search-modal .search-form button:hover { background: var(--primary-dark); }
.search-modal .search-hints { color: rgba(255,255,255,0.5); font-size: 13px; text-align: center; margin-top: 15px; }
.search-results-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-radius: 0 0 var(--border-radius) var(--border-radius); box-shadow: var(--shadow-lg); max-height: 400px; overflow-y: auto; z-index: 1051; display: none; }
.search-results-dropdown.show { display: block; }
.search-result-item { display: flex; gap: 10px; padding: 10px 15px; border-bottom: 1px solid var(--gray-200); transition: var(--transition-fast); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--gray-100); }
.search-result-item img { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.search-result-item .result-info { flex: 1; min-width: 0; }
.search-result-item .result-title { font-size: 14px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-item .result-meta { font-size: 11px; color: var(--gray-500); }

/* Toast Notifications */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 10000; display: flex; flex-direction: column; gap: 8px; }
.toast { min-width: 280px; max-width: 400px; padding: 14px 18px; border-radius: var(--border-radius); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 14px; animation: toastIn 0.3s ease; cursor: pointer; }
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-warning { background: var(--warning); color: var(--dark); }
.toast-info { background: var(--info); }
.toast i { font-size: 18px; flex-shrink: 0; }
.toast .toast-text { flex: 1; }
.toast .toast-close { background: none; border: none; color: inherit; font-size: 16px; cursor: pointer; opacity: 0.7; padding: 0; }
.toast .toast-close:hover { opacity: 1; }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast.removing { animation: toastOut 0.3s ease forwards; }
@keyframes toastOut { to { transform: translateX(100%); opacity: 0; } }

/* Reactions */
.reaction-buttons { display: flex; gap: 10px; margin: 15px 0; }
.reaction-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border: 1px solid var(--gray-300); border-radius: 25px; background: var(--white); color: var(--gray-700); font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); }
.reaction-btn:hover { border-color: var(--primary); color: var(--primary); }
.reaction-btn.active-like { background: #e8f5e9; border-color: var(--success); color: var(--success); }
.reaction-btn.active-dislike { background: #fbe9e7; border-color: var(--danger); color: var(--danger); }
.reaction-btn i { font-size: 16px; }
.reaction-btn .count { font-weight: 600; }

/* Gallery/Lightbox */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { position: relative; border-radius: var(--border-radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 15px; color: var(--white); }
.gallery-item .gallery-title { font-size: 15px; font-weight: 600; }
.gallery-item .gallery-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 40px; color: rgba(255,255,255,0.7); opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-icon { opacity: 1; }

.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 10000; display: none; align-items: center; justify-content: center; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: var(--border-radius); }
.lightbox .lightbox-close { position: absolute; top: 20px; right: 30px; color: var(--white); font-size: 35px; background: none; border: none; cursor: pointer; opacity: 0.7; }
.lightbox .lightbox-close:hover { opacity: 1; }
.lightbox .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 40px; background: rgba(0,0,0,0.5); border: none; cursor: pointer; padding: 10px 15px; border-radius: var(--border-radius); transition: var(--transition); }
.lightbox .lightbox-nav:hover { background: rgba(0,0,0,0.8); }
.lightbox .lightbox-prev { left: 20px; }
.lightbox .lightbox-next { right: 20px; }
.lightbox .lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--white); font-size: 14px; text-align: center; max-width: 80%; }

/* Video Grid */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.video-card { position: relative; border-radius: var(--border-radius); overflow: hidden; cursor: pointer; }
.video-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.video-card:hover img { transform: scale(1.05); }
.video-card .video-duration { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); color: var(--white); padding: 2px 8px; border-radius: 4px; font-size: 12px; font-family: monospace; }
.video-card .video-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 55px; height: 55px; background: rgba(220,53,69,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; border: 3px solid rgba(255,255,255,0.5); transition: var(--transition); }
.video-card:hover .video-play-icon { transform: translate(-50%,-50%) scale(1.1); }
.video-card .video-info { padding: 12px; }
.video-card .video-title { font-size: 16px; font-weight: 600; margin-bottom: 5px; }
.video-card .video-title a { color: var(--dark); }
.video-card .video-title a:hover { color: var(--primary); }
.video-card .video-meta { font-size: 12px; color: var(--gray-500); }

/* Author Box */
.author-box { display: flex; gap: 20px; padding: 20px; background: var(--gray-100); border-radius: var(--border-radius-lg); margin: 25px 0; }
.author-box .author-avatar { flex: 0 0 100px; }
.author-box .author-avatar img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.author-box .author-info { flex: 1; }
.author-box .author-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.author-box .author-bio { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.author-box .author-social { display: flex; gap: 10px; margin-top: 10px; }
.author-box .author-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-300); display: flex; align-items: center; justify-content: center; color: var(--gray-700); font-size: 14px; transition: var(--transition); }
.author-box .author-social a:hover { background: var(--primary); color: var(--white); }

/* Notification Bell Dropdown */
.notification-dropdown { position: absolute; top: 100%; right: 0; width: 320px; background: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); z-index: 1060; display: none; max-height: 400px; overflow-y: auto; }
.notification-dropdown.show { display: block; }
.notification-dropdown .dropdown-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--gray-200); }
.notification-dropdown .dropdown-header h6 { font-size: 14px; margin: 0; }
.notification-dropdown .dropdown-header a { font-size: 12px; color: var(--primary); }
.notification-item { display: flex; gap: 10px; padding: 12px 15px; border-bottom: 1px solid var(--gray-100); transition: var(--transition-fast); cursor: pointer; }
.notification-item:hover { background: var(--gray-100); }
.notification-item .notif-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-700); flex-shrink: 0; }
.notification-item.unread { background: rgba(var(--primary-rgb), 0.03); }
.notification-item.unread .notif-icon { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
.notification-item .notif-content { flex: 1; min-width: 0; }
.notification-item .notif-title { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.notification-item .notif-text { font-size: 12px; color: var(--gray-600); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notification-item .notif-time { font-size: 11px; color: var(--gray-500); margin-top: 3px; }

/* Count Up Animation */
.count-up { display: inline-block; }

/* Lazy Loading */
.lazy { opacity: 0; transition: opacity 0.3s ease; }
.lazy.loaded { opacity: 1; }

/* Flash Messages */
.flash-message { padding: 12px 18px; border-radius: var(--border-radius); font-size: 14px; margin-bottom: 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.flash-message i { margin-right: 6px; }
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.flash-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.flash-message .flash-close { background: none; border: none; font-size: 18px; cursor: pointer; color: inherit; opacity: 0.5; }
.flash-message .flash-close:hover { opacity: 1; }

/* Single News Page */
.single-news-header { margin-bottom: 25px; }
.single-news-header .news-category { margin-bottom: 10px; }
.single-news-header h1 { font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.single-news-header .news-meta { display: flex; flex-wrap: wrap; gap: 15px; font-size: 13px; color: var(--gray-600); }
.single-news-header .news-meta i { margin-right: 4px; }
.single-news-header .news-meta span { display: flex; align-items: center; }
.single-news-header .featured-image { border-radius: var(--border-radius-lg); overflow: hidden; margin: 20px 0; }
.single-news-header .featured-image img { width: 100%; max-height: 500px; object-fit: cover; }
.single-news-header .featured-image .image-caption { padding: 8px 12px; background: var(--gray-100); font-size: 13px; color: var(--gray-600); }
.news-content { font-size: 16px; line-height: 1.9; color: var(--body-color); }
.news-content p { margin-bottom: 1.2rem; }
.news-content h2, .news-content h3, .news-content h4 { margin-top: 1.5rem; margin-bottom: 0.8rem; }
.news-content img { border-radius: var(--border-radius); margin: 15px 0; max-width: 100%; height: auto; }
.news-content blockquote { border-left: 4px solid var(--primary); padding: 10px 20px; margin: 20px 0; background: var(--gray-100); font-style: italic; color: var(--gray-700); border-radius: 0 var(--border-radius) var(--border-radius) 0; }
.news-content ul, .news-content ol { padding-left: 20px; margin-bottom: 1rem; }
.news-content ul li { list-style: disc; }
.news-content ol li { list-style: decimal; }
.news-content iframe { max-width: 100%; border-radius: var(--border-radius); }
.news-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0; }
.news-tags a { display: inline-block; padding: 5px 14px; background: var(--gray-100); color: var(--gray-700); border-radius: 20px; font-size: 13px; border: 1px solid var(--gray-300); transition: var(--transition); }
.news-tags a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* News Card Dark Overlay for Image Text */
.card-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 15px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--white); }
.card-image-overlay .card-title { font-size: 18px; }
.card-image-overlay .card-title a { color: var(--white); }
.card-image-overlay .card-title a:hover { color: var(--primary-light); }
.card-image-overlay .card-meta { color: rgba(255,255,255,0.7); }

/* Form Styles */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 5px; color: var(--dark); font-size: 14px; }
.form-control { width: 100%; padding: 10px 14px; border: 1px solid var(--input-border); border-radius: var(--border-radius); font-size: 14px; outline: none; transition: var(--transition); background: var(--input-bg); }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
.form-control.error { border-color: var(--danger); }
.form-control.success { border-color: var(--success); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 3px; }
select.form-control { appearance: auto; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* Button Styles */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--border-radius); font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #5a6268; color: var(--white); }
.btn-success { background: var(--success); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-warning { background: var(--warning); color: var(--dark); }
.btn-info { background: var(--info); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-light { background: var(--light); color: var(--dark); border: 1px solid var(--gray-300); }
.btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Auth Pages */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; background: var(--body-bg); }
.auth-card { width: 100%; max-width: 450px; background: var(--card-bg); border-radius: var(--border-radius-xl); box-shadow: var(--shadow-lg); padding: 35px; }
.auth-card .auth-logo { text-align: center; margin-bottom: 25px; }
.auth-card .auth-logo img { max-height: 50px; }
.auth-card .auth-logo h2 { font-size: 24px; font-weight: 900; color: var(--primary); }
.auth-card .auth-title { text-align: center; margin-bottom: 25px; }
.auth-card .auth-title h4 { font-size: 20px; }
.auth-card .auth-title p { font-size: 14px; color: var(--gray-600); }
.auth-card .form-divider { text-align: center; margin: 20px 0; position: relative; }
.auth-card .form-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--gray-300); }
.auth-card .form-divider span { background: var(--card-bg); padding: 0 10px; position: relative; color: var(--gray-600); font-size: 13px; }
.auth-card .social-login { display: flex; flex-direction: column; gap: 8px; }

/* Cookie Consent */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); color: var(--white); padding: 15px 0; z-index: 9998; display: none; }
.cookie-consent.show { display: block; }
.cookie-consent .container { display: flex; align-items: center; justify-content: space-between; gap: 15px; flex-wrap: wrap; }
.cookie-consent p { font-size: 13px; margin: 0; }
.cookie-consent .btn { flex-shrink: 0; }

/* Live TV */
.live-tv-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); z-index: 9997; display: none; }
.live-tv-bar.show { display: block; }
.live-tv-bar .container { display: flex; align-items: center; padding: 8px 15px; }
.live-tv-bar .live-indicator { display: flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: 13px; text-transform: uppercase; margin-right: 15px; }
.live-tv-bar .live-indicator .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: blink 1s infinite; }
.live-tv-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 18px; }

/* Print Styles */
@media print {
    .top-bar, .main-nav, .breaking-news-bar, .site-footer, .back-to-top, .reading-progress,
    .share-buttons, .reaction-buttons, .comment-form, .ad-container, .sidebar-widget,
    .newsletter-widget, .search-modal, .live-tv-bar, .cookie-consent, .nav-right { display: none !important; }
    body { background: white; color: black; font-size: 12pt; }
    .container { max-width: 100%; padding: 0; }
    .single-news-header h1 { font-size: 24pt; }
    .news-content { font-size: 12pt; line-height: 1.6; }
    a { color: black !important; text-decoration: underline; }
    .news-card { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; }
    .hero-slide { height: auto; }
    .hero-slide img { max-height: 300px; }
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.animate-fadeIn { animation: fadeIn 0.5s ease; }
.animate-fadeInUp { animation: fadeInUp 0.5s ease; }
.animate-fadeInDown { animation: fadeInDown 0.5s ease; }
.stagger-children > * { opacity: 0; animation: fadeInUp 0.5s ease forwards; }
.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }

/* Responsive - Base Overrides */
@media (max-width: 1199.98px) {
    .container { max-width: 960px; }
    .hero-slide { height: 380px; }
    .hero-slide .hero-title { font-size: 24px; }
    .mega-menu-content { grid-template-columns: repeat(3, 1fr); }
    .news-card.featured .card-image img { height: 280px; }
    .news-card.featured .card-title { font-size: 18px; }
}

@media (max-width: 991.98px) {
    .top-bar .container { flex-wrap: wrap; }
    .hero-slide { height: 300px; }
    .hero-slide .hero-title { font-size: 20px; }
    .hero-side { flex-direction: row; height: 150px; margin-top: 10px; }
    .main-nav .container { position: relative; }
    .navbar-toggler { display: block; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; box-shadow: var(--shadow-lg); border-top: 2px solid var(--primary); max-height: 400px; overflow-y: auto; }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a { padding: 12px 20px; border-bottom: 1px solid var(--gray-200); }
    .nav-menu > li > a::after { display: none; }
    .dropdown-menu-custom { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; border: none; border-top: none; padding-left: 20px; display: none; }
    .nav-menu > li:hover .dropdown-menu-custom { display: block; }
    .mega-menu-content { position: static; grid-template-columns: repeat(2, 1fr); opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 15px; display: none; }
    .mega-menu:hover .mega-menu-content { display: grid; }
    .news-card.list-layout { flex-direction: column; }
    .news-card.list-layout .card-image { flex: none; }
    .news-card.list-layout .card-image img { height: 220px; }
    .header-ad { display: none; }
    .header-area .container { flex-direction: column; text-align: center; gap: 10px; }
    .header-date { text-align: center; }
    .single-news-header h1 { font-size: 26px; }
    .site-logo img { max-height: 45px; }
    .footer-widgets .col-lg-3 { margin-bottom: 30px; }
}

@media (max-width: 767.98px) {
    .top-bar-left .current-date { font-size: 12px; }
    .top-bar-right .social-icons a { width: 24px; height: 24px; font-size: 11px; }
    .hero-slide { height: 250px; }
    .hero-slide .hero-overlay { padding: 20px; }
    .hero-slide .hero-title { font-size: 18px; }
    .hero-slide .hero-meta { font-size: 12px; }
    .hero-side { flex-direction: column; height: auto; }
    .hero-side-item { min-height: 100px; }
    .section-title { font-size: 18px; }
    .news-card .card-image img { height: 200px; }
    .news-card.featured .card-image img { height: 220px; }
    .news-card.featured .card-title { font-size: 16px; }
    .news-card .card-title { font-size: 15px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr; }
    .back-to-top { width: 38px; height: 38px; font-size: 15px; bottom: 20px; right: 20px; }
    .author-box { flex-direction: column; align-items: center; text-align: center; }
    .search-modal .search-form input { font-size: 15px; padding: 12px 15px; }
    .breaking-label { padding: 0 12px; font-size: 11px; }
    .breaking-ticker ul li a { font-size: 13px; }
    .single-news-header h1 { font-size: 22px; }
    .news-content { font-size: 15px; }
    .comment-item.reply { margin-left: 30px; }
    .pagination .page-link { min-width: 32px; height: 32px; font-size: 12px; padding: 0 8px; }
}

@media (max-width: 575.98px) {
    .top-bar .container { padding: 0 10px; }
    .top-bar-left .current-date { font-size: 11px; }
    .top-bar-right .social-icons { gap: 4px; }
    .top-bar-right .social-icons a { width: 22px; height: 22px; font-size: 10px; }
    .hero-slide { height: 200px; }
    .hero-slide .hero-title { font-size: 16px; }
    .hero-slide .hero-category { font-size: 10px; }
    .hero-slider .slick-prev, .hero-slider .slick-next { width: 32px; height: 32px; font-size: 14px; }
    .hero-slider .slick-prev { left: 8px; }
    .hero-slider .slick-next { right: 8px; }
    .news-card .card-image img { height: 180px; }
    .news-card .card-body { padding: 12px; }
    .mini-news-item .mini-image { flex: 0 0 80px; }
    .mini-news-item .mini-image img { height: 55px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery-item img { height: 140px; }
    .social-follow { grid-template-columns: 1fr; }
    .prayer-times { grid-template-columns: 1fr; }
    .single-news-header h1 { font-size: 20px; }
    .news-content { font-size: 14px; }
    .auth-card { padding: 25px 20px; }
    .toast-container { top: 10px; right: 10px; left: 10px; }
    .toast { min-width: auto; max-width: none; }
    .notification-dropdown { width: 290px; right: -50px; }
    .site-logo .logo-text { font-size: 22px; }
    .section-title { font-size: 16px; }
    .footer-bottom { font-size: 12px; }
}
