/* CSS Variables */
:root {
    --accent: #F21517;
    --accent-hover: #d40f11;
    --navy: #001A56;
    --navy-light: #002a7a;
    --text: #444444;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e5e5e5;
    --max-width: 1300px;
    --header-height: auto;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-white);
    overflow-x: hidden;
}
.logo-area span{
    display: none;
}
.trending-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    opacity: 0;
}

/* Body max-width for ultra-wide screens */
@media (min-width: 1920px) {
    body {
        max-width: 100%;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent images from becoming too large on ultra-wide screens */
@media (min-width: 2560px) {
    img {
        max-width: 100%;
        height: auto;
    }
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input {
    font-family: inherit;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Ultra-wide screen adjustments */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
}

@media (min-width: 3840px) {
    .container {
        max-width: 2800px;
    }
}

@media (min-width: 7680px) {
    .container {
        max-width: 4000px;
    }
}

/* =============================================
   BREAKING NEWS BAR
   ============================================= */
.breaking-news-bar {
    background: #001A56;
    color: white;
    padding: 10px 0;
    overflow: hidden;
}

.breaking-news-bar .container {
    display: flex;
    align-items: center;
}

.breaking-label {
    background: var(--accent);
    padding: 6px 15px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border-radius: 3px;
}

.breaking-ticker-wrapper {
    flex: 1;
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
}

.breaking-ticker {
    display: flex;
    align-items: center;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.breaking-ticker span {
    margin-right: 40px;
    font-size: 15px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.breaking-ticker:hover {
    animation-play-state: paused;
}

/* =============================================
   BREAKING NEWS BAR - MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
    .breaking-news-bar {
        padding: 8px 0;
    }
    .logo-area span{
    display: block;
}
    
    .breaking-news-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .breaking-label {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .breaking-ticker-wrapper {
        margin: 0;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }
    
    .breaking-ticker {
        animation: none;
        flex-wrap: nowrap;
        gap: 0;
    }
    
    .breaking-ticker span {
        font-size: 13px;
        margin-right: 20px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* =============================================
   HEADER SECTION
   ============================================= */
.site-header {
    background: var(--bg-white);
    position: relative;
    z-index: 1000;
}

/* Header Top */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Header Ads Section */
.header-ads {
    flex-shrink: 0;
    float: left;
    width: 60%;
}

.ad-banner.dummy-ad {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ad-banner.dummy-ad .ad-content {
    background: white;
    border-radius: 6px;
    padding: 0;
    text-align: center;
}

.ad-banner.dummy-ad .ad-label {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.ad-banner.dummy-ad .ad-placeholder {
    border: 2px dashed #ddd;
    border-radius: 6px;
    padding: 20px 30px;
    background: #fafafa;
}

.ad-banner.dummy-ad .ad-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.ad-banner.dummy-ad .ad-subtext {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: block;
}

.logo {
    height: 70px;
    width: auto;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--navy);
    padding: 10px;
    background: var(--bg-gray);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--accent);
    color: white;
}

/* Responsive header */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
        .logo-area span{
    display: block;
}
    
    .logo {
        height: 50px;
    }
    
    .search-box {
        display: none;
    }
    
    .header-actions .subscribe-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
        .logo-area span{
    display: block;
}
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 8px;
    }
}

.search-box form {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background: var(--bg-gray);
    border-radius: 25px;
    padding: 5px 15px;
    transition: var(--transition);
}

.search-box form:focus-within {
    border-color: var(--navy);
}

.search-box input {
    border: none;
    background: transparent;
    padding: 8px 10px;
    outline: none;
    font-size: 15px;
    width: 200px;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    font-size: 1.2rem;
    padding: 5px;
    transition: var(--transition);
}

.search-box button:hover {
    color: var(--accent);
}

.banner-area img {
    border-radius: 4px;
    max-width: 100%;
}

/* Main Navigation */
.main-nav {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    margin-left: 0;
}

/* Mobile Navigation Styles */
@media (max-width: 992px) {
    .nav-inner {
        height: auto;
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .date-widget {
        order: 1;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .menu {
        display: none;
        order: 5;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        background: var(--bg-white);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: var(--shadow-md);
        align-items: flex-end;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu > li {
        width: 100%;
    }
    
    .menu > li > a {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
        text-align: right;
        justify-content: flex-end;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    
    .menu > li:hover .dropdown {
        display: block;
    }
    
    .header-actions {
        order: 3;
        margin-left: auto;
    }
    
    .subscribe-btn {
        display: none;
    }
}

.date-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: white;
}

.date-widget .day {
    font-size: 26px;
    color: var(--accent);
    line-height: 1;
}

.date-widget .month-year {
    font-size: 15px;
    color: var(--text-light);
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--navy);
    padding: 10px;
}

.menu {
    display: flex;
    align-items: center;
    position: relative;
}

.menu > li {
    position: static;
}

.menu > li > a {
    display: block;
    padding: 20px 15px;
    text-decoration: none;
    color: #001A56;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.menu > li > a:hover {
    color: white;
  background-color: red;
  padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 20px rgba(255,0,0,0.3);
    transition: all 0.3s ease;
}

.menu > li > a i {
    font-size: 12px;
    margin-left: 4px;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 0 0 5px 5px;
}

.menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: var(--bg-gray);
    color: var(--accent);
    padding-left: 25px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 15px;
}

.trending-badge {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.subscribe-btn {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.subscribe-btn:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
    padding: 0px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
}

.main-content.visible {
    opacity: 1;
    visibility: visible;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: zoomInOut 2s infinite;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Main Content Styles */

/* =============================================
   LANGUAGE SWITCHER (Inline in Breaking News Bar)
   ============================================= */
.language-switcher-inline {
    margin-right: 15px;
}

.language-switcher-inline #language-selector {
    padding: 6px 12px;
    background: inherit;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    min-width: 60px;
    border: none;
}

.language-switcher-inline #language-selector option {
    font-size: 13px;
    padding: 8px;
    background: inherit;
    color: white;
}

/* User Icon Button */
.user-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.user-icon-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.user-icon-btn i {
    font-size: 18px;
}

/* =============================================
   THEME TOGGLE
   ============================================= */
.theme-toggle-btn {
    background: none;
    border: none;
    color: #001A56;
    font-size: 20px;
    cursor: pointer;
    margin-left: 0px;
    transition: color 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.theme-toggle-btn:hover {
    color: red;
}
.side-nav-button:hover{
     color: red;
}
/* =============================================
   DARK MODE - Comprehensive Theme
   ============================================= */
body.dark-mode {
    background-color: #0f0f0f;
    color: #e0e0e0;
}

body.dark-mode .main-content {
    background-color: #0f0f0f;
}

/* Base Elements */
body.dark-mode .site-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

body.dark-mode .main-nav {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

body.dark-mode .breaking-news-bar {
    background-color: #1a1a1a;
    color: #fff;
    border-bottom: 1px solid #333;
}

body.dark-mode .breaking-ticker {
    color: #e0e0e0;
}

body.dark-mode .breaking-label {
    background: #e53935;
}

/* Header Elements */
body.dark-mode .menu > li > a {
    color: #e0e0e0;
}

body.dark-mode .menu > li > a:hover {
    background-color: #e53935;
    color: #fff;
}

body.dark-mode .subscribe-btn {
    background-color: #e53935;
    color: #fff;
}

body.dark-mode .subscribe-btn:hover {
    background-color: #c62828;
}

body.dark-mode .date-widget {
    color: #e0e0e0;
}

body.dark-mode .date-widget .month-year {
    color: #aaa;
}

body.dark-mode .search-box form {
    background: #2a2a2a;
    border-color: #444;
}

body.dark-mode .search-box input {
    color: #e0e0e0;
}

body.dark-mode .search-box input::placeholder {
    color: #888;
}

body.dark-mode .theme-toggle-btn {
    color: #e0e0e0;
}

body.dark-mode .theme-toggle-btn:hover {
    color: #e53935;
}

body.dark-mode .side-nav-button {
    color: #e0e0e0;
}

body.dark-mode .side-nav-button:hover {
    color: #e53935;
}

/* Language Switcher */
body.dark-mode .language-switcher-inline #language-selector {
    background: #2a2a2a;
    color: #e0e0e0;
    border-color: #444;
}

body.dark-mode .language-switcher-inline #language-selector option {
    background: #1a1a1a;
    color: #e0e0e0;
}

/* =============================================
   MEGA MENU DARK MODE
   ============================================= */
body.dark-mode .mega-menu {
    background: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.dark-mode .mega-card {
    background: #252525;
    border-color: #333;
}

body.dark-mode .mega-card:hover {
    background: #2a2a2a;
}

body.dark-mode .mega-card h3 {
    color: #e0e0e0;
}

body.dark-mode .mega-card p {
    color: #aaa;
}

/* =============================================
   SPOT SLIDER SECTION DARK MODE
   ============================================= */
body.dark-mode .spot-slider-section {
    background: #0f0f0f;
}

body.dark-mode .top-thumbs-container {
    background: #1a1a1a;
}

body.dark-mode .top-thumbs-header {
    background: #252525;
}

body.dark-mode .top-thumbs-title {
    color: #e0e0e0;
}

body.dark-mode .top-thumb-item {
    background: #1a1a1a;
}

body.dark-mode .top-thumb-title {
    color: #ccc;
}

body.dark-mode .top-thumb-item:hover .top-thumb-title,
body.dark-mode .top-thumb-item.active .top-thumb-title {
    color: #fff;
}

body.dark-mode .top-thumb-date {
    color: #888;
}

body.dark-mode .top-thumb-item:hover .top-thumb-date,
body.dark-mode .top-thumb-item.active .top-thumb-date {
    color: #aaa;
}

body.dark-mode .top-thumb-item:hover,
body.dark-mode .top-thumb-item.active {
    background: #252525;
}

body.dark-mode .slide-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
}

body.dark-mode .category-tag {
    background: #e53935;
}

body.dark-mode .category-tag:hover {
    background: #c62828;
}

body.dark-mode .author-avatar {
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .author-avatar:hover {
    border-color: #e53935;
}

/* =============================================
   TRENDING SECTION DARK MODE
   ============================================= */
body.dark-mode .trending-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

body.dark-mode .trending-card {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .trending-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

body.dark-mode .trending-card-title {
    color: #e0e0e0;
}

body.dark-mode .trending-card:hover .trending-card-title {
    color: #fff;
}

body.dark-mode .trending-meta {
    color: #888;
}

body.dark-mode .trending-card:hover .trending-meta {
    color: #aaa;
}

body.dark-mode .trending-category {
    background: #e53935;
}

body.dark-mode .trending-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

body.dark-mode .trending-nav-btn {
    background: #1a1a1a;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .trending-nav-btn:hover {
    background: #e53935;
    border-color: #e53935;
}

/* =============================================
   NEWS SECTIONS DARK MODE
   ============================================= */
body.dark-mode .news-sections {
    background: #0f0f0f;
}

body.dark-mode .news-column {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .column-header {
    background: #1a1a1a;
    border-bottom-color: #333;
}

body.dark-mode .column-title {
    color: #e0e0e0;
}

body.dark-mode .news-article {
    border-bottom-color: #333;
}

body.dark-mode .news-article:hover {
    background: #252525;
}

body.dark-mode .article-title {
    color: #e0e0e0;
}

body.dark-mode .article-title a:hover {
    color: #e53935;
}

body.dark-mode .article-date {
    color: #888;
}

body.dark-mode .category-tag:not(.premium-badge) {
    color: #e53935;
    background: rgba(229, 57, 53, 0.1);
}

body.dark-mode .premium-badge {
    background: #e53935;
}

/* =============================================
   VIDEO SECTION DARK MODE
   ============================================= */
body.dark-mode .video-section {
    background: #0a0a0a;
}

body.dark-mode .video-title {
    color: #e0e0e0;
}

body.dark-mode .video-card-main {
    background: #1a1a1a;
}

body.dark-mode .video-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 50%, transparent 100%);
}

body.dark-mode .video-info {
    background: linear-gradient(to bottom, #1a1a1a 0%, #151515 100%);
}

body.dark-mode .video-card-title {
    color: #e0e0e0;
}

body.dark-mode .video-card-title a:hover {
    color: #e53935;
}

body.dark-mode .video-meta {
    color: #888;
}

body.dark-mode .video-author span {
    color: #e0e0e0;
}

body.dark-mode .video-nav-btn {
    background: #1a1a1a;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .video-nav-btn:hover {
    background: #e53935;
    border-color: #e53935;
}

body.dark-mode .video-sidebar {
    background: #1a1a1a;
}

body.dark-mode .sidebar-title {
    color: #e0e0e0;
    border-bottom-color: #333;
}

body.dark-mode .video-thumb-item {
    background: #252525;
}

body.dark-mode .video-thumb-item:hover {
    background: #333;
}

body.dark-mode .video-thumb-item.active {
    background: rgba(229, 57, 53, 0.15);
    border-color: #e53935;
}

body.dark-mode .thumb-title {
    color: #e0e0e0;
}

body.dark-mode .video-thumb-item:hover .thumb-title {
    color: #e53935;
}

body.dark-mode .thumb-views {
    color: #888;
}

/* =============================================
   BLOCK WRAPPER (More News, Reviews, Newsletter) DARK MODE
   ============================================= */
body.dark-mode .block-wrapper {
    background: #0f0f0f;
}

body.dark-mode .more-news,
body.dark-mode .sidebar {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .block-title {
    color: #e0e0e0;
}

body.dark-mode .block-title::before {
    background: #e53935;
}

body.dark-mode .block-title::after {
    background: #333;
}

body.dark-mode .post-block-style {
    background: #252525;
    border-radius: 8px;
    padding: 12px;
}

body.dark-mode .post-content .post-title {
    color: #e0e0e0;
}

body.dark-mode .post-content .post-title a:hover {
    color: #e53935;
}

body.dark-mode .post-content .post-meta {
    color: #888;
}

body.dark-mode .post-content p {
    color: #aaa;
}

body.dark-mode .post-cat {
    background: #e53935;
}

body.dark-mode .post-cat:hover {
    background: #c62828;
}

body.dark-mode .list-post > li {
    border-bottom-color: #333;
}

body.dark-mode .ts-newsletter {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333;
}

body.dark-mode .newsletter-introtext h4 {
    color: #fff;
}

body.dark-mode .newsletter-introtext p {
    color: #aaa;
}

body.dark-mode .newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .newsletter-form .form-control::placeholder {
    color: #888;
}

body.dark-mode .newsletter-form .btn-primary {
    background: #e53935;
}

body.dark-mode .newsletter-form .btn-primary:hover {
    background: #c62828;
}

/* =============================================
   LOAD MORE BUTTON DARK MODE
   ============================================= */
body.dark-mode .load-more-container {
    background: #0f0f0f;
}

body.dark-mode .load-more-btn {
    background: #e53935;
}

body.dark-mode .load-more-btn:hover {
    background: #c62828;
}

/* =============================================
   AQI WIDGET DARK MODE
   ============================================= */
body.dark-mode .aqi-widget {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .aqi-title {
    color: #e0e0e0;
}

body.dark-mode .aqi-header {
    border-bottom-color: #333;
}

body.dark-mode .aqi-value {
    color: #e0e0e0;
}

body.dark-mode .aqi-parameter {
    background: #252525;
}

body.dark-mode .parameter-label {
    color: #888;
}

body.dark-mode .parameter-value {
    color: #e0e0e0;
}

body.dark-mode .aqi-scale {
    background: #252525;
}

body.dark-mode .detect-location-btn {
    background: linear-gradient(135deg, #333 0%, #444 100%);
}

body.dark-mode .detect-location-btn:hover {
    background: linear-gradient(135deg, #444 0%, #555 100%);
}

body.dark-mode .location-search input {
    background: #252525;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .location-search input::placeholder {
    color: #888;
}

body.dark-mode .search-city-btn {
    background: #e53935;
}

body.dark-mode .location-status.success {
    background: #1b3a1b;
    color: #8bc34a;
    border-color: #2e7d32;
}

body.dark-mode .location-status.error {
    background: #3a1b1b;
    color: #ef5350;
    border-color: #c62828;
}

body.dark-mode .location-status.warning {
    background: #3a351b;
    color: #ffc107;
    border-color: #ffa000;
}

body.dark-mode .location-status.info {
    background: #1b2a3a;
    color: #42a5f5;
    border-color: #1976d2;
}

/* =============================================
   HOROSCOPE SECTION DARK MODE
   ============================================= */
body.dark-mode .horoscope-container {
    border-top-color: #333;
}

body.dark-mode .horoscope-header {
    border-bottom-color: #333;
}

body.dark-mode .horoscope-title {
    color: #e0e0e0;
}

body.dark-mode .horoscope-nav-btn {
    background: #252525;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .horoscope-nav-btn:hover {
    background: #e53935;
    border-color: #e53935;
}

body.dark-mode .horoscope-card {
    background: #1a1a1a;
    border-color: #333;
}

body.dark-mode .horoscope-card-body {
    background: transparent;
}

body.dark-mode .horoscope-section-title {
    color: #e0e0e0;
}

body.dark-mode .horoscope-content {
    color: #aaa;
}

body.dark-mode .horoscope-lucky-number {
    background: #252525;
}

body.dark-mode .lucky-number-label {
    color: #888;
}

body.dark-mode .lucky-number-value {
    color: #e53935;
}

body.dark-mode .horoscope-card-footer {
    background: #252525;
    border-top-color: #333;
}

body.dark-mode .horoscope-compatibility {
    color: #888;
}

/* =============================================
   SPORTS SECTION DARK MODE
   ============================================= */
body.dark-mode .sports-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

body.dark-mode .sports-title {
    color: #fff;
}

body.dark-mode .sports-article {
    background: #1a1a1a;
    border-color: #333;
}

body.dark-mode .article-title {
    color: #e0e0e0;
}

body.dark-mode .article-title a:hover {
    color: #e53935;
}

body.dark-mode .article-summary {
    color: #aaa;
}

body.dark-mode .sports-article:hover .article-summary {
    color: #ccc;
}

body.dark-mode .article-date {
    color: #888;
}

body.dark-mode .sports-article:hover .article-date {
    color: #e53935;
}

/* =============================================
   FOOTER DARK MODE
   ============================================= */
body.dark-mode .site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border-top: 1px solid #333;
}

body.dark-mode .footer-main {
    border-bottom: 1px solid #333;
}

body.dark-mode .footer-description {
    color: #aaa;
}

body.dark-mode .footer-title {
    color: #e0e0e0;
}

body.dark-mode .footer-links a {
    color: #aaa;
}

body.dark-mode .footer-links a:hover {
    color: #fff;
}

body.dark-mode .footer-social .social-icon {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-social .social-icon:hover {
    background: #e53935;
}

body.dark-mode .footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border-color: #333;
}

body.dark-mode .newsletter-text {
    color: #aaa;
}

body.dark-mode .newsletter-form input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .newsletter-form input[type="email"]::placeholder {
    color: #888;
}

body.dark-mode .submit-btn {
    background: #e53935;
}

body.dark-mode .submit-btn:hover {
    background: #c62828;
}

body.dark-mode .footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top-color: #333;
}

body.dark-mode .copyright p {
    color: #888;
}

body.dark-mode .copyright a {
    color: #e53935;
}

body.dark-mode .legal-links a {
    color: #888;
}

body.dark-mode .legal-links a:hover {
    color: #fff;
}

body.dark-mode .legal-links .separator {
    color: #444;
}

/* =============================================
   SIDE NAVIGATION DARK MODE
   ============================================= */
body.dark-mode .side-nav {
    background: #0a0a0a;
}

body.dark-mode .side-nav-description {
    color: #aaa;
}

body.dark-mode .sub-menu li a {
    color: #e0e0e0;
}

body.dark-mode .sub-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .side-nav-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

body.dark-mode .side-nav-close {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .side-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =============================================
   CATEGORY CARDS DARK MODE
   ============================================= */
body.dark-mode .category-card {
    background: #1a1a1a;
    border-color: #333;
}

body.dark-mode .category-badge a {
    background: #e53935;
}

body.dark-mode .category-badge a:hover {
    background: #c62828;
}

body.dark-mode .category-content a {
    color: #e0e0e0;
}

body.dark-mode .category-content a:hover {
    color: #e53935;
}

body.dark-mode .category-slider-btn {
    background: #1a1a1a;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .category-slider-btn:hover {
    background: #e53935;
    border-color: #e53935;
}

/* =============================================
   HERO SLIDER (Breaking News) DARK MODE
   ============================================= */
body.dark-mode .hero__title {
    background: #1a1a1a;
}

body.dark-mode .hero__title-misc {
    color: #aaa;
}

body.dark-mode .hero__title-misc.animate {
    color: #e0e0e0;
}

body.dark-mode .section-header .section-title {
    color: #fff;
}

/* =============================================
   REVIEW STARS DARK MODE
   ============================================= */
body.dark-mode .review-stars .fa-star,
body.dark-mode .review-stars .fa-star-half-o {
    color: #ffc107;
}

body.dark-mode .review-stars .fa-star-o {
    color: #555;
}

/* =============================================
   SCROLLBAR DARK MODE
   ============================================= */
body.dark-mode ::-webkit-scrollbar {
    width: 8px;
}

body.dark-mode ::-webkit-scrollbar-track {
    background: #1a1a1a;
}

body.dark-mode ::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

body.dark-mode ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* =============================================
   PRELOADER DARK MODE
   ============================================= */
body.dark-mode .preloader {
    background-color: #0a0a0a;
}

/* =============================================
   PAGINATION DARK MODE
   ============================================= */
body.dark-mode .trending-pagination .swiper-pagination-bullet,
body.dark-mode .video-pagination .swiper-pagination-bullet,
body.dark-mode .category-slider-pagination .swiper-pagination-bullet {
    background: #444;
}

body.dark-mode .trending-pagination .swiper-pagination-bullet-active,
body.dark-mode .video-pagination .swiper-pagination-bullet-active,
body.dark-mode .category-slider-pagination .swiper-pagination-bullet-active {
    background: #e53935;
}

/* =============================================
   GAP ELEMENTS DARK MODE
   ============================================= */
body.dark-mode .gap-20,
body.dark-mode .gap-30 {
    background: transparent;
}

/* =============================================
   LANGUAGE SELECTOR DARK MODE
   ============================================= */
body.dark-mode .language-switcher-inline select {
    background: #1a1a1a;
    color: #e0e0e0;
    border-color: #444;
}

/* =============================================
   IMAGE OVERLAY EFFECTS DARK MODE
   ============================================= */
body.dark-mode .slide-overlay,
body.dark-mode .trending-overlay,
body.dark-mode .video-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

/* =============================================
   COMPATIBILITY SIGNS DARK MODE
   ============================================= */
body.dark-mode .compatibility-sign {
    background: #252525;
    color: #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.dark-mode .compatibility-sign:hover {
    background: #e53935;
    color: #fff;
}

/* =============================================
   SWIPER NAVIGATION DARK MODE
   ============================================= */
body.dark-mode .swiper-button-next,
body.dark-mode .swiper-button-prev {
    color: #e0e0e0;
}

body.dark-mode .swiper-button-next:hover,
body.dark-mode .swiper-button-prev:hover {
    color: #e53935;
}

/* =============================================
   VIDEO THUMBNAIL DARK MODE
   ============================================= */
body.dark-mode .thumb-duration {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

body.dark-mode .thumb-play-icon {
    background: rgba(229, 57, 53, 0.9);
}

/* =============================================
   PLAY BUTTON DARK MODE
   ============================================= */
body.dark-mode .play-button {
    background: rgba(229, 57, 53, 0.95);
}

body.dark-mode .play-button:hover {
    background: rgba(229, 57, 53, 1);
}

/* =============================================
   SIDE NAVIGATION
   ============================================= */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.side-nav-button {
    background: none;
    border: none;
    color: #001A56;
    font-size: 20px;
    cursor: pointer;
    margin-left: 0px;
    transition: color 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

/* Side Navigation with Push Animation */
.side-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.side-nav-open {
    background-color: #DFE0E1;
}

body.side-nav-open .site-header {
    background-color: white;
}

.side-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #001A56;
    color: white;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.side-nav.active {
    transform: translateX(300px);
}

body.side-nav-open .side-nav-overlay {
    opacity: 1;
    visibility: visible;
}

.side-nav-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.side-nav-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color:white !important
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.linkedin {
    background: #0077b5;
}

/* Side Nav Close Button */
.side-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.side-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* =============================================
   DIVIDER HEADINGS
   ============================================= */
.rivax-divider-heading-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.rivax-divider-heading {
    display: inline-block;
    position: relative;
}

.divider-style-4 .title,
.divider-style-7 .title {
    margin: 0 20px;
    position: relative;
    z-index: 2;
}

.divider-style-4 .title h4,
.divider-style-7 .title h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider-style-4 .divider,
.divider-style-7 .divider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.divider-style-4 .divider-1 {
    left: -40px;
}

.divider-style-4 .divider-2 {
    left: -10px;
}

.divider-style-4 .divider-3 {
    right: -10px;
}

.divider-style-4 .divider-4 {
    right: -40px;
}

.divider-style-7 .divider-1 {
    left: -35px;
}

.divider-style-7 .divider-2 {
    left: -5px;
}

.divider-style-7 .divider-3 {
    right: -5px;
}

.divider-style-7 .divider-4 {
    right: -35px;
}

/* =============================================
   POST CAROUSEL STYLES
   ============================================= */
.rivax-posts-container {
    position: relative;
}

.rivax-posts-wrapper.layout-carousel {
    position: relative;
}

.rivax-posts-carousel-wrapper {
    position: relative;
}

.rivax-posts-carousel-wrapper .swiper {
    overflow: visible;
}

.post-item {
    height: auto;
}

.post-wrapper {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.post-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Image wrapper for picks */
.image-outer-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-wrapper:hover .image-wrapper img {
    transform: scale(1.05);
}

.rivax-position-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content wrapper */
.content-wrapper {
    padding: 20px;
    position: relative;
}

.post-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 200px;
}

.post-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--accent);
}

.title-animation-underline-break {
    position: relative;
}

.title-animation-underline-break::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.post-wrapper:hover .title-animation-underline-break::after {
    width: 100%;
}

/* Meta wrapper */
.meta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-light);
}

.author-meta .by {
    opacity: 0.7;
    margin-right: 5px;
}

.author-meta a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}

.author-meta a:hover {
    color: var(--accent-hover);
}

/* Date outside image for other news */
.date-in-out-image {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.date-in-out-image .day {
    display: block;
    font-size: 18px;
    line-height: 1;
}

.date-in-out-image .month {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Carousel navigation */
.carousel-nav-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-nav-wrapper a {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    font-size: 20px;
}

.carousel-nav-wrapper a:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.carousel-nav-prev {
    margin-left: -25px;
}

.carousel-nav-next {
    margin-right: -25px;
}

/* =============================================
   PICKS SECTION
   ============================================= */
.picks-section {
    padding: 60px 0;
    background: var(--bg-gray);
}

/* Swiper handles the layout */

.picks-section .post-item {
    flex: 0 0 300px;
    min-width: 300px;
}

/* =============================================
   OTHER NEWS SECTION
   ============================================= */
.other-news-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.other-news-section .rivax-posts-carousel-wrapper .swiper-wrapper {
    display: flex;
    gap: 15px;
}

.other-news-section .post-item {
    flex: 0 0 250px;
    min-width: 250px;
}

.other-news-section .post-wrapper {
    position: relative;
    padding-top: 60px; /* Space for date badge */
}

/* =============================================
   SPOT SLIDER SECTION
   ============================================= */
.spot-slider-section {
    padding: 30px 0 20px 0;
    background: var(--bg-gray);
    position: relative;
    height: 80vh;
    overflow: auto;
}
#top-slider {
    position: absolute !important;
    width: 72% !important;
    margin-right: 0 !important;
    height: 80vh;
}

.spot-slider-section .container {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.spot-slider {
    flex: 1;
    min-width: 0;
}

.breaking-new {
    width: 300px;
    flex-shrink: 0;
}

/* Responsive spot slider - side by side on desktop, stack on mobile */
@media (max-width: 1200px) {
    .spot-slider-section .container {
        flex-wrap: wrap;
    }
    
    .spot-slider {
        width: 100%;
        order: 1;
    }
    
    .breaking-new {
        width: 100%;
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .spot-slider-section .container {
        flex-direction: column;
        gap: 15px;
    }
        .logo-area span{
    display: block;
}
    
    .spot-slider,
    .breaking-new {
        width: 100%;
    }
    
    .breaking-new {
        max-width: 100%;
        margin: 0;
    }
}

@media (min-width: 1920px) {
    .spot-slider-section .container {
        max-width: 1600px;
    }
}

/* Main Slider Wrapper */
.main-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Top Thumbnail Navigation */
.top-thumbs-container {
    display: flex;
    flex-direction: column;
    background: inherit;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    z-index: 999;
    padding: 10px;
    width: 20%;
    right: 25%;
}

/* Show thumbnails on tablet (768px and up) - hide only on mobile */
@media (max-width: 767px) {
    .top-thumbs-container {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: block !important;
}
   .logo-area {
    display: flex;
    align-items: center;
    gap: 500px !important;
}
    .mobile-menu-toggle {
        display: none !important;
        font-size: 1.4rem;
        padding: 8px 12px;
    }
    .spot-slider-section .container {
    display: block !important;
    gap: 10px;
    align-items: stretch;
    float: left !important;
    width: 100%;
}
#top-slider {
    position: absolute !important;
    width: 96% !important;
    margin-right: 0 !important;
    height: 80vh;
}
.logo {
        height: 50px !important;
    }

@media (max-width: 768px) {
    .spot-slider-section {
        padding: 20px 0;
        min-height: auto;
    }
}
@media (max-width: 1024px) {
    .spot-slider-section {
        padding: 25px 0;
    }
}

   
}

@media (min-width: 768px) and (max-width: 1200px) {
    .top-thumbs-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 8px;
    }
        #top-slider {
        position: absolute !important;
        width: 100% !important;
        margin-right: 0 !important;
        height: 50vh;
    }
    .breaking-new {
    top: 65% !important;
}
    .news-sections {
        padding: 0;
        float: left !important;
        width: 100%;
    }
    .spot-slider-section {
        padding: 20px 0;
        background: var(--bg-gray);
        position: relative;
        min-height: auto;
        overflow: hidden;
        float: left;
        width: 100%;
        height: 100vh !important;
    }
    
    .spot-slider-section .container {
        flex-direction: column;
        display: block !important;
        float: left;
        width: 100%;
        height: 80vh !important;
    }
        .spot-slider, .breaking-new {
        width: 100%;
        float: left;
        position: relative;
    }
    .top-thumbs-container {
    display: none !important;
    flex-direction: column !important;
    background: inherit;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    z-index: 999;
    padding: 10px !important;
    width: 40%;
    right: 0%;
    border: none !important;
}
.breaking-ticker span {
        font-size: 15px !important;
        margin-right: 25px;
    }
    .trending-section {
        padding: 35px 0;
        float: left !important;
        width: 100%;
        position: relative !important;
    }

    .top-thumbs-header {
        flex-shrink: 0;
        padding: 8px 15px;
    }
    
    .top-thumbs-title {
        font-size: 12px;
    }
    
    .top-thumbs-progress-bar {
        display: none;
    }
    
    .top-thumbs-list {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 5px;
        max-height: none;
        flex-wrap: nowrap;
        scrollbar-width: thin;
        scrollbar-color: var(--accent) rgba(255,255,255,0.1);
    }
    
    .top-thumbs-list::-webkit-scrollbar {
        height: 4px;
        display: block;
    }
    
    .top-thumbs-list::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        border-radius: 2px;
    }
    
    .top-thumbs-list::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 2px;
    }
    
    .top-thumb-item {
        flex: 0 0 auto;
        width: 180px;
        min-width: 180px;
        max-width: 180px;
    }
    
    .top-thumb-content {
        padding: 12px;
        gap: 8px;
    }
    
    .top-thumb-title {
        font-size: 12px;
    }
}

@media only screen and (max-width: 1180px) and (min-width: 820px) {
    .menu {
    display: none !important;
    align-items: center;
    position: relative;
}
    .news-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .logo-area {
        display: flex;
        align-items: center;
        gap: 150px !important;
    }
    .header-top {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
}




@media (min-width: 1201px) {
    .top-thumbs-container {
        display: flex;
        flex-direction: column;
    }
    
    .top-thumbs-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        overflow-x: visible;
        overflow-y: visible;
        scroll-snap-type: none;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-height: none;
        padding: 5px 0;
    }
    
    .top-thumbs-list::-webkit-scrollbar {
        display: none;
    }
    
    .top-thumb-item {
        flex: 0 0 auto;
        width: 100%;
        min-width: 220px;
        max-width: 280px;
        scroll-snap-align: none;
        cursor: pointer;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        backdrop-filter: blur(30px);
        position: relative;
        overflow: hidden;
        transform-origin: center center;
    }
    
    .top-thumb-content {
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: relative;
        z-index: 1;
    }
    
    .top-thumb-number {
        font-size: 12px;
        font-weight: 700;
        color: var(--accent);
        opacity: 0.7;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .top-thumb-title {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
        color: rgba(255,255,255,0.85);
        margin: 0;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .top-thumb-date {
        font-size: 11px;
        color: rgba(255,255,255,0.5);
        transition: all 0.3s ease;
    }
}

.top-thumbs-header {
    padding: 12px 20px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.top-thumbs-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-thumbs-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 14px;
    background: var(--accent);
    border-radius: 2px;
}

.top-thumbs-progress-bar {
    width: 100px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.top-thumbs-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 5s linear;
}

/* Thumbnail styles - no entrance animation */
.top-thumb-item {
    opacity: 1;
}

/* Hover state */
.top-thumb-item:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Active state */
.top-thumb-item.active {
    background: rgba(255,255,255,0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* Active pulse animation */
@keyframes activePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 21, 23, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(242, 21, 23, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 21, 23, 0);
    }
}

.top-thumb-item.active {
    animation: activePulse 2s ease-in-out infinite;
    opacity: 1;
}

/* Click feedback animation */
.top-thumb-item.clicked {
    transform: translateX(3px);
}

/* Animated border on hover */
.top-thumb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s ease;
    transform-origin: top;
}

.top-thumb-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.top-thumb-item.active::before {
    opacity: 1;
    transform: scaleY(1);
}

.top-thumb-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.top-thumb-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

.top-thumb-item:hover .top-thumb-number {
    opacity: 1;
}

.top-thumb-item.active .top-thumb-number {
    opacity: 1;
}

.top-thumb-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255,255,255,0.85);
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Title style on hover */
.top-thumb-item:hover .top-thumb-title {
    color: white;
}

.top-thumb-item.active .top-thumb-title,
.top-thumb-item:hover .top-thumb-title {
    color: white;
}

/* Underline animation for title */
.top-thumb-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.top-thumb-item:hover .top-thumb-title::after,
.top-thumb-item.active .top-thumb-title::after {
    width: 30px;
}

.top-thumb-date {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.top-thumb-item:hover .top-thumb-date,
.top-thumb-item.active .top-thumb-date {
    color: rgba(255,255,255,0.8);
}

/* Ripple effect on click */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.top-thumb-item .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Main Slider */
.main-slider {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.main-slider .swiper-wrapper {
    height: 100%;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease;
}

.main-slider .swiper-slide-active .slide-image img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
    top: 10%;
}

.main-slider .swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

.slide-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.4s;
}

.main-slider .swiper-slide-active .slide-meta-top {
    opacity: 1;
    transform: translateX(0);
}

.category-tag {
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.category-tag:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.date-after-category {
    font-size: 14px;
    opacity: 0.9;
}

.slide-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
    max-width: 400px;
}

.main-slider .swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title a {
    color: white;
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to right, #F2EC22 0%, #F2EC22 100%);
    background-size: 0% 3px;
    background-repeat: no-repeat;
    background-position: left bottom 2px;
    transition: background-size 0.4s ease, color 0.3s ease;
}

.slide-title a:hover {
    color: #F2EC22;
    background-size: 100% 3px;
}

.slide-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
}

.main-slider .swiper-slide-active .slide-meta {
    opacity: 1;
    transform: translateY(0);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.author-avatar:hover {
    border-color: var(--accent);
    transform: scale(1.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    font-size: 14px;
}

.author-details .by {
    opacity: 0.7;
    margin-right: 5px;
}

.author-details a {
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

.author-details a:hover {
    color: #F2EC22;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.post-date i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.post-date .time {
    opacity: 0.7;
}

.excerpt {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.7s;
    margin-bottom: 0;
    max-width: 400px;
}

.main-slider .swiper-slide-active .excerpt {
    opacity: 0.9;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet and below */
@media (max-width: 768px) {
    .main-slider {
        height: 400px;
    }
    
    .slide-text {
        padding: 20px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .main-slider {
        height: 320px;
    }
    .logo-area {
    display: flex;
    align-items: center;
    gap: 200px !important;
}
    
    .slide-text {
        padding: 15px;
    }
    
    .slide-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .slide-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .category-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .date-after-category {
        font-size: 11px;
    }
    
    .slide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .excerpt {
        display: none;
    }
}


@-webkit-keyframes shrink {
  0% {
    color: green;
  }
  100% {
    color: grey;
  }
}
@keyframes shrink {
  0% {
    color: green;
  }
  100% {
    color: grey;
  }
}
@-webkit-keyframes grow {
  0% {
    color: grey;
  }
  100% {
    color: green;
  }
}
@keyframes grow {
  0% {
    color: grey;
  }
  100% {
    color: green;
  }
}
/* $. Classes
\*----------------------------------------------------------------*/
.animate {
  transform: translate3d(0, 0, 0);
  perspective: 1000;
  filter: blur(0);
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transform-origin: center left;
}

.animate--shrink, .hero__title .slick-current > span {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: shrink;
          animation-name: shrink;
  -webkit-animation-timing-function: "linear";
          animation-timing-function: "linear";
}

.animate--grow, .no-js .hero__title .slick-dupe:nth-child(2) > span, .hero__title .slick-current + .slick-slide > span {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: "linear";
          animation-timing-function: "linear";
  -webkit-animation-name: grow;
          animation-name: grow;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: pan-y;
  tap-highlight-color: transparent;
  padding-top: 20px;
  /* margin-top: 40px;
  height: 80vh; */
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 10px 0px 0px 0px;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 0;
  outline: none;
}
.slick-vertical .slick-slide::-moz-selection {
  outline: none !important;
  border: 0 !important;
  box-shadow: none;
}
.slick-vertical .slick-slide:focus, .slick-vertical .slick-slide:active, .slick-vertical .slick-slide::selection {
  outline: none !important;
  border: 0 !important;
  box-shadow: none;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-current {
  position: relative;
}

.hero__title .slick-slide {
  overflow: hidden;
  padding: 20px 0;
}

.hero__title [aria-hidden] {
  transition: 1s;
}

/* 
.hero__title [aria-hidden="false"]{
    opacity: 1;
}

.hero__title [aria-hidden="true"] {
    opacity: 0;
}
 */
.hero__title .slick-current > span {
  box-sizing: border-box;
  display: block;
}

.no-js .hero__title .slick-dupe:nth-child(2) > span {
  padding: 1em;
}

.hero__title-misc {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: grey;
}


.section-header h3{
    background: var(--accent);
    padding: 6px 15px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border-radius: 3px;
    max-width: 200px;
    color: white;
}

/* =============================================
   CATEGORY SECTION
   ============================================= */
.category-container {
    padding: 40px 0;
    background: var(--bg-gray);
    max-width: 90%;
    margin: 0 auto;
}

.category-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.category-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .category-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .category-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.category-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image-wrapper {
    position: relative;
    overflow: hidden;
}

.category-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 26, 86, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-image-wrapper::after {
    opacity: 1;
}

.category-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image {
    transform: scale(1.1) rotate(1deg);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.category-badge a {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(242, 21, 23, 0.3);
}

.category-badge a:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(242, 21, 23, 0.4);
}

.category-card:hover .category-badge {
    transform: translateY(-5px);
}

.category-content {
    padding: 20px;
    position: relative;
    transition: all 0.4s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover .category-content::before {
    transform: scaleX(1);
}

.category-content a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.category-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.category-content a:hover {
    color: var(--accent);
}

.category-content a:hover::after {
    width: 100%;
}

.category-content p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    transition: all 0.4s ease;
}

.category-card:hover .category-content p {
    color: var(--navy);
}

/* Icon overlay animation */
.category-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.category-icon-overlay i {
    font-size: 24px;
    color: var(--accent);
}

.category-card:hover .category-icon-overlay {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Pulse effect on badge */
@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 21, 23, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(242, 21, 23, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 21, 23, 0);
    }
}

.category-badge a {
    animation: none;
}

.category-card:hover .category-badge a {
    animation: badgePulse 2s ease-in-out infinite;
}

/* Shimmer effect on hover */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.category-card:hover::after {
    left: 150%;
    transition: left 0.7s ease;
}

/* =============================================
   CATEGORY SLIDER SECTION
   ============================================= */
.category-slider-section {
    padding: 40px 0;
    background: var(--bg-gray);
}

.category-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.category-slider-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.category-slider-title i {
    font-size: 24px;
    color: var(--accent);
}

.category-slider-nav {
    display: flex;
    gap: 10px;
}

.category-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--navy);
}

.category-slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: scale(1.1);
}

.category-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

.category-slider .swiper-wrapper {
    display: flex;
}

.category-slider .swiper-slide {
    flex: 0 0 calc(25% - 15px);
    margin-right: 20px;
    height: auto;
}

.category-slider .swiper-slide .category-card {
    opacity: 0;
    animation: slideInUp 0.5s ease forwards;
    height: 100%;
    min-height: 200px;
}

@media (max-width: 1200px) {
    .category-slider .swiper-slide {
        flex: 0 0 calc(33.33% - 14px);
    }
}

@media (max-width: 900px) {
    .category-slider .swiper-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .category-slider .swiper-slide {
        flex: 0 0 calc(100% - 0px);
    }
}

.category-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.category-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.category-slider-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Slide animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-slider .swiper-slide .category-card {
    opacity: 0;
    animation: slideInUp 0.5s ease forwards;
}

.category-slider .swiper-slide-active .category-card,
.category-slider .swiper-slide-next .category-card {
    opacity: 1;
}

/* =============================================
   NEW SECTIONS
   ============================================= */
.main-new {
    display: flex;
}

.main-new-left {
    align-self: flex-start;
}

.new-card .title-decoration {
    font-weight: bold;
    color: red;
}

/* =============================================
   SUB MENU IN SIDE NAVIGATION
   ============================================= */
.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 5px 0;
    margin: 0;
}

.sub-menu li {
    margin: 0;
}

.sub-menu li a {
    display: block;
    padding: 5px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sub-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* =============================================
   MEGA MENU
   ============================================= */
/* MEGA MENU - Unique menu for each category */

/* Make menu the positioning context for centering mega menus */
.menu {
    display: flex;
    align-items: center;
    position: relative;
}

/* Position the mega-menu absolutely within the menu container */
.has-mega {
    position: static;
}

/* Position the mega-menu - centered relative to menu container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    background: #f0f4ff;
    padding: 5px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    width: 1000px;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
}

/* Show mega-menu when hovering on the li parent - instant appear, no slide */
.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Animated border gradient on mega menu */
.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, #F21517, #001A56, #F21517); */
    background-size: 200% 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* CARDS */
.mega-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: cardFadeInUp 0.4s ease-out backwards;
    text-decoration: none;
    color: inherit;
}

.mega-card:nth-child(1) { animation-delay: 0.05s; }
.mega-card:nth-child(2) { animation-delay: 0.1s; }
.mega-card:nth-child(3) { animation-delay: 0.15s; }
.mega-card:nth-child(4) { animation-delay: 0.2s; }

@keyframes cardFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) scale(1.02);
}

/* Animated border on card hover */
.mega-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F21517 0%, #001A56 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.mega-card:hover::before {
    transform: scaleY(1);
}

.mega-card img {
    width: 100%;
    border-radius: 6px;
    flex-shrink: 0;
    object-fit: cover;
    min-height: 120px;
    transition: all 0.4s ease;
}

.mega-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mega-card h3 {
    margin: 10px 0 6px;
    font-size: 16px;
    color: #111;
    flex-shrink: 0;
    transition: color 0.3s ease;
    position: relative;
}

/* Underline animation on h3 hover */
.mega-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F21517;
    transition: width 0.3s ease;
}

