/* Modern News Website - Core Styles
---------------------------------------- */
:root {
    --primary: #c3522e;
    --primary-light: #f6646e;
    --primary-dark: #c01c29;
    --secondary: #1d3557;
    --secondary-light: #3d5c88;
    --secondary-dark: #0e1a2b;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --dark: #212529;
    --bg-light: #f8f9fa;
    --transition-fast: 0.3s;
    --transition-medium: 0.5s;
    --transition-slow: 0.8s;
    --border-radius-sm: 0.25rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-hover: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-pill: 50rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Almarai', sans-serif;
    color: var(--text-primary);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
}

a {
font-family: 'Cairo';
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-fast) ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

button {
    cursor: pointer;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* Dark Mode Styles
---------------------------------------- */
.dark-mode {
    --gray-100: #1c1c1c;
    --gray-200: #2d2d2d;
    --gray-300: #3d3d3d;
    --gray-400: #525252;
    --gray-500: #777777;
    --gray-600: #a0a0a0;
    --gray-700: #c7c7c7;
    --gray-800: #dedede;
    --gray-900: #f8f8f8;
    --light: #121212;
    --white: #121212;
    background-color: var(--gray-100);
    color: var(--gray-900);
}

.dark-mode .bg-white {
    background-color: var(--gray-200) !important;
}

.dark-mode .shadow-sm,
.dark-mode .shadow-md,
.dark-mode .shadow-lg {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
}

.dark-mode .border {
    border-color: var(--gray-300) !important;
}

.dark-mode .text-dark {
    color: var(--gray-900) !important;
}

.dark-mode .text-light {
    color: var(--gray-100) !important;
}

.dark-mode .text-muted {
    color: var(--gray-600) !important;
}

/* Header Styles - Improved
---------------------------------------- */
.neo-header {
    position: relative;
    z-index: 1000;
}

.top-bar {
    background-color: var(--secondary);
    color: #fff;
    font-size: 0.9rem;
    position: relative;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
}

.social-links .social-link {
    color: #fff;
    margin-left: 0.75rem;
    opacity: 0.7;
    transition: all var(--transition-fast) ease;
}

.social-links .social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.btn-lang {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-color: rgba(255,255,255,0.3);
}

.btn-lang:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.main-header {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
}

.dark-mode .main-header {
    background-color: var(--dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.logo-container {
    position: relative;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    justify-content: center;
}
.post-body-content p{
font-size:1.2rem;text-align: justify;
}
.nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-item {
    /* position: relative; */
    padding: 0 0.75rem;
}

.menu-item > a {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem 0.25rem;
    transition: all var(--transition-fast) ease;
    /* position: relative; */
}

.menu-item > a:hover, .menu-item.active > a {
    color: var(--primary);
}

.menu-item > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast) ease;
}

.menu-item > a:hover:after, .menu-item.active > a:after {
    width: 100%;
    left: 0;
    right: auto;
}

.dark-mode .menu-item > a {
    color: #fff;
}

/* Fixed Megamenu and Dropdown Styles */
.has-dropdown {
    /* position: relative; */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    padding: 0.75rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    z-index: 9999;
    list-style: none;
    border-top: 3px solid var(--primary);
}

.dark-mode .dropdown-menu {
    background-color: var(--gray-200);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu li a:hover {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    transform: translateX(-5px);
    padding-right: 2rem;
}

.dropdown-menu li a:hover::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    transition: right 0.3s ease;
}

.dark-mode .dropdown-menu li a {
    color: #fff;
}

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

/* Enhanced Megamenu */
.megamenu {
    position: absolute;
    width: 90vw;
    top: 100%;
    right: 5%;
    /* left: 0; */
    background-color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    z-index: 9999;
    border-top: 3px solid var(--primary);
}

.dark-mode .megamenu {
    background-color: var(--gray-200);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.has-dropdown:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-right: 1rem;
    font-size: 1.1rem;
    color: var(--secondary);
}

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

.megamenu-title:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: var(--primary);
    border-radius: 2px;
}

.submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-list li {
    margin-bottom: 0.6rem;
}

.submenu-list li a {
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
    position: relative;
    overflow: hidden;
}

.submenu-list li a i {
    transition: transform 0.3s ease;
}

.dark-mode .submenu-list li a {
    color: rgba(255,255,255,0.8);
}

.submenu-list li a:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.submenu-list li a:hover i {
    transform: translateX(-3px);
}

.megamenu-featured {
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.megamenu-featured:hover {
    transform: translateY(-5px);
}

.featured-img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.featured-img-container img {
    transition: transform 0.6s ease;
}

.megamenu-featured:hover .featured-img-container img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.header-tools {
    display: flex;
    align-items: center;
}

.btn-tool {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast) ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-tool:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.dark-mode .btn-tool {
    color: #fff;
}

.btn-tool:hover {
    color: var(--primary);
}

.btn-tool:hover::before {
    transform: scale(1);
}

.dark-mode .btn-tool:hover::before {
    background: rgba(255,255,255,0.1);
}

.hamburger {
    position: relative;
    width: 24px;
    height: 18px;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast) ease;
}

.dark-mode .hamburger span {
    background-color: #fff;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Enhanced Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.show {
    opacity: 1;
    visibility: visible;
}

.search-panel {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    color: #fff;
    transform: translateY(30px);
    transition: transform 0.5s ease;
}