.mega-card:hover h3 {
    color: #F21517;
}

.mega-card:hover h3::after {
    width: 40px;
}

.mega-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.mega-card:hover p {
    color: #333;
}

/* Shimmer effect on card hover */
.mega-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.mega-card:hover::after {
    left: 150%;
    transition: left 0.6s ease;
}

/* =============================================
   NEWS SECTIONS - Three Column Layout
   ============================================= */
.news-sections {
    padding: 0;
    background: var(--bg-gray);
    overflow: hidden;
}

.news-sections .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

.news-row {
    display: flex;
    gap: 10px;
    margin: 0;
}

/* Column Entrance Animations */
.news-column {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    opacity: 0;
}

/* Left column - slide in from left */
.news-column:nth-child(1) {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.1s;
}

/* Middle column - slide up from bottom */
.news-column:nth-child(2) {
    animation: slideInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

/* Right column - slide in from right */
.news-column:nth-child(3) {
    animation: slideInRight 0.6s ease forwards;
    animation-delay: 0.5s;
}

/* Entrance Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered article animations */
.news-column:nth-child(1) .news-article,
.news-column:nth-child(2) .news-article,
.news-column:nth-child(3) .news-article {
    opacity: 0;
    transform: translateY(20px);
}

/* Stagger articles within each column */
.news-column:nth-child(1) .news-article {
    animation: articleFadeInUp 0.5s ease forwards;
}

.news-column:nth-child(1) .news-article:nth-child(1) { animation-delay: 0.3s; }
.news-column:nth-child(1) .news-article:nth-child(2) { animation-delay: 0.35s; }
.news-column:nth-child(1) .news-article:nth-child(3) { animation-delay: 0.4s; }
.news-column:nth-child(1) .news-article:nth-child(4) { animation-delay: 0.45s; }
.news-column:nth-child(1) .news-article:nth-child(5) { animation-delay: 0.5s; }
.news-column:nth-child(1) .news-article:nth-child(6) { animation-delay: 0.55s; }
.news-column:nth-child(1) .news-article:nth-child(7) { animation-delay: 0.6s; }

.news-column:nth-child(2) .news-article {
    animation: articleFadeInUp 0.5s ease forwards;
}

.news-column:nth-child(2) .news-article:nth-child(1) { animation-delay: 0.5s; }
.news-column:nth-child(2) .news-article:nth-child(2) { animation-delay: 0.55s; }
.news-column:nth-child(2) .news-article:nth-child(3) { animation-delay: 0.6s; }
.news-column:nth-child(2) .news-article:nth-child(4) { animation-delay: 0.65s; }

.news-column:nth-child(3) .news-article {
    animation: articleFadeInUp 0.5s ease forwards;
}

.news-column:nth-child(3) .news-article:nth-child(1) { animation-delay: 0.7s; }
.news-column:nth-child(3) .news-article:nth-child(2) { animation-delay: 0.75s; }
.news-column:nth-child(3) .news-article:nth-child(3) { animation-delay: 0.8s; }
.news-column:nth-child(3) .news-article:nth-child(4) { animation-delay: 0.85s; }
.news-column:nth-child(3) .news-article:nth-child(5) { animation-delay: 0.9s; }
.news-column:nth-child(3) .news-article:nth-child(6) { animation-delay: 0.95s; }
.news-column:nth-child(3) .news-article:nth-child(7) { animation-delay: 1s; }

@keyframes articleFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.column-header {
    opacity: 0;
    animation: headerFadeIn 0.5s ease forwards;
}

.news-column:nth-child(1) .column-header {
    animation-delay: 0.15s;
}

.news-column:nth-child(2) .column-header {
    animation-delay: 0.35s;
}

.news-column:nth-child(3) .column-header {
    animation-delay: 0.55s;
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.column-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white);
}

.column-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.column-title::before {
    content: '';
    position: absolute;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}

.title-decoration {
    display: none;
}

.article-list {
    padding: 20px 0;
}

.news-article {
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.news-article:last-child {
    border-bottom: none;
}

.news-article:hover {
    background: var(--bg-gray);
}

.news-article.featured {
    padding: 20px 25px;
}

.news-article.featured .article-title {
    font-size: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.category-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(234, 234, 234, 0);
    color: red;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid var(--text-muted);
    line-height: 1.2;
}

.category-tag:last-child {
    border-right: none;
}

.category-tag:not(.premium-badge):hover {
    color: white;
}

.premium-badge {
    background: var(--accent);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(242, 21, 23, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(242, 21, 23, 0);
    }
}

.article-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.article-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    padding-bottom: 8px;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}

.article-title a:hover {
    color: var(--accent);
}

.news-article.featured .article-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.news-article.featured .article-title a:hover::after {
    width: 100%;
}

.article-excerpt {
    margin: 12px 0 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    display: none;
}

.news-article.featured .article-excerpt,
.news-article.premium .article-excerpt {
    display: block;
}

/* =============================================
   Responsive Design for News Sections
   ============================================= */
@media (max-width: 1200px) {
    .news-row {
        flex-wrap: wrap;
    }
    
    .news-column {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
    
    .news-column:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .news-sections {
        padding: 40px 0;
    }
    
    .news-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .column-header {
        padding: 15px 20px;
    }
    
    .column-title {
        font-size: 16px;
    }
    
    .news-article {
        padding: 12px 20px;
    }
    
    .news-article.featured {
        padding: 15px 20px;
    }
    
    .article-title {
        font-size: 14px;
    }
    
    .news-article.featured .article-title {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .news-sections {
        padding: 30px 0;
    }
    
    .news-column {
        border-radius: 0;
        box-shadow: none;
    }
    
    .column-header {
        padding: 12px 15px;
    }
    
    .column-title {
        font-size: 15px;
        padding-left: 12px;
    }
    
    .article-list {
        padding: 10px 0;
    }
    
    .news-article {
        padding: 10px 15px;
    }
    
    .article-meta {
        gap: 8px;
    }
    
    .category-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .article-date {
        font-size: 11px;
    }
    
    .article-title {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .news-article.featured .article-title {
        font-size: 15px;
    }
    
    .article-excerpt {
        font-size: 12px;
        line-height: 1.5;
    }
}



/* =============================================
   VIDEO SECTION - Live Now
   ============================================= */
.video-section {
    padding: 40px 0;
    background: #1a1a1a;
}

.video-section .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

.video-header {
    margin-bottom: 25px;
}

.video-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.video-live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    border-radius: 8px;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 71, 87, 0.7);
    }
}