.search-overlay.show .search-panel {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.search-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.search-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.search-form .input-group {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.search-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    height: 60px;
    padding: 0 1.5rem;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-form .btn {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.popular-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: var(--border-radius-pill);
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.popular-tag:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Enhanced Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -320px;
    width: 320px;
    background-color: #fff;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.dark-mode .mobile-menu {
    background-color: var(--gray-200);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .mobile-menu-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode .mobile-menu-close {
    color: #fff;
}

.mobile-menu-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-menu-body {
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-mode .mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.dark-mode .mobile-nav li a {
    color: #fff;
}

.mobile-nav li.active a {
    color: var(--primary);
}

.mobile-nav li a:hover {
    background-color: rgba(230, 57, 70, 0.05);
    color: var(--primary);
}

.mobile-nav .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav .submenu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-nav .submenu-toggle.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    padding-left: 1rem;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: rgba(0, 0, 0, 0.02);
}

.dark-mode .mobile-submenu {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-submenu.show {
    max-height: 1000px;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu li a {
    padding: 0.8rem 1.5rem;
    font-weight: 400;
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.dark-mode .mobile-submenu li a {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-submenu li a:hover {
    color: var(--primary);
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .mobile-menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-icon-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon-sm:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Preloader */
.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;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.dark-mode .preloader {
    background-color: #121212;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 120px;
    margin-bottom: 20px;
}

.preloader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
}

.preloader-spinner:after {
    content: '';
    position: absolute;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
}

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

.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 2000;
    transition: width 0.1s ease;
}

/* Enhanced News Ticker */
.ticker-wrapper {
    background-color: var(--primary);
    color: #fff;
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    z-index: 99;
}

.ticker-label {
    background-color: var(--primary-dark);
    color: #fff;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-weight: 700;
    position: relative;
    min-width: 80px;
    z-index: 2;
}

.label-arrow {
    fill: var(--primary-dark);
    height: 100%;
    width: 20px;
    margin-right: -20px;
    position: relative;
    z-index: 2;
}

.ticker-container {
    flex: 1;
    overflow: hidden;
    height: 100%;
}

.ticker-container .swiper {
    height: 100%;
}

.ticker-container .swiper-wrapper {
    align-items: center;
}

.ticker-item {
    display: flex;
    align-items: center;
    color: #fff;
    white-space: nowrap;
    height: 100%;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ticker-time {
    font-weight: 600;
    margin-left: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.ticker-controls {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.featured-tertiary-image-container{
height:300px;overflow:hidden
}
.ticker-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticker-button:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-swiper {
    height: 400px;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 10s ease;
}

.swiper-slide-active .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
 
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: #fff;
    padding: 4rem 0;
    /* height: 100%; */
    display: flex
;
    align-items: center;
}


.hero-meta {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.hero-cat {
    background-color: var(--primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 0.75rem;
}

.hero-date {
    opacity: 0.8;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    align-items: center;
}

.btn-share {
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-share:hover {
    background-color: #fff;
    color: var(--primary);
}

.share-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 0.5rem;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 10;
}

.share-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.share-dropdown a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    margin: 0 0.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.share-dropdown a:nth-child(1) {
    background-color: #3b5998;
}

.share-dropdown a:nth-child(2) {
    background-color: #1DA1F2;
}

.share-dropdown a:nth-child(3) {
    background-color: #25D366;
}

.share-dropdown a:nth-child(4) {
    background-color: #0088cc;
}

.share-dropdown a:hover {
    transform: translateY(-3px);
}

.hero-pagination {
    position: absolute;
    bottom: 20px !important;
    text-align: center;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 5px;
    background-color: var(--primary);
}

.hero-button-next,
.hero-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-80%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-button-next:hover,
.hero-button-prev:hover {
    background-color: var(--primary);
}

.hero-button-next:after,
.hero-button-prev:after {
    font-size: 1.2rem;
}

/* Enhanced Featured News Section */
.featured-news {
    position: relative;
}

.section-heading {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60%;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.article-card {
    transition: all 0.4s ease;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.img-wrapper {
    overflow: hidden;
    position: relative;
}

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

.article-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.card-body {
    position: relative;
}

.article-date,
.article-views {
    font-size: 0.85rem;
}

.card-title {
    line-height: 1.4;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-title a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

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

.dark-mode .card-title a {
    color: #fff;
}

.article-author {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.dark-mode .article-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Category Tabs */
.category-tabs {
    padding: 60px 0;
    position: relative;
}

.nav-pills {
    background-color: #fff;
    border-radius: var(--border-radius-pill);
    padding: 0.25rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dark-mode .nav-pills {
    background-color: var(--gray-300);
}

.nav-pills .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border: none;
}

.dark-mode .nav-pills .nav-link {
    color: rgba(255,255,255,0.7);
}

.nav-pills .nav-link:hover {
    color: var(--primary);
}

.nav-pills .nav-link.active {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
}

.tab-content {
    margin-top: 2rem;
}

.category-tab-pane .swiper {
    padding: 1rem 0 3rem 0;
}

.category-tab-pane .swiper-pagination {
    bottom: 0;
}

.category-tab-pane .swiper-button-next,
.category-tab-pane .swiper-button-prev {
    color: var(--primary);
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.dark-mode .category-tab-pane .swiper-button-next,
.dark-mode .category-tab-pane .swiper-button-prev {
    background-color: var(--gray-300);
}

.category-tab-pane .swiper-button-next:after,
.category-tab-pane .swiper-button-prev:after {
    font-size: 1rem;
}

/* Enhanced Video Gallery Section - فيديو نون */
.video-gallery {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.97) 100%);
    overflow: hidden;
}

.dark-mode .video-gallery {
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.05) 0%, rgba(14, 26, 43, 0.1) 100%);
}

/* Visual decorative elements */
.video-gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    opacity: 0.05;
    filter: blur(40px);
}

.video-gallery::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 10%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary), var(--secondary-light));
    opacity: 0.07;
    filter: blur(50px);
}

/* Enhanced Section Header */
.video-section-header {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--primary) 30%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.video-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 70%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 50px;
}

.video-section-title::before {
    content: 'نون';
    position: absolute;
    top: -70%;
    right: -15px;
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--primary);
    z-index: -1;
    transform: rotate(-7deg);
}

.video-gallery .view-all-link {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0.15) 100%);
    border: 1px solid rgba(230, 57, 70, 0.2);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
}

.video-gallery .view-all-link i {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    margin-right: 5px;
}

.video-gallery .view-all-link:hover {
    transform: translateY(-3px);
    color: #fff;
    background: var(--primary);
}

.video-gallery .view-all-link:hover i {
    transform: translateX(-8px);
}

/* Main Featured Video Card */
.featured-video-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    transform: translateY(0);
    height: 100%;
    position: relative;
    will-change: transform;
    transform: translateZ(0);
}

.dark-mode .featured-video-card {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-video-card:hover {
    transform: translateY(-7px);
}

.featured-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 350px;
}

.featured-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.featured-video-card:hover .featured-video-wrapper img {
    transform: scale(1.05);
    filter: none;
}

.featured-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.featured-video-card:hover .featured-video-wrapper::before {
    opacity: 0.9;
}

/* Enhanced Play Button */
.btn-play-featured {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 2;
    color: #fff;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(230, 57, 70, 0.85);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    will-change: transform;
    transform: translateZ(0);
}

.btn-play-featured::before,
.btn-play-featured::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
}

.btn-play-featured::before {
    animation: pulse-play 2s infinite;
}

.btn-play-featured::after {
    animation: pulse-play 2s 0.5s infinite;
}

@keyframes pulse-play {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.featured-video-card:hover .btn-play-featured {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.5);
}

.btn-play-featured i {
    font-size: 2.2rem;
    margin-right: -5px;
    transition: transform 0.5s ease;
}

.featured-video-card:hover .btn-play-featured i {
    transform: scale(1.2);
}

/* Video Meta Badges */
.video-meta {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.video-duration {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.video-duration i {
    margin-left: 5px;
    color: var(--primary-light);
}

.video-quality {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Video Content */
.featured-video-content {
    padding: 1.75rem;
}

.featured-video-category {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.25);
    transition: all 0.5s ease;
}

.featured-video-card:hover .featured-video-category {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.featured-video-title {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.featured-video-title a {
    color: var(--text-primary);
    display: block;
    transition: all 0.4s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.dark-mode .featured-video-title a {
    color: #fff;
}

.featured-video-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dark-mode .featured-video-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Video Stats Row */
.video-stats {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.video-stat {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.04);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.dark-mode .video-stat {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

.video-stat:hover {
    background: rgba(230, 57, 70, 0.08);
    transform: translateY(-2px);
}

.video-stat i {
    margin-left: 8px;
    color: var(--primary);
    font-size: 0.85rem;
}

/* Reporter Info */
.reporter {
    display: flex;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.dark-mode .reporter {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reporter-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
    border: 2px solid var(--light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dark-mode .reporter-img {
    border-color: rgba(255, 255, 255, 0.1);
}

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

.featured-video-card:hover .reporter-img {
    transform: scale(1.15);
    border-color: var(--primary-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reporter-info {
    flex: 1;
}

.reporter-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.dark-mode .reporter-name {
    color: rgba(255, 255, 255, 0.9);
}

.featured-video-card:hover .reporter-name {
    color: var(--primary);
}

.reporter-role {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.dark-mode .reporter-role {
    color: rgba(255, 255, 255, 0.6);
}

/* Secondary Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    height: 100%;
}

/* Secondary Video Cards */
.video-card-sm {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background: #fff;
    height: 100%;
    position: relative;
    will-change: transform;
    transform: translateZ(0);
}

.dark-mode .video-card-sm {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card-sm:hover {
    transform: translateY(-7px);
}

.video-wrapper-sm {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 0.6rem;
    min-height: 160px;
}

.video-wrapper-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    z-index: 1;
    transition: opacity 0.5s ease;
}

.video-wrapper-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.video-card-sm:hover .video-wrapper-sm img {
    transform: scale(1.05);
    filter: none;
}

.btn-play-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 50px;
    height: 50px;
    background-color: rgba(230, 57, 70, 0.85);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform;
    transform: translateZ(0);
}

.btn-play-sm::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse-play-sm 2s infinite;
}

@keyframes pulse-play-sm {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.video-card-sm:hover .btn-play-sm {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-play-sm i {
    font-size: 1.2rem;
    margin-right: -3px;
    transition: transform 0.3s ease;
}

.video-card-sm:hover .btn-play-sm i {
    transform: scale(1.2);
}

/* Small Video Duration & Badges */
.video-duration-sm {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
}

.video-duration-sm i {
    font-size: 0.7rem;
    margin-left: 5px;
    color: var(--primary-light);
}

.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-live {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: #fff;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.badge-exclusive {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: #000;
}

.badge-new {
    background: linear-gradient(45deg, #198754, #20c997);
    color: #fff;
}

/* Small Video Content */
.video-sm-content {
    padding: 1.25rem;
}

.video-sm-title {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.video-sm-title a {
    color: var(--text-primary);
    display: block;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.dark-mode .video-sm-title a {
    color: #fff;
}

.video-sm-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-sm-date, 
.video-sm-views {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.04);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dark-mode .video-sm-date, 
.dark-mode .video-sm-views {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
}

.video-sm-date i, 
.video-sm-views i {
    margin-left: 5px;
    font-size: 0.75rem;
}

.video-sm-views i {
    color: var(--primary-light);
}

.video-card-sm:hover .video-sm-date,
.video-card-sm:hover .video-sm-views {
    background: rgba(230, 57, 70, 0.08);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-video-wrapper {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .video-section-title {
        font-size: 2.25rem;
    }
    
    .featured-video-card {
        margin-bottom: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .video-gallery {
        padding: 4rem 0;
    }
    
    .video-section-title {
        font-size: 2rem;
    }
    
    .video-section-title::before {
        font-size: 4rem;
        top: -50%;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-video-wrapper {
        height: 250px;
    }
    
    .btn-play-featured {
        width: 70px;
        height: 70px;
    }
    
    .btn-play-featured i {
        font-size: 1.8rem;
    }
    
    .featured-video-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .video-gallery {
        padding: 3rem 0;
    }
    
    .video-section-title {
        font-size: 1.75rem;
    }
    
    .video-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Enhanced Video Gallery Section */
.video-gallery {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.7), rgba(255, 255, 255, 1));
}

.dark-mode .video-gallery {
    background: linear-gradient(to bottom, rgba(29, 53, 87, 0.1), rgba(14, 26, 43, 0.05));
}

.video-section-header {
    position: relative;
    margin-bottom: 2.5rem;
}

.video-section-title {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 0.5rem;
}

.video-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.video-gallery .view-all-link {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.2);
    border: 1px solid rgba(230, 57, 70, 0.1);
    background: linear-gradient(to right, rgba(230, 57, 70, 0.05) 0%, rgba(230, 57, 70, 0.1) 100%);
}

.video-gallery .view-all-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    background: linear-gradient(to right, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.2) 100%);
}

.video-gallery .view-all-link i {
    transition: transform 0.3s ease;
}

.video-gallery .view-all-link:hover i {
    transform: translateX(-5px);
}

/* Featured Video Card */
.featured-video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    transform: translateY(0);
    background: #fff;
    border: none;
    height: 100%;
}

.dark-mode .featured-video-card {
    background: var(--gray-200);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-video-card:hover {
    transform: translateY(-7px);
}

.featured-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.featured-video-card:hover .featured-video-wrapper::before {
    opacity: 0.9;
}

.featured-video-wrapper img {
    transition: transform 0.8s ease, filter 0.8s ease;
}

.featured-video-card:hover .featured-video-wrapper img {
    transform: scale(1.05);
    filter: none;
}

/* Enhanced Play Button */
.btn-play-featured {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    background-color: rgba(230, 57, 70, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-play-featured::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.featured-video-card:hover .btn-play-featured {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.6);
}

.btn-play-featured i {
    font-size: 2rem;
    margin-right: -4px;
    transition: transform 0.3s ease;
}

.featured-video-card:hover .btn-play-featured i {
    transform: scale(1.2);
}

/* Video Meta */
.video-meta {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.video-duration {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.video-duration i {
    margin-left: 5px;
    font-size: 0.7rem;
}

.video-quality {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Video Content */
.featured-video-content {
    padding: 1.5rem;
}

.featured-video-category {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.2);
}

.featured-video-card:hover .featured-video-category {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.featured-video-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.featured-video-title a {
    color: var(--text-primary);
    display: inline-block;
    transition: all 0.3s ease;
}

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

.dark-mode .featured-video-title a {
    color: #fff;
}

.featured-video-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dark-mode .featured-video-desc {
    color: rgba(255, 255, 255, 0.7);
}

.video-stats {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.video-stat {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.dark-mode .video-stat {
    color: rgba(255, 255, 255, 0.6);
}

.video-stat i {
    margin-left: 0.4rem;
    color: var(--primary);
}

.reporter {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .reporter {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reporter-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 0.75rem;
    border: 2px solid var(--light);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.dark-mode .reporter-img {
    border: 2px solid var(--gray-600);
}

.featured-video-card:hover .reporter-img {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reporter-info {
    flex: 1;
}

.reporter-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.dark-mode .reporter-name {
    color: rgba(255, 255, 255, 0.9);
}

.reporter-role {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.dark-mode .reporter-role {
    color: rgba(255, 255, 255, 0.6);
}

/* Secondary Videos */
.video-card-sm {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background: #fff;
    border: none;
    height: 100%;
}

.dark-mode .video-card-sm {
    background: var(--gray-200);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-card-sm:hover {
    transform: translateY(-7px);
}

.video-wrapper-sm {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0.5rem;
}

.video-wrapper-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-card-sm:hover .video-wrapper-sm::before {
    opacity: 0.9;
}

.video-wrapper-sm img {
    transition: transform 0.6s ease;
}

.video-card-sm:hover .video-wrapper-sm img {
    transform: scale(1.05);
    filter: none;
}

.btn-play-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 45px;
    height: 45px;
    background-color: rgba(230, 57, 70, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card-sm:hover .btn-play-sm {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.5);
}

.video-duration-sm {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
}

.video-duration-sm i {
    font-size: 0.7rem;
    margin-left: 3px;
}

.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-live {
    background-color: rgba(220, 53, 69, 0.9);
    color: #fff;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.badge-exclusive {
    background-color: rgba(255, 193, 7, 0.9);
    color: #000;
}

.badge-new {
    background-color: rgba(25, 135, 84, 0.9);
    color: #fff;
}

.video-sm-content {
    padding: 1rem;
}

.video-sm-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.video-sm-title a {
    color: var(--text-primary);
    display: block;
    transition: all 0.3s ease;
}

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

.dark-mode .video-sm-title a {
    color: #fff;
}

.video-sm-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-sm-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.video-sm-date i {
    margin-left: 5px;
}

.dark-mode .video-sm-date {
    color: rgba(255, 255, 255, 0.6);
}

.video-sm-views {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.video-sm-views i {
    margin-left: 5px;
    color: var(--primary-light);
}

.dark-mode .video-sm-views {
    color: rgba(255, 255, 255, 0.6);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991.98px) {
    .video-section-title {
        font-size: 2rem;
    }
    
    .featured-video-card {
        margin-bottom: 1.5rem;
    }
    
    .btn-play-featured {
        width: 60px;
        height: 60px;
    }
    
    .btn-play-featured i {
        font-size: 1.5rem;
    }
    
    .featured-video-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .video-gallery {
        padding: 3rem 0;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-section-title {
        font-size: 1.5rem;
    }
    
    .reporter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reporter-img {
        margin-bottom: 0.5rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    position: relative;
}

.newsletter-box {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dark-mode .newsletter-box {
    background-color: var(--gray-200);
}

.newsletter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.newsletter-icon {
    background-color: rgba(230, 57, 70, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.newsletter-box:hover .newsletter-icon {
    transform: scale(1.1);
    background-color: rgba(230, 57, 70, 0.2);
}

.newsletter-form .input-group {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: var(--border-radius-pill);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: 1px solid rgba(0,0,0,0.05);
    padding-left: 1.5rem;
    height: 60px;
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-weight: 700;
    height: 60px;
}

/* Toast container */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.toast {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-header {
    background-color: rgba(0,0,0,0.02);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.toast-body {
    padding: 1rem;
}

/* Enhanced Footer styling from existing code */
.main-footer {
    position: relative;
    color: #fff;
    overflow: hidden;
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
}

/* Footer Wave Animation */
.main-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%231d3557'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%231d3557'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%231d3557'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 1;
}

/* Footer Sections */
.footer-top {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    border-bottom: 1px solid #203a62;
}

/* Logo Animation */
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* About Text Animation */
.footer-about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Social Links */
.social-links-lg {
    display: flex;
    gap: 0.8rem;
}

.social-link-lg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-link-lg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.social-link-lg:hover {
    transform: translateY(-5px);
    color: #fff;
}

.social-link-lg:hover:before {
    transform: scale(1);
}

/* Footer Award */
.footer-awards {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-awards:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.award-title {
    color: #fff;
    font-size: 0.95rem;
}

.award-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Latest News Section */
.footer-heading {
    position: relative;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-heading::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

/* Footer News Items */
.footer-news-item {
    position: relative;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    overflow: hidden;
}

.footer-news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: -1;
}

.footer-news-item:hover {
    transform: translateY(-3px) !important;
}

.footer-news-item:hover::before {
    transform: scaleY(1);
}

.footer-news-cat {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-news-item h6 a {
    color: #fff;
    transition: all 0.3s ease;
    display: block;
    font-weight: 600;
    line-height: 1.4;
    font-size: 0.95rem;
}

.footer-news-item:hover h6 a {
    color: var(--primary);
    transform: translateX(-5px);
}

/* Newsletter Section */
.footer-newsletter {
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 1.5s ease;
}

.footer-newsletter:hover::after {
    opacity: 1;
}

.footer-subscribe-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    border-radius: var(--border-radius-pill) 0 0 var(--border-radius-pill);
}

.footer-subscribe-form .btn {
    border-radius: 0 var(--border-radius-pill) var(--border-radius-pill) 0;
}

.footer-subscribe-form .btn i {
    transition: transform 0.3s ease;
}

.footer-subscribe-form .btn:hover i {
    transform: translateX(5px);
}

.footer-subscribe-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-subscribe-form .form-check-label {
    color: rgba(255, 255, 255, 0.7);
}

.app-badges {
    display: flex;
    gap: 0.5rem;
}

.app-badge {
    transition: all 0.3s ease;
}

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

/* Footer Middle Section */
.footer-middle {
    position: relative;
    z-index: 2;
}

/* Footer Links */
.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.15rem 0;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(-5px);
}

.footer-links li:hover a {
    color: var(--primary);
    padding-right: 0.5rem;
}

.footer-links li:hover a::before {
    width: 100%;
    right: auto;
    left: 0;
}

/* Contact Info */
.contact-info {
    padding-left: 0;
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
}

.contact-info li i {
    color: var(--primary);
    margin-left: 0.75rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-info li a:hover {
    color: var(--primary);
}

.footer-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.footer-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-bottom-links .list-inline-item {
    margin-right: 0;
    margin-left: 1rem;
}

.footer-bottom-links .list-inline-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links .list-inline-item a:hover {
    color: var(--primary);
}

/* Back to Top Button */
.footer-back-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    will-change: transform;
    transform: translateZ(0);
}

.footer-back-to-top.active {
    bottom: 30px;
    opacity: 1;
}

.footer-back-to-top:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-5px);
}

.footer-back-to-top i {
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .main-footer {
        text-align: center;
    }
    
    .footer-heading::before {
        display: none;
    }
    
    .contact-info {
        display: inline-block;
        text-align: right;
    }
    
    .footer-news-item:hover h6 a {
        transform: translateX(0);
    }
    
    .social-links-lg {
        justify-content: center;
    }
    
    .footer-links li:hover {
        transform: translateX(0);
    }
}

/* Dark Mode Support */
.dark-mode .footer-back-to-top {
    background-color: var(--primary-dark);
}

.dark-mode .footer-newsletter {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Add responsive fixes for various screen sizes */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-swiper {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-swiper {
        height: 450px;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 400px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-meta {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
}

@media (max-width: 576px) {
    .hero-swiper {
        height: 350px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-cat {
        font-size: 0.7rem;
    }
    .hero-date {
        font-size: 0.8rem;
    }
    .hero-description {
        display: none;
    }
    .hero-button-next,
    .hero-button-prev {
        width: 40px;
        height: 40px;
    }
    .btn-play-large {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* Animation Helper Classes */
.animate-on-scroll {
    opacity: 1;
    transform: none;
}

[data-animation="fadeIn"] {
    opacity: 1;
}

[data-animation="fadeInUp"] {
    opacity: 1;
    transform: none;
}

.aos-animate[data-animation="fadeIn"],
.aos-animate[data-animation="fadeInUp"] {
    opacity: 1;
    transform: none;
}

/* Optimized animation class */
.animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.views-highlight {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Remove filter effects that cause lag */
.featured-video-card:hover .featured-video-wrapper img,
.video-card-sm:hover .video-wrapper-sm img {
  transform: scale(1.05);
  filter: none;
}

/* Photo Gallery Section Styles
---------------------------------------- */
.photo-gallery-section {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
    overflow: hidden;
}

.dark-mode .photo-gallery-section {
    background: linear-gradient(135deg, rgba(25, 32, 45, 0.3) 0%, rgba(20, 25, 35, 0.1) 100%);
}

.photo-gallery-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 0;
}

.photo-gallery-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 0;
}

/* Gallery Filters */
.gallery-filters {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 2;
}

.filter-buttons {
    background-color: #fff;
    border-radius: 50px;
    padding: 0.3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.dark-mode .filter-buttons {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-filter {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin: 0.2rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.dark-mode .btn-filter {
    color: rgba(255, 255, 255, 0.7);
}

.btn-filter.active, 
.btn-filter:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(0);
    will-change: transform, box-shadow;
}

.dark-mode .gallery-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.gallery-item.featured-gallery-item {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-inner {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-info {
    margin-top: auto;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-gallery-item .gallery-title {
    font-size: 1.4rem;
}

.gallery-date {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.gallery-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-actions {
    transform: translateY(0);
    opacity: 1;
}

.btn-gallery-view,
.btn-gallery-share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gallery-view:hover,
.btn-gallery-share:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35em 0.75em;
    border-radius: 30px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover .gallery-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Fancybox Custom Styling */
.fancybox__content {
    direction: rtl;
}

.fancybox__caption {
    font-family: 'Cairo', sans-serif;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 767.98px) {
    .gallery-grid {
        gap: 15px;
    }
    
    .btn-filter {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-title {
        font-size: 1rem;
    }
    
    .featured-gallery-item .gallery-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .gallery-item.featured-gallery-item {
        grid-column: auto;
        grid-row: auto;
    }
    
    .gallery-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .filter-buttons {
        width: max-content;
    }
}

/* Animation Classes */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.gallery-item.animated {
    animation: zoomIn 0.6s both;
}

/* Special Reports Section Styles
---------------------------------------- */
.special-reports-section {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    overflow: hidden;
    padding: 4rem 0;
}

.dark-mode .special-reports-section {
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.1) 0%, rgba(29, 53, 87, 0.05) 100%);
}

/* Decorative elements */
.special-reports-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e63946' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.special-reports-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0) 70%);
    z-index: 0;
}

/* Report Cards */
.report-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    z-index: 1;
}

.dark-mode .report-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.report-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Featured Report Styles */
.featured-report {
    min-height: 400px;
}

.report-img-col {
    height: 100%;
}

.report-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.report-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.report-card:hover .report-img {
    transform: scale(1.05);
}

.report-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.featured-report .report-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.report-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border-radius: 30px;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.report-badge.small {
    padding: 5px 12px;
    font-size: 0.8rem;
}

.report-card:hover .report-badge {
    transform: translateY(-3px);
}

.badge-icon {
    margin-left: 8px;
    font-size: 1.1rem;
}

.report-badge.small .badge-icon {
    font-size: 0.9rem;
}

/* Report Content */
.report-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-report .report-content {
    color: #fff;
    background: transparent;
}

.report-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.report-category.small {
    font-size: 0.8rem;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.report-card:hover .report-category {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.report-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.small-report .report-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.compact-report .report-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.featured-report .report-title {
    color: #fff;
}

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

.report-card:hover .report-title {
    color: var(--primary);
}

.featured-report:hover .report-title {
    color: var(--primary-light);
}

.report-excerpt {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.dark-mode .report-excerpt {
    color: rgba(255, 255, 255, 0.7);
}

/* Report Meta */
.report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.featured-report .report-meta {
    color: rgba(255, 255, 255, 0.8);
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.meta-item.small {
    font-size: 0.8rem;
}

.meta-item i {
    margin-left: 5px;
    color: var(--primary-light);
}

.btn-report {
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
}

.btn-report:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.btn-report i {
    transition: transform 0.3s ease;
}

.btn-report:hover i {
    transform: translateX(-5px);
}

/* Small Report Layouts */
.small-report {
    display: flex;
    flex-direction: column;
}

.small-report .report-img-wrapper {
    height: 180px;
    border-radius: 15px 15px 0 0;
}

.compact-report .report-img-wrapper {
    height: 200px;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .featured-report {
        min-height: 350px;
    }
}

@media (max-width: 991px) {
    .featured-report .report-title {
        font-size: 1.4rem;
    }
    
    .report-excerpt {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .featured-report {
        min-height: auto;
    }
    
    .featured-report .report-content {
        background: rgba(0, 0, 0, 0.8);
        color: #fff;
    }
    
    .featured-report .report-img-wrapper {
        height: 250px;
    }
    
    .featured-report .report-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
}

@media (max-width: 575px) {
    .report-title {
        font-size: 1.3rem;
    }
    
    .small-report .report-title, 
    .compact-report .report-title {
        font-size: 1.1rem;
    }
    
    .report-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* Animation helpers for reports */
@keyframes reportFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.special-reports-section .animate-on-scroll.animated {
    animation: reportFadeUp 0.8s both;
}

/* Featured Report Card - Enhanced Design */
.featured-report-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dark-mode .featured-report-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-report-card:hover {
    transform: translateY(-8px);
}

/* Grid Layout for Featured Report */
.report-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100%;
}

/* Media Section */
.report-media {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.report-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.featured-report-card:hover .report-cover-img {
    transform: scale(1.05);
}

.report-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

/* Category Label */
.report-category-label {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.featured-report-card:hover .report-category-label {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

/* Report Type Badge */
.report-type-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.report-type-badge i {
    color: var(--primary-light);
    font-size: 1rem;
}

.featured-report-card:hover .report-type-badge {
    background: rgba(255, 255, 255, 0.3);
}

/* Content Section */
.report-content-wrapper {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Author Info */
.report-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(230, 57, 70, 0.1);
    transition: all 0.3s ease;
}

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

.featured-report-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: var(--primary);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Report Title */
.report-title {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.featured-report-card:hover .report-title {
    color: var(--primary);
}

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

/* Report Summary */
.report-summary {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.dark-mode .report-summary {
    color: rgba(255, 255, 255, 0.7);
}

/* Meta Information */
.report-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-stat {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dark-mode .meta-stat {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.meta-stat:hover {
    background: rgba(230, 57, 70, 0.08);
    transform: translateY(-2px);
}

.meta-stat i {
    margin-left: 8px;
    color: var(--primary);
}

/* Actions Area */
.report-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-read:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    color: white;
}

.btn-read i {
    transition: transform 0.3s ease;
}

.btn-read:hover i {
    transform: translateX(-5px);
}

.report-share-tools {
    display: flex;
    gap: 10px;
}

.btn-share,
.btn-bookmark {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode .btn-share,
.dark-mode .btn-bookmark {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.btn-share:hover,
.btn-bookmark:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .report-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 1fr;
    }
    
    .report-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .report-content-wrapper {
        padding: 20px;
    }
    
    .report-title {
        font-size: 1.4rem;
    }
    
    .report-meta {
        gap: 10px;
    }
    
    .meta-stat {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}
/* Articles & Analysis Section
---------------------------------------- */
.articles-section {
    position: relative;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.dark-mode .articles-section {
    background: linear-gradient(135deg, rgba(25, 32, 45, 0.3) 0%, rgba(20, 25, 35, 0.1) 100%);
}

.articles-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, rgba(230, 57, 70, 0) 70%);
    z-index: 0;
}

.articles-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 53, 87, 0.05) 0%, rgba(29, 53, 87, 0) 70%);
    z-index: 0;
}

/* Section Title Animation */
.section-title-wrapper {
    position: relative;
}

.section-title {
    position: relative;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.animated-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.animated-title:hover::after {
    width: 120px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.dark-mode .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Article Tabs */
.section-controls {
    display: flex;
    align-items: center;
}

.article-tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.article-tabs-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.article-tabs {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-tabs li {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.dark-mode .article-tabs li {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.article-tabs li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.article-tabs li:hover {
    color: #fff;
    transform: translateY(-2px);
}

.article-tabs li:hover::before {
    opacity: 1;
}

.article-tabs li.active {
    color: #fff;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.view-all-link {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-dark);
    transform: translateX(-5px);
}

.view-all-link i {
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(-3px);
}

/* Featured Article */
.featured-article-wrapper {
    position: relative;
    z-index: 1;
}

.featured-article {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.dark-mode .featured-article {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-article:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.featured-article-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.image-wrapper {
    height: 100%;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-article:hover .featured-article-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: all 0.5s ease;
}

.featured-article-content {
    position: relative;
}

.content-wrapper {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category-badge {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.featured-article:hover .category-badge {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.reading-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dark-mode .reading-time {
    color: rgba(255, 255, 255, 0.6);
}

.reading-time i {
    color: var(--primary);
    margin-left: 5px;
}

.article-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.featured-article:hover .article-title {
    color: var(--primary);
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.dark-mode .article-excerpt {
    color: rgba(255, 255, 255, 0.7);
}

/* Author Row */
.article-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-mode .article-author-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
    border: 2px solid rgba(230, 57, 70, 0.1);
    transition: all 0.3s ease;
}

.featured-article:hover .author-image {
    transform: scale(1.1);
    border-color: var(--primary);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.dark-mode .author-name {
    color: #fff;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dark-mode .author-title {
    color: rgba(255, 255, 255, 0.6);
}

.article-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.dark-mode .article-date {
    color: rgba(255, 255, 255, 0.6);
}

.article-date i {
    margin-left: 5px;
    color: var(--primary);
}

/* Article Actions */
.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-read-article {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-read-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
    color: white;
}

.btn-read-article i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-read-article:hover i {
    transform: translateX(-5px);
}

.article-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode .btn-social {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
}

.btn-social:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

/* Articles Grid */
.articles-grid {
    position: relative;
    z-index: 1;
}

.article-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dark-mode .article-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.article-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card .image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.article-category-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover .article-category-label {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.article-bookmark {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.btn-bookmark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-bookmark:hover {
    background: #fff;
    color: var(--primary);
    transform: scale(1.1);
}

.btn-bookmark.active {
    background: #fff;
    color: var(--primary);
}

.article-card-content {
    padding: 20px;
}

.article-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.dark-mode .article-card-title {
    color: #fff;
}

.article-card:hover .article-card-title {
    color: var(--primary);
}

.article-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.dark-mode .article-card-excerpt {
    color: rgba(255, 255, 255, 0.6);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-mode .article-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-meta {
    display: flex;
    align-items: center;
}

.author-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 8px;
}

.author-meta .author-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dark-mode .author-meta .author-name {
    color: rgba(255, 255, 255, 0.7);
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-item {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.dark-mode .stats-item {
    color: rgba(255, 255, 255, 0.6);
}

.stats-item i {
    margin-left: 5px;
    color: var(--primary);
}

.article-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    opacity: 0;
}

/* Load More Button */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 1rem;
}

.btn-load-more:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(3px);
}

/* Animation KeyFrames */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.articles-section .animate-on-scroll {
    opacity: 0;
}

.articles-section .animate-on-scroll.animated[data-animation="fadeIn"] {
    animation: fadeIn 0.8s forwards;
}

.articles-section .animate-on-scroll.animated[data-animation="fadeInUp"] {
    animation: fadeInUp 0.8s forwards;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .content-wrapper {
        padding: 30px;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .featured-article {
        flex-direction: column;
    }
    
    .featured-article-image {
        height: 300px;
    }
    
    .article-title {
        font-size: 1.4rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .report-grid {
        grid-template-columns: 1fr;
    }
    
    .section-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .view-all-link {
        display: none;
    }
}

@media (max-width: 767px) {
    .articles-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 25px;
    }
    
    .article-author-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .article-card-image {
        height: 180px;
    }
    
    .article-card-title {
        font-size: 1rem;
    }
    
    .article-social {
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    .featured-article-image {
        height: 220px;
    }
    
    .article-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
}
/* Sports News Section Styles
---------------------------------------- */
.sports-news-section {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.9) 0%, rgba(245, 245, 245, 0.9) 100%);
    position: relative;
}

.dark-mode .sports-news-section {
    background: linear-gradient(135deg, rgba(25, 32, 45, 0.2) 0%, rgba(20, 25, 35, 0.1) 100%);
}

.sports-news-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Sports Tabs */
.sports-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.sports-tabs li {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dark-mode .sports-tabs li {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.sports-tabs li.active,
.sports-tabs li:hover {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* Live Scores Widget */
.live-scores-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.dark-mode .live-scores-wrapper {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.scores-title {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
}

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

.scores-title i {
    animation: pulse 1.5s infinite;
}

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

.live-scores-container {
    position: relative;
}

.score-card {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.dark-mode .score-card {
    background: rgba(255, 255, 255, 0.05);
}

.score-card:hover {
    background: rgba(230, 57, 70, 0.05);
    transform: translateY(-5px);
}

.match-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.league-name {
    color: var(--text-secondary);
    font-weight: 600;
}

.dark-mode .league-name {
    color: rgba(255, 255, 255, 0.7);
}

.match-time {
    font-weight: 700;
    color: var(--secondary);
}

.dark-mode .match-time {
    color: rgba(255, 255, 255, 0.8);
}

.match-time.live {
    color: #dc3545;
    animation: pulse 1.5s infinite;
}

.match-time.upcoming {
    color: #198754;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.team-logo {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
}

.team-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.match-result {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}

.score {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.dark-mode .score {
    color: #fff;
}

.match-vs {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.dark-mode .match-vs {
    color: rgba(255, 255, 255, 0.7);
}

.scores-nav {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 10px;
}

.scores-nav button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode .scores-nav button {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.scores-nav button:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Featured Sports Card */
.featured-sports-card {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dark-mode .featured-sports-card {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.featured-sports-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-media {
    position: relative;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    transition: transform 1s ease;
    object-fit: cover;
}

.featured-sports-card .card-media img {
    height: 250px;
}

.featured-sports-card:hover .card-media img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.sports-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sports-badge.small {
    font-size: 0.8rem;
    padding: 4px 12px;
}

.featured-sports-card:hover .sports-badge {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.card-content {
    padding: 20px;
}

.content-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    line-height: 1.4;
}

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

.featured-sports-card:hover .content-title {
    color: var(--primary);
}

.content-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dark-mode .content-excerpt {
    color: rgba(255, 255, 255, 0.7);
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-data {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.dark-mode .meta-item {
    color: rgba(255, 255, 255, 0.6);
}

.meta-item i {
    margin-left: 5px;
    color: var(--primary-light);
}

/* Small Sports Cards */
.sports-card-sm {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dark-mode .sports-card-sm {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sports-card-sm:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sports-card-sm .card-media img {
    height: 140px;
}

.sports-card-sm .card-content {
    padding: 15px;
}

.sports-card-sm .content-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* More Sports News Section */
.more-sports-news {
    margin-top: 30px;
}

.news-section-title {
    position: relative;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0;
    padding-right: 15px;
    color: var(--text-primary);
}

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

.news-section-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

.section-controls {
    display: flex;
    gap: 10px;
}

.btn-sports-prev,
.btn-sports-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode .btn-sports-prev,
.dark-mode .btn-sports-next {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-sports-prev:hover,
.btn-sports-next:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.sports-swiper {
    padding: 10px 5px 20px;
    margin: 0 -5px;
}

.sports-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
}

.dark-mode .sports-card {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sports-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sports-card .card-media img {
    height: 160px;
}

.sports-card .card-content {
    padding: 15px;
}

.sports-card .content-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: -webkit-box;
/*     -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .featured-sports-card .card-media img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .sports-tabs {
        gap: 5px;
    }
    
    .sports-tabs li {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .featured-sports-card {
        margin-bottom: 20px;
    }
    
    .score-card {
        padding: 10px;
    }
    
    .team-logo {
        width: 25px;
        height: 25px;
    }
    
    .team-name, .match-time, .league-name {
        font-size: 0.8rem;
    }
    
    .score {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .featured-sports-card .card-media img {
        height: 180px;
    }
    
    .sports-card-sm .card-media img {
        height: 120px;
    }
    
    .sports-card .card-media img {
        height: 140px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .content-title {
        font-size: 1rem;
    }
    
    .sports-card-sm .content-title,
    .sports-card .content-title {
        font-size: 0.9rem;
    }
}

/* Animation for the Sports Section */
@keyframes scoreSlide {
    0% { transform: translateX(30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.score-card {
    animation: scoreSlide 0.5s ease forwards;
}

@keyframes cardScale {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.featured-sports-card.animated,
.sports-card-sm.animated {
    animation: cardScale 0.6s ease forwards;
}
/* Trending Topics Section
---------------------------------------- */
.trending-topics-section {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.dark-mode .trending-topics-section {
    background: linear-gradient(135deg, rgba(25, 32, 45, 0.2) 0%, rgba(20, 25, 35, 0.1) 100%);
}

/* Background Decorative Elements */
.trend-bg-circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0) 70%);
    z-index: 0;
}

.trend-bg-circle-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 53, 87, 0.08) 0%, rgba(29, 53, 87, 0) 70%);
    z-index: 0;
}

/* Trending Tags Card */
.trending-tags-card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s ease;
}

.dark-mode .trending-tags-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trending-tags-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trending-tags-card .card-header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-mode .trending-tags-card .card-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trending-tags-card .card-body {
    padding: 25px;
    height: 565px;
    overflow-y: auto;
}
.intro-post {
    border-right: 7px solid #c3522e;
    border-left: 7px solid #c3522e;
    padding: 20px 30px;
    background: #f1f1f1;
font-size:1.5rem;
font-weight: bold;}
.trending-tags-card .card-footer {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.dark-mode .trending-tags-card .card-footer {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trending-tags-card h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.dark-mode .trending-tags-card h4 {
    color: #fff;
}

/* Trending Tags Cloud */
.trending-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.trending-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dark-mode .trending-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.trending-tag:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.trending-tag:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.trending-tag:hover:before {
    opacity: 1;
}

.trending-tag.size-lg {
    font-size: 1.1rem;
    padding: 10px 20px;
}

.trending-tag.size-md {
    font-size: 0.95rem;
}

.trending-tag.size-sm {
    font-size: 0.85rem;
    padding: 6px 12px;
}

.tag-count {
    margin-right: 5px;
    font-size: 0.75rem;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dark-mode .tag-count {
    background-color: rgba(230, 57, 70, 0.2);
}

.trending-tag:hover .tag-count {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Most Read Card */
.most-read-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s ease;
}

.dark-mode .most-read-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.most-read-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.most-read-card .card-header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.dark-mode .most-read-card .card-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.most-read-card .card-body {
    padding: 20px;
}

.most-read-card h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.dark-mode .most-read-card h4 {
    color: #fff;
}

/* Period Selector */
.period-selector {
    display: flex;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    padding: 3px;
}

.dark-mode .period-selector {
    background: rgba(255, 255, 255, 0.08);
}

.period-btn {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode .period-btn {
    color: rgba(255, 255, 255, 0.7);
}

.period-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 3px 8px rgba(230, 57, 70, 0.3);
}

/* Most Read Items */
.most-read-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.most-read-item {
    display: flex;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.dark-mode .most-read-item {
    background: rgba(255, 255, 255, 0.03);
}

.most-read-item:hover {
    background: rgba(230, 57, 70, 0.05);
    transform: translateX(-5px);
}

.rank-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(230, 57, 70, 0.3);
    z-index: 1;
}

.item-content {
    flex: 1;
    padding: 20px;
    padding-right: 50px; /* Space for rank badge */
}

.item-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.dark-mode .item-title a {
    color: #fff;
}

.most-read-item:hover .item-title a {
    color: var(--primary);
}

.item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dark-mode .item-meta {
    color: rgba(255, 255, 255, 0.6);
}

.item-meta i {
    margin-left: 5px;
    color: var(--primary);
}

.item-image {
    width: 120px;
    min-width: 120px;
    height: auto;
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .trending-tags-card {
        margin-bottom: 30px;
    }
    
    .trending-tags-card .card-body {
        height: auto;
        max-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .period-selector {
        margin-top: 10px;
    }
    
    .item-image {
        width: 100px;
        min-width: 100px;
    }
    
    .item-title {
        font-size: 1rem;
    }
    
    .item-content {
        padding: 15px;
        padding-right: 40px;
    }
    
    .item-meta {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 575.98px) {
    .most-read-item {
        flex-direction: column;
    }
    
    .item-image {
        width: 100%;
        height: 180px;
        order: -1;
    }
    
    .rank-badge {
        top: 10px;
        left: 10px;
        right: auto;
    }
    
    .item-content {
        padding: 15px;
    }
}
/* Weather & Financial Markets Section Styles
---------------------------------------- */
.weather-finance-section {
    background: linear-gradient(135deg, rgba(248, 249, 251, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.dark-mode .weather-finance-section {
    background: linear-gradient(135deg, rgba(25, 32, 45, 0.25) 0%, rgba(20, 25, 35, 0.15) 100%);
}

.section-wave-top,
.section-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-wave-top {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff' opacity='0.1'%3E%3C/path%3E%3C/svg%3E");
}

.section-wave-bottom {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff' opacity='0.1'%3E%3C/path%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.dark-mode .section-wave-top,
.dark-mode .section-wave-bottom {
    opacity: 0.05;
}

/* Common Card Styles */
.weather-card,
.financial-card {
    height: 100%;
    border: none;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dark-mode .weather-card,
.dark-mode .financial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.weather-card:hover,
.financial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dark-mode .weather-card:hover,
.dark-mode .financial-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.update-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.dark-mode .update-time {
    color: rgba(255, 255, 255, 0.6);
}

/* Weather Card Specific Styles */
.current-weather {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(240, 245, 255, 0.5);
    border-radius: 16px;
}

.dark-mode .current-weather {
    background: rgba(255, 255, 255, 0.03);
}

.weather-icon-temp {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.weather-icon {
    font-size: 3.5rem;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    position: relative;
}

.weather-sun {
    animation: pulse-sun 3s infinite ease-in-out;
}

@keyframes pulse-sun {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.current-temp {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.temp-unit {
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 2px;
    opacity: 0.7;
    margin-top: 8px;
}

.weather-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

.dark-mode .weather-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Weather Metrics */
.weather-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.weather-metric-item {
    display: flex;
    align-items: center;
    padding: 8px;
}

.weather-metric-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.weather-card:hover .weather-metric-icon {
    transform: scale(1.1);
    background: rgba(230, 57, 70, 0.2);
}

.weather-metric-data {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.dark-mode .metric-label {
    color: rgba(255, 255, 255, 0.6);
}

.metric-value {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Weather Forecast */
.forecast-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.forecast-container {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.forecast-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.forecast-day {
    flex: 0 0 20%;
    text-align: center;
    padding: 10px;
    background: rgba(240, 245, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.forecast-day:hover {
    background: rgba(230, 57, 70, 0.08);
    transform: translateY(-5px);
}

.dark-mode .forecast-day {
    background: rgba(255, 255, 255, 0.03);
}

.dark-mode .forecast-day:hover {
    background: rgba(255, 255, 255, 0.05);
}

.forecast-day-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.forecast-icon {
    font-size: 1.5rem;
    color: #FFB800;
    margin: 8px 0;
}

.forecast-temps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.high-temp {
    color: var(--primary);
    font-weight: 700;
}

.low-temp {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.8;
}

.dark-mode .low-temp {
    color: rgba(255, 255, 255, 0.6);
}

/* Financial Card Specific Styles */
.finance-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

/* Currency Item Styles */
.currency-item,
.metal-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background: rgba(240, 245, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark-mode .currency-item,
.dark-mode .metal-item {
    background: rgba(255, 255, 255, 0.03);
}

.currency-item:hover,
.metal-item:hover {
    transform: translateY(-5px);
}

.currency-item.rising:hover {
    background: rgba(40, 167, 69, 0.05);
}

.currency-item.falling:hover {
    background: rgba(220, 53, 69, 0.05);
}

.dark-mode .currency-item.rising:hover,
.dark-mode .metal-item.rising:hover {
    background: rgba(40, 167, 69, 0.1);
}

.dark-mode .currency-item.falling:hover,
.dark-mode .metal-item.falling:hover {
    background: rgba(220, 53, 69, 0.1);
}

.currency-info,
.metal-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.currency-icon,
.metal-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.dark-mode .currency-icon,
.dark-mode .metal-icon {
    background: rgba(255, 255, 255, 0.1);
}

.currency-item:hover .currency-icon,
.metal-item:hover .metal-icon {
    transform: scale(1.1);
}

.metal-icon.gold {
    color: #FFD700;
}

.metal-icon.silver {
    color: #C0C0C0;
}

.metal-icon.platinum {
    color: #E5E4E2;
}

.metal-icon.oil {
    color: #8B4513;
}

.currency-name-code,
.metal-name-unit {
    display: flex;
    flex-direction: column;
}

.currency-name,
.metal-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.currency-code,
.metal-unit {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.dark-mode .currency-code,
.dark-mode .metal-unit {
    color: rgba(255, 255, 255, 0.6);
}

.currency-value-change,
.metal-value-change {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 10px;
}

.currency-value,
.metal-value {
    font-weight: 700;
    font-size: 1rem;
}

.currency-change,
.metal-change {
    font-size: 0.8rem;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 3px;
}

.currency-change.falling-text,
.metal-change.falling-text {
    color: #dc3545;
}

.currency-chart,
.metal-chart {
    width: 60px;
    height: 30px;
    margin-right: 10px;
    position: relative;
}

/* Sparkline Chart Animation */
.sparkline {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sparkline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.sparkline-up::before {
    background: linear-gradient(90deg, transparent 0%, #28a745 100%);
    clip-path: polygon(0 70%, 10% 60%, 20% 50%, 30% 65%, 40% 55%, 50% 40%, 60% 45%, 70% 30%, 80% 35%, 90% 20%, 100% 30%, 100% 100%, 0 100%);
    animation: sparkle 2s infinite;
}

.sparkline-down::before {
    background: linear-gradient(90deg, transparent 0%, #dc3545 100%);
    clip-path: polygon(0 30%, 10% 40%, 20% 35%, 30% 50%, 40% 45%, 50% 60%, 60% 50%, 70% 65%, 80% 60%, 90% 70%, 100% 80%, 100% 100%, 0 100%);
    animation: sparkle 2s infinite;
}

.sparkline-dot {
    position: absolute;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.sparkline-up .sparkline-dot {
    background: #28a745;
    top: 30%;
}

.sparkline-down .sparkline-dot {
    background: #dc3545;
    top: 80%;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Local Gold Section */
.local-gold-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.local-gold-item {
    text-align: center;
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
}

.dark-mode .local-gold-item {
    background: rgba(255, 215, 0, 0.03);
}

.local-gold-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.gold-type {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.dark-mode .gold-type {
    color: rgba(255, 255, 255, 0.6);
}

.gold-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.dark-mode .gold-price {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .finance-grid,
    .local-gold-grid {
        grid-template-columns: 1fr 1fr;
    }

    .forecast-day {
        flex: 0 0 25%;
    }
}

@media (max-width: 767.98px) {
    .weather-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .forecast-day {
        min-width: 80px;
        flex: 0 0 33.33%;
    }

    .local-gold-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .finance-grid {
        grid-template-columns: 1fr;
    }

    .forecast-day {
        min-width: 70px;
        flex: 0 0 50%;
    }

    .current-weather .row {
        flex-direction: column;
    }

    .current-weather .col-5,
    .current-weather .col-7 {
        width: 100%;
    }

    .weather-icon-temp {
        margin-bottom: 20px;
    }
}
.post-body-content h3{
color:#c3522e !important
}
.post-body-content h3{
font-size:1.5rem;color:#c3522e !important;text-indent:20px;margin:10px 0
}
.post-body-content h4{
font-size:1.1rem;color:#3d2ec3 !important
}
.post-body-content h5{
font-size:0.9rem;color:#c32e4c !important
}
.post-body-content h6{
font-size:0.7rem
}