.video-container {
    display: flex;
    gap: 20px;
}

/* Main Video Area */
.video-main {
    flex: 1;
    min-width: 0;
}

.video-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.video-card-main {
    position: relative;
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card-main:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%, transparent 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-card-main:hover .video-overlay {
    opacity: 0.5;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 71, 87, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.play-button i {
    margin-left: 4px;
}

.video-card-main:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 71, 87, 1);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.video-info {
    padding: 20px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #222 100%);
}

.video-card-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.video-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}

.video-card-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.video-card-title a:hover {
    color: var(--accent);
}

.video-card-title a:hover::after {
    width: 100%;
}

.video-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.video-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-author span {
    font-weight: 600;
    color: #fff;
}

.video-time, .video-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-time i, .video-views i {
    font-size: 14px;
    color: var(--accent);
}

/* Video Navigation */
.video-nav {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    position: absolute;
    top: 85%;
    right: 10px;
    z-index: 9999;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
    position: absolute !important;
    top: 91% !important;
    z-index: 9999 !important;
}

.video-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2a2a2a;
    border: 2px solid #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    color: #fff;
}

.video-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.video-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.video-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #3a3a3a;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Video Sidebar */
.video-sidebar {
    width: 380px;
    flex-shrink: 0;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    max-height: 565px;
    overflow-y: auto;
}

.video-sidebar::-webkit-scrollbar {
    width: 6px;
}

.video-sidebar::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.video-sidebar::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 3px;
}

.video-sidebar::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #3a3a3a;
}

.video-thumbs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-thumb-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: #222;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.video-thumb-item:hover {
    background: #333;
    transform: translateX(5px);
}

.video-thumb-item.active {
    background: rgba(255, 71, 87, 0.15);
    border-color: var(--accent);
}

.thumb-image {
    position: relative;
    width: 120px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumb-item:hover .thumb-image img {
    transform: scale(1.1);
}

.thumb-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 71, 87, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.thumb-play-icon i {
    margin-left: 2px;
}

.video-thumb-item:hover .thumb-play-icon,
.video-thumb-item.active .thumb-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.thumb-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thumb-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Manrope', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.video-thumb-item:hover .thumb-title {
    color: var(--accent);
}

.thumb-views {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.thumb-views i {
    font-size: 12px;
    color: var(--accent);
}

/* Responsive Video Section */
@media (max-width: 1200px) {
    .video-sidebar {
        width: 320px;
    }
}

@media (max-width: 1024px) {
    .video-container {
        flex-direction: column;
    }

    .video-sidebar {
        width: 100%;
        max-height: 300px;
    }

    .video-thumbs-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;
    }

    .video-thumb-item {
        flex-direction: column;
        min-width: 200px;
        flex-shrink: 0;
    }

    .thumb-image {
        width: 100%;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 30px 0;
    }

    .video-title {
        font-size: 18px;
    }

    .video-live-indicator {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .video-card-title {
        font-size: 16px;
    }

    .video-meta {
        gap: 10px;
        font-size: 12px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .video-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 20px 0;
    }

    .video-header {
        margin-bottom: 15px;
    }

    .video-title {
        font-size: 16px;
        gap: 10px;
    }

    .video-live-indicator {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .video-info {
        padding: 15px;
    }

    .video-card-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .video-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .video-author img {
        width: 28px;
        height: 28px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .video-duration {
        font-size: 11px;
        padding: 4px 8px;
    }

    .video-sidebar {
        padding: 15px;
    }

    .sidebar-title {
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .video-thumb-item {
        min-width: 180px;
        padding: 10px;
    }

    .thumb-image {
        height: 80px;
    }

    .thumb-title {
        font-size: 12px;
    }

    .thumb-views {
        font-size: 11px;
    }
}

/* =============================================
   AIR QUALITY INDEX SECTION
   ============================================= */
.aqi-section {
    padding: 0;
    background: inherit;
    border-top: none;
}

/* =============================================
   LOCATION DETECTION STYLES
   ============================================= */
.aqi-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aqi-section  .container {
    max-width: 100%;
    margin: 0 auto;
}
.detect-location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #001A56 0%, #002a7a 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 26, 86, 0.3);
}

.detect-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 26, 86, 0.4);
    background: linear-gradient(135deg, #002a7a 0%, #003a9a 100%);
}

.detect-location-btn:active {
    transform: translateY(0);
}

.detect-location-btn i {
    font-size: 16px;
}

.detect-location-btn.loading {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}

.detect-location-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.detect-location-btn.denied {
    background: #6c757d;
    box-shadow: none;
}

.detect-location-btn.denied:hover {
    background: #5a6268;
    transform: none;
    box-shadow: none;
}

.aqi-location {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.aqi-location::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Location Status Messages */
.location-status {
    padding: 12px 20px;
    margin: 0 0 15px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.location-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.location-status.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.location-status.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.location-status i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Location Search */
.location-search {
    display: flex;
    gap: 10px;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.location-search input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.location-search input:focus {
    border-color: var(--navy);
}

.search-city-btn {
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-city-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.search-city-btn i {
    font-size: 16px;
}

/* Responsive Location Detection */
@media (max-width: 768px) {
    .aqi-header-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .detect-location-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
    
    .location-search {
        flex-direction: column;
    }
    
    .location-search input {
        width: 100%;
    }
    
    .search-city-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .detect-location-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .detect-location-btn i {
        font-size: 14px;
    }
    
    .location-status {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* =============================================
   HOROSCOPE SECTION (Inside AQI Widget)
   ============================================= */
.horoscope-container {
    margin-top: 0px;
    padding-top: 0px;
    border-top: 1px solid var(--border-color);
}

.horoscope-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 10px;
}

.horoscope-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    flex-wrap: wrap;
}

.horoscope-title i {
    font-size: 20px;
    color: #8b5cf6;
}

.horoscope-date-display {
    font-size: 12px;
    font-weight: normal;
    color: var(--text-muted);
    margin-left: 10px;
}

.horoscope-nav {
    display: flex;
    gap: 8px;
}

.horoscope-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    color: var(--navy);
}

.horoscope-nav-btn:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
    transform: scale(1.1);
}

.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.horoscope-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
}

.horoscope-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.horoscope-card:hover::before {
    transform: scaleX(1);
}

.horoscope-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(139, 92, 246, 0.15);
}

.horoscope-card-header {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
}

.horoscope-sign-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    display: none;
}

.horoscope-sign-info {
    flex: 1;
    min-width: 0;
}

.horoscope-sign-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.horoscope-date-range {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
    display: none;
}

.horoscope-lucky-color {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.horoscope-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.horoscope-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.horoscope-section-title i {
    color: #8b5cf6;
    font-size: 14px;
}

.horoscope-content {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.horoscope-lucky-number {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 6px;
    margin-top: auto;
}

.lucky-number-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lucky-number-value {
    font-size: 16px;
    font-weight: 700;
    color: #8b5cf6;
}

.horoscope-card-footer {
    padding: 12px 15px;
    background: var(--bg-gray);
    border-top: 1px solid var(--border-color);
}

.horoscope-compatibility {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.horoscope-compatibility i {
    color: #e11d48;
    font-size: 12px;
}

.compatibility-signs {
    display: flex;
    gap: 4px;
}

.compatibility-sign {
    width: 24px;
    height: 24px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.compatibility-sign:hover {
    background: #8b5cf6;
    color: white;
    transform: scale(1.1);
}

/* Responsive Horoscope (Inside AQI) */
@media (max-width: 768px) {
    .horoscope-container {
        margin-top: 15px;
        padding-top: 15px;
    }

    .horoscope-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
    }

    .horoscope-title {
        font-size: 16px;
    }

    .horoscope-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .horoscope-card-header {
        padding: 12px;
        flex-wrap: wrap;
    }

    .horoscope-sign-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .horoscope-sign-name {
        font-size: 14px;
    }

    .horoscope-card-body {
        padding: 12px;
    }

    .horoscope-content {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .horoscope-container {
        margin-top: 12px;
        padding-top: 12px;
    }

    .horoscope-title {
        font-size: 14px;
    }

    .horoscope-sign-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .horoscope-sign-name {
        font-size: 13px;
    }

    .horoscope-date-range {
        font-size: 10px;
    }

    .horoscope-lucky-color {
        font-size: 10px;
        padding: 3px 8px;
    }

    .horoscope-card-body {
        padding: 10px 12px;
        gap: 8px;
    }

    .horoscope-section-title {
        font-size: 12px;
    }

    .horoscope-content {
        font-size: 11px;
        line-height: 1.5;
    }

    .horoscope-lucky-number {
        padding: 8px 10px;
    }

    .lucky-number-label {
        font-size: 10px;
    }

    .lucky-number-value {
        font-size: 14px;
    }

    .horoscope-card-footer {
        padding: 10px 12px;
    }

    .horoscope-compatibility {
        font-size: 11px;
    }

    .compatibility-sign {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
}

.aqi-widget {
    background: inherit;
    border-radius: 12px;
    box-shadow: none;
    overflow: visible;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0px;
}

.aqi-header {
    padding: 20px 0 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aqi-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aqi-title i {
    font-size: 20px;
    color: var(--accent);
}

.aqi-location {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.aqi-content {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
}

.aqi-main-display {
    text-align: center;
    flex: 1;
}

.aqi-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.aqi-status {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    min-width: 120px;
    transition: all 0.3s ease;
}

.aqi-footer-info {
    padding: 12px 0 0 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
}

.aqi-footer-info #aqi-last-updated {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* AQI Status Colors */
.aqi-status.good {
    background: #00d4aa;
    color: white;
}

.aqi-status.moderate {
    background: #f9c74f;
    color: #333;
}

.aqi-status.unhealthy-sensitive {
    background: #f8961e;
    color: white;
}

.aqi-status.unhealthy {
    background: #e63946;
    color: white;
}

.aqi-status.very-unhealthy {
    background: #9d4edd;
    color: white;
}

.aqi-status.hazardous {
    background: #6a040f;
    color: white;
}

.aqi-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
}

.aqi-parameter {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: var(--bg-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.aqi-parameter:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
}

.parameter-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.parameter-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.aqi-scale {
    padding: 20px 10px;
    background: var(--bg-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.scale-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    min-width: 80px;
    transition: all 0.3s ease;
}

.scale-item.good {
    background: #00d4aa;
    color: white;
}

.scale-item.moderate {
    background: #f9c74f;
    color: #333;
}

.scale-item.unhealthy-sensitive {
    background: #f8961e;
    color: white;
}

.scale-item.unhealthy {
    background: #e63946;
    color: white;
}

.scale-item.very-unhealthy {
    background: #9d4edd;
    color: white;
}

.scale-item.hazardous {
    background: #6a040f;
    color: white;
}

.scale-label {
    font-size: 10px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.scale-range {
    font-size: 12px;
    font-weight: 700;
}

.aqi-last-updated {
    padding: 15px 25px;
    background: var(--bg-white);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

#aqi-last-updated {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive AQI Section */
@media (max-width: 768px) {
    .aqi-section {
        padding: 30px 0;
    }

    .aqi-widget {
        margin: 0 15px;
    }

    .aqi-header {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .aqi-title {
        font-size: 16px;
    }

    .aqi-content {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .aqi-value {
        font-size: 36px;
    }

    .aqi-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aqi-parameter {
        padding: 10px;
    }

    .parameter-value {
        font-size: 16px;
    }

    .aqi-scale {
        padding: 15px 20px;
        gap: 6px;
    }

    .scale-item {
        min-width: 70px;
        padding: 6px 8px;
    }

    .scale-label {
        font-size: 9px;
    }

    .scale-range {
        font-size: 11px;
    }

    .aqi-last-updated {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .aqi-section {
        padding: 20px 0;
    }

    .aqi-widget {
        margin: 0 10px;
    }

    .aqi-header {
        padding: 12px;
    }

    .aqi-title {
        font-size: 14px;
    }

    .aqi-content {
        padding: 15px;
    }

    .aqi-value {
        font-size: 28px;
    }

    .aqi-status {
        font-size: 14px;
        padding: 4px 8px;
    }

    .aqi-scale {
        padding: 12px 15px;
    }

    .scale-item {
        min-width: 60px;
        padding: 4px 6px;
    }
}

/* =============================================
   ADMIN SLIDERS SECTION
   ============================================= */
.admin-sliders-section {
    padding: 40px 0;
    background: var(--bg-gray);
}

.admin-sliders-section .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

.admin-sliders-section .section-header {
    margin-bottom: 25px;
}

.admin-sliders-section .section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-sliders-section .section-title i {
    font-size: 24px;
    color: var(--accent);
}

.admin-sliders-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-slider-card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.admin-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.admin-slider-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.admin-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.admin-slider-card:hover .admin-slider-image img {
    transform: scale(1.05);
}

.admin-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8) 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.admin-slider-card:hover .admin-slider-overlay {
    opacity: 1;
}

.admin-slider-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-slider-content {
    padding: 20px;
}

.admin-slider-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 8px;
}

.admin-slider-text-tamil {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

.no-admin-sliders {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-admin-sliders p {
    font-size: 15px;
}

@media (max-width: 1024px) {
    .admin-slider-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .admin-sliders-section {
        padding: 30px 0;
    }
    
    .admin-slider-card {
        flex: 0 0 100%;
    }
    
    .admin-slider-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .admin-sliders-section {
        padding: 20px 0;
    }
    
    .admin-slider-image {
        height: 160px;
    }
    
    .admin-slider-content {
        padding: 15px;
    }
    
    .admin-slider-text {
        font-size: 14px;
    }
    
    .admin-slider-text-tamil {
        font-size: 12px;
    }
}

/* Dark mode for admin sliders */
body.dark-mode .admin-sliders-section {
    background: #0f0f0f;
}

body.dark-mode .admin-slider-card {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .admin-slider-text {
    color: #e0e0e0;
}

body.dark-mode .admin-slider-text-tamil {
    color: #888;
}

body.dark-mode .admin-slider-overlay {
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.9) 100%);
}

body.dark-mode .no-admin-sliders {
    color: #888;
}

/* =============================================
   TRENDING NOW SECTION - Horizontal Card Slider
   ============================================= */
.trending-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    overflow: hidden;
}

.trending-section .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

.trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.trending-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.trending-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
    border-radius: 8px;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(242, 21, 23, 0.3);
}

.trending-nav {
    display: flex;
    gap: 10px;
}

.trending-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    color: var(--navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.trending-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 21, 23, 0.4);
}

.trending-nav-btn:active {
    transform: scale(0.95);
}

.trending-slider-wrapper {
    position: relative;
    padding: 10px 5px;
}

.trending-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

.trending-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.trending-slider .swiper-slide {
    flex: 0 0 calc(25% - 15px);
    height: auto;
    margin-right: 20px;
}

.trending-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.trending-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.trending-card:hover::before {
    transform: scaleX(1);
}

.trending-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 26, 86, 0.15);
}

.trending-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.trending-card:hover .trending-image img {
    transform: scale(1.12);
}

.trending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trending-card:hover .trending-overlay {
    opacity: 1;
}

.trending-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(242, 21, 23, 0.3);
}

.trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: firePulse 2s ease-in-out infinite;
}

@keyframes firePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    }
}

.trending-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trending-card-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    transition: color 0.3s ease;
}

.trending-card-title a {
    color: inherit;
    text-decoration: none;
    position: relative;
    display: block;
}

.trending-card-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.trending-card:hover .trending-card-title {
    color: var(--navy);
}

.trending-card:hover .trending-card-title a::after {
    width: 100%;
}

.trending-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.trending-date, .trending-views {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.trending-date i, .trending-views i {
    font-size: 14px;
    color: var(--accent);
}

.trending-card:hover .trending-date,
.trending-card:hover .trending-views {
    color: var(--text-light);
}

/* Pagination styles */
.trending-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.trending-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.trending-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Slide entrance animation */
.trending-slider .swiper-slide .trending-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideInUp 0.5s ease forwards;
}

.trending-slider .swiper-slide:nth-child(1) .trending-card { animation-delay: 0.1s; }
.trending-slider .swiper-slide:nth-child(2) .trending-card { animation-delay: 0.15s; }
.trending-slider .swiper-slide:nth-child(3) .trending-card { animation-delay: 0.2s; }
.trending-slider .swiper-slide:nth-child(4) .trending-card { animation-delay: 0.25s; }
.trending-slider .swiper-slide:nth-child(5) .trending-card { animation-delay: 0.3s; }
.trending-slider .swiper-slide:nth-child(6) .trending-card { animation-delay: 0.35s; }
.trending-slider .swiper-slide:nth-child(7) .trending-card { animation-delay: 0.4s; }
.trending-slider .swiper-slide:nth-child(8) .trending-card { animation-delay: 0.45s; }

@keyframes cardSlideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .trending-slider .swiper-slide {
        flex: 0 0 calc(33.33% - 14px);
    }
}

@media (max-width: 900px) {
    .trending-slider .swiper-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .trending-section {
        padding: 35px 0;
    }
    
    .trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .trending-title {
        font-size: 18px;
    }
    
    .trending-nav {
        width: 100%;
        justify-content: flex-start;
    }
    
    .trending-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .trending-image {
        height: 150px;
    }
    
    .trending-content {
        padding: 15px;
    }
    
    .trending-card-title {
        font-size: 14px;
    }
    
    .trending-meta {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .trending-section {
        padding: 25px 0;
    }
    
    .trending-title {
        font-size: 16px;
    }
    
    .trending-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .trending-image {
        height: 130px;
    }
    
    .trending-content {
        padding: 12px 15px;
    }
    
    .trending-card-title {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .category-badge a {
    font-size: 10px;
	padding: 4px 8px;
    }
}

/* =============================================
   MORE NEWS AND LATEST REVIEWS SECTION - Three Column Flex Layout
   ============================================= */
.block-wrapper {
    padding: 50px 0;
    background: var(--bg-gray);
}

.block-wrapper.p-bottom-0 {
    padding-bottom: 0;
    padding-top: 0;
}

/* Three Column Row - Flex Layout */
.three-column-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.block-wrapper .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}
.more-news-col {
    flex: 1 1 400px;
}

.reviews-col {
    flex: 1 1 300px;
}

.newsletter-col {
    flex: 1 1 300px;
}

/* Responsive three column layout */
@media (max-width: 1200px) {
    .more-news-col {
        flex: 1 1 100%;
    }
    
    .reviews-col {
        flex: 1 1 calc(50% - 8px);
    }
    
    .newsletter-col {
        flex: 1 1 calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .three-column-row {
        flex-direction: column;
    }
    
    .reviews-col,
    .newsletter-col {
        flex: 1 1 100%;
    }
}

/* More News Block */
.more-news {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.block-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.block-title span {
    position: relative;
}

/* News Articles List */
.news-articles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Post Block Style */
.post-block-style {
    display: flex;
    gap: 15px;
}

.post-float-half {
    width: calc(100% - 7.5px);
    float: left;
}
.post-float-half.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.post-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-thumb:hover img {
    transform: scale(1.05);
}

.post-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-cat {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 6px;
    transition: background 0.3s ease;
    height: 20px;
    position: absolute;
    z-index: 999;
}

.post-cat:hover {
    background: var(--accent-hover);
    color: white;
}

.post-content {
    flex: 1;
    min-width: 0;
}

.post-content .post-title {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
}

.post-content .post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.post-content .post-title a:hover {
    color: var(--accent);
}

.post-content .post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 11px;
    color: var(--text-muted);
}

.post-content .post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-content .post-meta a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content .post-meta a:hover {
    color: var(--accent);
}

.post-content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gap */
.gap-20 {
    height: 20px;
    clear: both;
}

.gap-30 {
    height: 30px;
    clear: both;
}

/* Sidebar */
.sidebar {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.sidebar-right {
    margin-top: 0;
}

/* Widget */
.widget {
    margin-bottom: 25px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget.m-bottom-0 {
    margin-bottom: 0;
}

.widget .block-title {
    font-size: 18px;
    margin-bottom: 15px;
}

/* List Post Block */
.list-post-block {
    margin-top: 0;
}

.list-post {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-post > li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.list-post > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.list-post.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Review Post List */
.review-post-list > li {
    padding: 12px 0;
}

.post-float {
    display: flex;
    gap: 12px;
}

.post-float.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.review-post-list .post-thumb {
    width: 70px;
    height: 55px;
    border-radius: 6px;
}

.review-post-list .post-content {
    flex: 1;
}

.review-post-list .post-title {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    font-size: 11px;
    color: #ffc107;
}

.review-stars .fa-star-o {
    color: #ddd;
}

.review-stars .fa-star-half-o {
    color: #ffc107;
}

/* Newsletter Widget */
.ts-newsletter {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-introtext {
    margin-bottom: 15px;
}

.newsletter-introtext h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.newsletter-introtext p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

.newsletter-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn-primary {
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.newsletter-form .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .more-news-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .reviews-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .newsletter-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .three-column-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .block-wrapper {
        padding: 40px 0;
    }
    
    .more-news {
        padding: 20px;
    }
    
    .post-float-half {
        width: 100%;
        float: none;
    }
    
    .post-thumb {
        width: 100%;
        height: 150px;
    }
    
    .post-block-style {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .block-wrapper {
        padding: 30px 0;
    }
    
    .more-news {
        padding: 15px;
    }
    
    .block-title {
        font-size: 18px;
    }
    
    .post-content .post-title {
        font-size: 14px;
    }
    
    .sidebar {
        padding: 15px;
    }
    
    .widget .block-title {
        font-size: 16px;
    }
    
    .review-post-list .post-thumb {
        width: 60px;
        height: 50px;
    }
    
    .ts-newsletter {
        padding: 20px;
    }
    
    .reviews-col,
    .newsletter-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .block-wrapper {
        padding: 20px 0;
    }
    .spot-slider-section {
    padding: 30px 0 20px 0;
    background: var(--bg-gray);
    position: relative;
    height: 100vh !important;
    overflow: auto;
}
    .spot-slider-section .container {
        flex-direction: column;
        display: block !important;
        float: left;
        width: 100%;
        height: 100vh !important;
    }
        .spot-slider, .breaking-new {
        width: 100%;
        float: left;
        position: relative;
    }
    #top-slider {
    position: absolute !important;
    width: 100% !important;
    margin-right: 0 !important;
    height: 50vh;
}
   
    
    .more-news {
        padding: 12px;
        border-radius: 8px;
    }
    
    .block-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .post-thumb {
        height: 120px;
    }
    
    .post-content .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .sidebar {
        border-radius: 8px;
        padding: 12px;
    }
    
    .ts-newsletter {
        padding: 15px;
        border-radius: 8px;
    }
    
    .newsletter-introtext h4 {
        font-size: 16px;
    }
    
    .newsletter-introtext p {
        font-size: 12px;
    }
}

/* =============================================
   LOAD MORE BUTTON
   ============================================= */
.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: var(--bg-gray);
}

.load-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(242, 21, 23, 0.3);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 21, 23, 0.4);
}

.load-more-btn:active {
    transform: translateY(-1px);
}

.load-more-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: rotate(90deg);
}

.load-more-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.load-more-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =============================================
   FOOTER SECTION
   ============================================= */
.site-footer {
    background: linear-gradient(180deg, #001A56 0%, #000d30 100%);
    color: white;
    margin-top: 0;
}

.footer-main {
    padding: 60px 0 40px 0;
}

.footer-main .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 25px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-social .social-icon.facebook:hover {
    background: #1877f2;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.footer-social .social-icon.twitter:hover {
    background: #1da1f2;
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
}

.footer-social .social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.footer-social .social-icon.youtube:hover {
    background: #ff0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.footer-social .social-icon.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 5px 20px rgba(0, 119, 181, 0.4);
}

/* Footer Columns */
.footer-col {
    padding: 0 10px;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(242, 21, 23, 0.2);
    border-radius: 8px;
    color: var(--accent);
    font-size: 18px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a i {
    font-size: 14px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

/* Newsletter Column */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px !important;
    border-radius: 12px;
    margin-left: 10px;
}

.footer-newsletter .footer-title {
    margin-bottom: 15px;
}

.newsletter-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    padding: 12px 18px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

/* App Links */
.app-links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 15px 0;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.app-btn i {
    font-size: 24px;
}

.app-btn span {
    display: flex;
    flex-direction: column;
}

.app-btn small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.app-btn strong {
    font-size: 14px;
    font-weight: 700;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.copyright a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    text-decoration: underline;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent);
}

.legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   FOOTER RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-description {
        max-width: 500px;
        margin-bottom: 0;
    }
    
    .footer-social {
        margin-top: 0;
    }
    
    .footer-newsletter {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
        padding: 0;
    }
    
    .footer-title {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        padding-right: 10px;
    }
    
    .footer-links a:hover i {
        transform: translateX(-5px);
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .app-buttons {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px 0;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .title-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-newsletter {
        padding: 20px !important;
    }
    
    .newsletter-form input[type="email"] {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 10px 15px;
    }
    
    .app-btn {
        width: 100%;
        justify-content: center;
    }
    
    .copyright p {
        font-size: 12px;
    }
    
    .legal-links {
        gap: 10px;
    }
    
    .legal-links a {
        font-size: 12px;
    }
}

/* =============================================
   FOOTER DARK MODE
   ============================================= */
body.dark-mode .site-footer {
    background: linear-gradient(180deg, #0a1628 0%, #050d1a 100%);
}

body.dark-mode .footer-bottom {
    background: rgba(0, 0, 0, 0.5);
}

body.dark-mode .footer-social .social-icon {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .app-btn {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .app-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}



@media (max-width: 767px) {
.menu {
    display: none;
    align-items: center;
    position: relative;
}
.spot-slider-section {
    padding: 20px 0;
    background: var(--bg-gray);
    position: relative;
    min-height: auto;
    overflow: hidden;
    float: left;
    width: 100%;
}
.spot-slider-section .container {
    flex-direction: column;
    gap: 15px;
    display: block !important;
}
.breaking-new {
    top: 50%;
}
}

/* =============================================
   COMPREHENSIVE RESPONSIVE FIXES - ALL DEVICES
   ============================================= */

/* Large Desktop (1400px and up) */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
    .spot-slider-section .container {
        max-width: 1200px;
    }
    
    .news-sections .container {
        max-width: 1200px;
    }
    
    .video-section .container {
        max-width: 1200px;
    }
    
    .trending-section .container {
        max-width: 1200px;
    }
    
    .block-wrapper .container {
        max-width: 1200px;
    }
}

/* Laptop/Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .mega-menu {
        width: 90vw;
        max-width: 800px;
    }
    
    .news-column {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .news-column:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .video-sidebar {
        width: 300px;
    }
    
    .trending-slider .swiper-slide {
        flex: 0 0 calc(33.333% - 15px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .container {
        max-width: 95%;
    }
    
    .menu > li > a {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .mega-menu {
        width: 95vw;
        max-width: 700px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spot-slider-section {
        padding: 25px 0;
    }
    
    .spot-slider-section .container {
        flex-wrap: wrap;
    }
    
    .spot-slider,
    .breaking-new {
        width: 100%;
    }
    
    .breaking-new {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .news-sections .container {
        max-width: 100%;
    }
    
    .news-row {
        flex-wrap: wrap;
    }
    
    .news-column {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
    
    .news-column:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .video-container {
        flex-direction: column;
    }
    
    .video-sidebar {
        width: 100%;
        max-height: 300px;
    }
    
    .video-thumbs-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .video-thumb-item {
        flex-direction: column;
        min-width: 200px;
    }
    
    .thumb-image {
        width: 100%;
        height: 100px;
    }
    
    .three-column-row {
        flex-wrap: wrap;
    }
    
    .more-news-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .reviews-col,
    .newsletter-col {
        flex: 0 0 48%;
        max-width: 48%;
    }
    
    .trending-slider .swiper-slide {
        flex: 0 0 calc(50% - 10px);
    }
    
    .main-slider {
        height: 450px;
    }
    
    .slide-title {
        font-size: 24px;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        padding: 10px 15px;
    }
    
    .logo {
        height: 45px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        font-size: 1.4rem;
        padding: 8px 12px;
    }
    
    .nav-inner {
        height: auto;
        padding: 12px 15px;
        flex-wrap: wrap;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .menu.active {
        display: flex;
        position: relative;
    }
    
    .menu > li {
        width: 100%;
    }
    
    .menu > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .mega-menu {
        display: none !important;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .date-widget {
        display: none;
    }
    
    .language-switcher-inline {
        margin-right: 10px;
    }
    
    /* Breaking News */
    .breaking-news-bar {
        padding: 8px 0;
    }
    
    .breaking-news-bar .container {
        flex-wrap: wrap;
    }
    
    .breaking-label {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .breaking-ticker-wrapper {
        width: 100%;
        margin: 8px 0 0 0;
    }
    
    .breaking-ticker span {
        font-size: 13px;
        margin-right: 25px;
    }
    
    /* Spot Slider */
    .spot-slider-section {
        padding: 20px 0;
        min-height: auto;
    }
    
    .spot-slider-section .container {
        flex-direction: column;
    }
    
    .main-slider {
        height: 400px;
        border-radius: 8px;
    }
    
    .slide-text {
        padding: 25px 20px;
    }
    
    .slide-title {
        font-size: 20px;
        max-width: 100%;
    }
    
    .excerpt {
        display: none;
    }
    
    .slide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Top Thumbnails */
    .top-thumbs-container {
        display: none;
    }
    
    /* Breaking News Slider */
    .breaking-new {
        width: 100%;
        max-width: 100%;
    }
    
    .hero__title .slick-slider {
        padding-top: 10px;
    }
    
    /* News Sections */
    .news-sections {
        padding: 0;
    }
    
    .news-row {
        flex-direction: column;
    }
    
    .news-column {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .column-header {
        padding: 15px 20px;
    }
    
    .column-title {
        font-size: 16px;
    }
    
    .news-article {
        padding: 12px 20px;
    }
    
    .news-article.featured {
        padding: 15px 20px;
    }
    
    .news-article.featured .article-title {
        font-size: 16px;
    }
    
    /* Video Section */
    .video-section {
        padding: 30px 0;
    }
    
    .video-title {
        font-size: 18px;
    }
    
    .video-card-title {
        font-size: 16px;
    }
    
    .video-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .video-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Trending Section */
    .trending-section {
        padding: 35px 0;
    }
    
    .trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .trending-title {
        font-size: 18px;
    }
    
    .trending-slider .swiper-slide {
        flex: 0 0 calc(50% - 10px);
    }
    
    .trending-card-title {
        font-size: 14px;
    }
    
    .trending-image {
        height: 150px;
    }
    
    /* Three Column Section */
    .three-column-row {
        flex-direction: column;
    }
    
    .reviews-col,
    .newsletter-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .block-wrapper {
        padding: 30px 0;
    }
    
    .more-news,
    .sidebar {
        padding: 20px;
    }
    
    .post-float-half {
        width: 100%;
        float: none;
    }
    
    .post-block-style {
        flex-direction: column;
    }
    
    .post-thumb {
        width: 100%;
        height: 150px;
    }
    
    /* AQI & Horoscope */
    .aqi-widget {
        padding: 15px;
    }
    
    .aqi-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .aqi-main-display {
        order: -1;
    }
    
    .aqi-value {
        font-size: 36px;
    }
    
    .aqi-details {
        grid-template-columns: 1fr 1fr;
    }
    
    .horoscope-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-title {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Load More */
    .load-more-container {
        padding: 30px 15px;
    }
    
    .load-more-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Large Mobile (576px) */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .logo {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 8px 10px;
    }
    
    .menu > li > a {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .breaking-label {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .breaking-ticker span {
        font-size: 12px;
        margin-right: 20px;
    }
    
    .main-slider {
        height: 350px;
    }
    
    .slide-text {
        padding: 20px 15px;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    .category-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
    }
    
    /* News Sections */
    .news-column {
        border-radius: 0;
        box-shadow: none;
    }
    
    .column-header {
        padding: 12px 15px;
    }
    
    .column-title {
        font-size: 15px;
    }
    
    .news-article {
        padding: 10px 15px;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .category-tag {
        font-size: 10px;
    }
    
    .article-title {
        font-size: 14px;
    }
    
    /* Video */
    .video-section {
        padding: 25px 0;
    }
    
    .video-title {
        font-size: 16px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-card-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .video-sidebar {
        padding: 15px;
        max-height: 250px;
    }
    
    .video-thumb-item {
        min-width: 180px;
    }
    
    /* Trending */
    .trending-section {
        padding: 30px 0;
    }
    
    .trending-title {
        font-size: 16px;
    }
    
    .trending-image {
        height: 130px;
    }
    
    .trending-content {
        padding: 12px 15px;
    }
    
    .trending-card-title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .trending-meta {
        font-size: 11px;
    }
    
    .trending-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    /* Three Column */
    .more-news,
    .sidebar {
        padding: 15px;
        border-radius: 8px;
    }
    
    .block-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .post-thumb {
        height: 120px;
    }
    
    .post-content .post-title {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-main {
        padding: 30px 0 20px 0;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-newsletter {
        padding: 20px;
        border-radius: 8px;
    }
    
    .app-links {
        display: none;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .copyright p {
        font-size: 12px;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Load More */
    .load-more-container {
        padding: 25px 12px;
    }
    
    .load-more-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .header-top {
        padding: 8px 10px;
    }
    
    .logo {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.2rem;
        padding: 6px 8px;
        display: none !important;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .side-nav-button {
        font-size: 18px;
    }
    
    .theme-toggle-btn {
        font-size: 18px;
    }
    
    .breaking-news-bar {
        padding: 6px 0;
    }
    
    .breaking-label {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .breaking-ticker span {
        font-size: 11px;
        margin-right: 15px;
    }
    
    .language-switcher-inline #language-selector {
        font-size: 12px;
        padding: 4px 8px;
        min-width: 50px;
    }
    
    /* Main Slider */
    .main-slider {
        height: 300px;
        border-radius: 6px;
    }
    
    .slide-text {
        padding: 15px 12px;
        top: 5%;
    }
    
    .slide-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .slide-meta-top {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .category-tag {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .date-after-category {
        font-size: 11px;
    }
    
    .author-info {
        gap: 8px;
    }
    
    .author-avatar {
        width: 30px;
        height: 30px;
    }
    
    .author-details {
        font-size: 12px;
    }
    
    .post-date {
        font-size: 11px;
    }
    
    /* Breaking News Slider */
    .breaking-new {
        padding: 15px 10px;
    }
    
    .hero__title .slick-slider {
        padding-top: 5px;
    }
    
    .hero__title-misc {
        font-size: 16px;
    }
    
    /* News Columns */
        .news-sections {
        padding: 0;
        float: left;
        width: 100%;
    }
    
    .column-header {
        padding: 10px 12px;
    }
    
    .column-title {
        font-size: 14px;
    }
    
    .news-article {
        padding: 8px 12px;
    }
    
    .article-meta {
        gap: 6px;
    }
    
    .category-tag {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .article-date {
        font-size: 10px;
    }
    
    .article-title {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .news-article.featured .article-title {
        font-size: 15px;
    }
    
    /* Video Section */
    .video-section {
        padding: 20px 0;
    }
    
    .video-header {
        margin-bottom: 15px;
    }
    
    .video-title {
        font-size: 15px;
    }
    
    .video-live-indicator {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-card-title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .video-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .video-author {
        gap: 6px;
    }
    
    .video-author img {
        width: 28px;
        height: 28px;
    }
    
    .video-author span {
        font-size: 12px;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .video-sidebar {
        padding: 12px;
        max-height: 220px;
    }
    
    .sidebar-title {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .video-thumb-item {
        min-width: 160px;
        padding: 10px;
    }
    
    .thumb-image {
        height: 70px;
    }
    
    .thumb-title {
        font-size: 12px;
    }
    
    .thumb-views {
        font-size: 11px;
    }
    
    /* Trending Section */
    .trending-section {
        padding: 25px 0;
    }
    
    .trending-header {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .trending-title {
        font-size: 15px;
    }
    
    .trending-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .trending-slider .swiper-slide {
        flex: 0 0 calc(100% - 0px);
    }
    
    .trending-image {
        height: 120px;
    }
    
    .trending-content {
        padding: 12px;
    }
    
    .trending-card-title {
        font-size: 13px;
    }
    
    .trending-category {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    /* Three Column */
    .block-wrapper {
        padding: 20px 0;
    }
    
    .more-news,
    .sidebar {
        padding: 12px;
        border-radius: 6px;
    }
    
    .block-title {
        font-size: 15px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .post-thumb {
        height: 100px;
    }
    
    .post-content .post-title {
        font-size: 13px;
    }
    
    .post-content .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .ts-newsletter {
        padding: 15px;
    }
    
    .newsletter-introtext h4 {
        font-size: 14px;
    }
    
    .newsletter-introtext p {
        font-size: 12px;
    }
        .trending-section {
        padding: 25px 0;
        float: left;
        width: 100%;
    }
    
    /* AQI */
    .aqi-widget {
        padding: 12px;
    }
    
    .aqi-title {
        font-size: 14px;
    }
    
    .aqi-value {
        font-size: 28px;
    }
    
    .aqi-status {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .aqi-details {
        gap: 8px;
    }
    
    .aqi-parameter {
        padding: 8px;
    }
    
    .parameter-label {
        font-size: 10px;
    }
    
    .parameter-value {
        font-size: 14px;
    }
    
    .aqi-scale {
        padding: 12px 10px;
    }
    
    .scale-item {
        min-width: 60px;
        padding: 4px 6px;
    }
    
    .scale-label {
        font-size: 8px;
    }
    
    .scale-range {
        font-size: 10px;
    }
    
    /* Horoscope */
    .horoscope-title {
        font-size: 14px;
    }
    
    .horoscope-card {
        padding: 10px;
    }
    
    .horoscope-sign-name {
        font-size: 14px;
    }
    
    .horoscope-content {
        font-size: 12px;
    }
    
    /* Footer */
    .footer-main {
        padding: 25px 0 15px 0;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-social .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-newsletter {
        padding: 15px;
    }
    
    .newsletter-text {
        font-size: 12px;
    }
    
    .newsletter-form input[type="email"] {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 10px 15px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .copyright p {
        font-size: 11px;
    }
    
    .legal-links a {
        font-size: 11px;
    }
    
    /* Load More */
    .load-more-container {
        padding: 20px 10px;
    }
    
    .load-more-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .load-more-btn i {
        font-size: 16px;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .logo {
        height: 30px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.1rem;
        padding: 5px 6px;
    }
    
    .breaking-label {
        font-size: 8px;
        padding: 2px 5px;
    }
    
    .breaking-ticker span {
        font-size: 10px;
        margin-right: 12px;
    }
    
    .main-slider {
        height: 250px;
    }
    
    .slide-text {
        padding: 10px 8px;
    }
    
    .slide-title {
        font-size: 13px;
    }
    
    .category-tag {
        font-size: 8px;
        padding: 2px 6px;
    }
    
    .trending-slider .swiper-slide {
        flex: 0 0 100%;
    }
    
    .trending-image {
        height: 100px;
    }
    
    .trending-card-title {
        font-size: 12px;
    }
    
    .footer-social .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .scale-item {
        min-width: 50px;
        padding: 3px 4px;
    }
    
    .scale-label {
        font-size: 7px;
    }
    
    .scale-range {
        font-size: 9px;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    .menu > li > a:hover {
        background: transparent;
        color: #001A56;
        padding: 20px 15px;
        transform: none;
        box-shadow: none;
    }
    
    .category-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    
    .trending-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    
    .mega-card:hover {
        transform: none;
    }
    
    /* Add active states for touch */
    .menu > li > a:active {
        background: var(--accent);
        color: white;
    }
    
    .category-card:active {
        transform: scale(0.98);
    }
    
    .trending-card:active {
        transform: scale(0.98);
    }
    
    .trending-nav-btn:active,
    .video-nav-btn:active,
    .category-slider-btn:active {
        transform: scale(0.95);
    }
}

/* Print Styles */
@media print {
    .site-header,
    .breaking-news-bar,
    .spot-slider-section,
    .trending-section,
    .news-sections,
    .video-section,
    .block-wrapper,
    .load-more-container,
    .site-footer,
    .side-nav,
    .side-nav-overlay,
    .preloader {
        display: none !important;
    }
    
    .main-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    img {
        max-width: 100%;
    }
    
    .container {
        max-width: 100%;
    }
}

/* =============================================
   ARTICLE DETAIL PAGE STYLES
   ============================================= */
.article-content-section {
    padding: 0px 20px;
    background: var(--bg-gray);
    min-height: 60vh;
}

.article-content-section .container {
    max-width: 100%;
    margin: 0 auto;
}

/* Article Not Found */
.article-not-found {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    text-align: center;
}

.not-found-content {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    max-width: 500px;
}

.not-found-content i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.not-found-content h2 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
}

.not-found-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
}

/* Article Detail */
.article-detail {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* Article Header */
.article-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-category {
    margin-bottom: 15px;
}

.article-category .category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin: 0 0 20px 0;
    font-family: 'Manrope', sans-serif;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.article-meta .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-meta .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.article-meta .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-meta .author-details {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.article-meta .author-details .by {
    color: var(--text-muted);
}

.article-meta .author-details a {
    color: var(--navy);
    font-weight: 600;
}

.article-meta .author-details a:hover {
    color: var(--accent);
}

.article-meta .post-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.article-meta .post-date i {
    color: var(--accent);
}

/* Article Image */
.article-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.article-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Article Body */
.article-body {
    padding: 30px 40px 40px;
}

.article-summary {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.article-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.article-text p {
    margin-bottom: 20px;
}

.article-text p:last-child {
    margin-bottom: 0;
}

/* Article Footer */
.article-footer {
    padding: 20px 40px 30px;
    border-top: 1px solid var(--border-color);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--bg-gray);
    color: var(--navy);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateX(-5px);
}

.back-btn i {
    font-size: 18px;
}

/* Responsive Article */
@media (max-width: 768px) {
    .article-content-section {
        padding: 30px 0;
    }
    
    .article-header {
        padding: 20px 25px 15px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .article-body {
        padding: 20px 25px 30px;
    }
    
    .article-summary {
        font-size: 16px;
    }
    
    .article-footer {
        padding: 15px 25px 25px;
    }
}

@media (max-width: 480px) {
    .article-content-section {
        padding: 20px 0;
    }
    
    .article-header {
        padding: 15px 20px 12px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-meta .author-info {
        gap: 8px;
    }
    
    .article-meta .author-avatar {
        width: 35px;
        height: 35px;
    }
    
    .article-meta .author-details {
        font-size: 13px;
    }
    
    .article-meta .post-date {
        font-size: 12px;
    }
    
    .article-body {
        padding: 15px 20px 25px;
    }
    
    .article-summary {
        font-size: 15px;
    }
    
    .article-text {
        font-size: 15px;
    }
    
    .article-footer {
        padding: 12px 20px 20px;
    }
    
    .back-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Dark Mode for Article Page */
body.dark-mode .article-content-section {
    background: #0f0f0f;
}

body.dark-mode .article-detail {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .article-header {
    border-bottom-color: #333;
}

body.dark-mode .article-title {
    color: #e0e0e0;
}

body.dark-mode .article-summary {
    color: #ccc;
    border-bottom-color: #333;
}

body.dark-mode .article-text {
    color: #ccc;
}

body.dark-mode .article-footer {
    border-top-color: #333;
}

body.dark-mode .back-btn {
    background: #252525;
    color: #e0e0e0;
}

body.dark-mode .back-btn:hover {
    background: var(--accent);
    color: white;
}

body.dark-mode .not-found-content {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .not-found-content h2 {
    color: #e0e0e0;
}

body.dark-mode .not-found-content p {
    color: #aaa;
}

/* =============================================
   ARTICLE PAGE WITH SIDEBAR STYLES
   ============================================= */

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--navy);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text);
}

/* Article Layout with Sidebar */
.article-layout {
    display: flex !important;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* Not Found Layout with Sidebar */
.not-found-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
    width: 100%;
}

.not-found-main {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.not-found-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.not-found-sidebar .sidebar-widget {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

/* Category Sections Layout with Sidebar */
.category-sections-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
    width: 100%;
}

.category-sections-main {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.category-sections-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.category-sections-sidebar .sidebar-widget {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
    .not-found-layout,
    .category-sections-layout {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 768px) {
    .not-found-layout,
    .category-sections-layout {
        grid-template-columns: 1fr;
    }
    
    .not-found-sidebar,
    .category-sections-sidebar {
        order: -1;
    }
}

.article-main-column {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Article Header New */
.article-header-new {
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-title-new {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin: 0 0 20px 0;
    font-family: 'Manrope', sans-serif;
}

.article-meta-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.article-meta-new .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-meta-new .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.article-meta-new .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-meta-new .author-details {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.article-meta-new .author-details .by {
    color: var(--text-muted);
}

.article-meta-new .author-details a {
    color: var(--navy);
    font-weight: 600;
}

.article-meta-new .post-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.article-meta-new .post-date i {
    color: var(--accent);
}

.article-views {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.article-views i {
    color: var(--accent);
}

/* Full Width Image */
.article-image-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.article-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Social Share Buttons */
.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-gray);
}

.share-label {
    font-weight: 600;
    color: var(--navy);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.copy-link {
    background: var(--navy);
}

/* Article Body New */
.article-body-new {
    padding: 30px 40px 40px;
}

.article-lead {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.article-text-new {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.article-text-new p {
    margin-bottom: 20px;
}

/* Author Box */
.author-box {
    display: none;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 40px;
    background: var(--bg-gray);
    border-top: 1px solid var(--border-color);
}

.author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-box-info h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.author-box-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget .widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-widget .widget-title .title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(242, 21, 23, 0.1);
    border-radius: 8px;
    color: var(--accent);
    font-size: 18px;
}

/* Related Articles */
.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.related-article-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.related-article-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-thumb .no-image {
    width: 100%;
    height: 100%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 20px;
}

.related-article-info {
    flex: 1;
    min-width: 0;
}

.related-article-info h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 5px 0;
}

.related-article-info h4 a {
    color: var(--text);
    text-decoration: none;
}

.related-article-info h4 a:hover {
    color: var(--accent);
}

.related-date {
    font-size: 12px;
    color: var(--text-muted);
}

.no-articles {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Trending List */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.trending-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.trending-number {
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.trending-info {
    flex: 1;
    min-width: 0;
}

.trending-info h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 5px 0;
}

.trending-info h4 a {
    color: var(--text);
    text-decoration: none;
}

.trending-info h4 a:hover {
    color: var(--accent);
}

.trending-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.trending-cat {
    color: var(--accent);
    font-weight: 600;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.newsletter-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.newsletter-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.newsletter-box .newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-box button {
    padding: 12px 18px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-box button:hover {
    background: var(--accent-hover);
}

/* Responsive Article Page */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        order: -1;
    }
    
    .article-header-new {
        padding: 20px 25px 15px;
    }
    
    .article-title-new {
        font-size: 24px;
    }
    
    .article-share {
        padding: 15px 25px;
        flex-wrap: wrap;
    }
    
    .article-body-new {
        padding: 20px 25px 30px;
    }
    
    .article-lead {
        font-size: 16px;
    }
    
    .author-box {
        flex-direction: column;
        padding: 20px 25px;
    }
    
    .author-box-avatar {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .article-header-new {
        padding: 15px 20px 12px;
    }
    
    .article-title-new {
        font-size: 20px;
    }
    
    .article-meta-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .article-share {
        padding: 12px 20px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .share-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .article-body-new {
        padding: 15px 20px 25px;
    }
    
    .article-lead {
        font-size: 15px;
    }
    
    .article-text-new {
        font-size: 15px;
    }
    
    .related-article-thumb {
        width: 70px;
        height: 55px;
    }
    
    .related-article-info h4 {
        font-size: 13px;
    }
    
    .trending-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .trending-info h4 {
        font-size: 13px;
    }
}

/* Dark Mode */
body.dark-mode .breadcrumb a {
    color: #e0e0e0;
}

body.dark-mode .breadcrumb .current {
    color: #aaa;
}

body.dark-mode .article-main-column {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .article-header-new {
    border-bottom-color: #333;
}

body.dark-mode .article-title-new {
    color: #e0e0e0;
}

body.dark-mode .article-meta-new .author-details a {
    color: #e0e0e0;
}

body.dark-mode .article-meta-new .post-date,
body.dark-mode .article-views {
    color: #aaa;
}

body.dark-mode .article-share {
    background: #252525;
    border-bottom-color: #333;
}

body.dark-mode .share-label {
    color: #e0e0e0;
}

body.dark-mode .article-body-new {
    background: #1a1a1a;
}

body.dark-mode .article-lead {
    color: #ccc;
    border-bottom-color: #333;
}

body.dark-mode .article-text-new {
    color: #ccc;
}

body.dark-mode .author-box {
    background: #252525;
    border-top-color: #333;
}

body.dark-mode .author-box-info h4 {
    color: #e0e0e0;
}

body.dark-mode .author-box-info p {
    color: #aaa;
}

body.dark-mode .sidebar-widget {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .sidebar-widget .widget-title {
    color: #e0e0e0;
}

body.dark-mode .related-article-item {
    border-bottom-color: #333;
}

body.dark-mode .related-article-info h4 a {
    color: #e0e0e0;
}

body.dark-mode .related-article-thumb .no-image {
    background: #252525;
}

body.dark-mode .trending-item {
    border-bottom-color: #333;
}

body.dark-mode .trending-info h4 a {
    color: #e0e0e0;
}

/* =============================================
   TRENDING EXCERPT & READ MORE LINK STYLES
   ============================================= */
.trending-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.read-more-link {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--navy);
    text-decoration: underline;
}

.trending-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

/* Dark mode support */
body.dark-mode .trending-excerpt {
    color: #aaa;
}

body.dark-mode .read-more-link {
    color: #ff6b6b;
}

body.dark-mode .read-more-link:hover {
    color: #fff;
}

/* =============================================
   CATEGORY SECTIONS ON ARTICLE PAGE
   ============================================= */
.category-sections {
    margin-bottom: 40px;
}

.category-section {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.category-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-header h2 i {
    font-size: 28px;
    color: var(--accent);
}

.category-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-article-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-article-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.category-article-thumb {
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.category-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-article-item:hover .category-article-thumb img {
    transform: scale(1.1);
}

.category-article-thumb .no-image {
    width: 100%;
    height: 100%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 32px;
}

.category-article-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-article-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.category-article-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-article-content h3 a:hover {
    color: var(--accent);
}

.category-article-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-article-date {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-article-date i {
    color: var(--accent);
}

/* Responsive Category Sections */
@media (max-width: 768px) {
    .category-section {
        padding: 20px;
    }
    
    .category-header h2 {
        font-size: 20px;
    }
    
    .category-articles {
        grid-template-columns: 1fr;
    }
    
    .category-article-item {
        flex-direction: column;
    }
    
    .category-article-thumb {
        width: 100%;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .category-section {
        padding: 15px;
    }
    
    .category-header h2 {
        font-size: 18px;
    }
    
    .category-header h2 i {
        font-size: 22px;
    }
    
    .category-article-thumb {
        height: 140px;
    }
    
    .category-article-content h3 {
        font-size: 15px;
    }
    
    .category-article-content p {
        font-size: 13px;
    }
}

/* Dark Mode for Category Sections */
body.dark-mode .category-section {
    background: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .category-header {
    border-bottom-color: #333;
}

body.dark-mode .category-header h2 {
    color: #e0e0e0;
}

body.dark-mode .category-article-item {
    background: #252525;
}

body.dark-mode .category-article-item:hover {
    background: #2a2a2a;
}

body.dark-mode .category-article-content h3 a {
    color: #e0e0e0;
}

body.dark-mode .category-article-content h3 a:hover {
    color: var(--accent);
}

body.dark-mode .category-article-content p {
    color: #aaa;
}

body.dark-mode .category-article-date {
    color: #888;
}

body.dark-mode .category-article-thumb .no-image {
    background: #333;
}
