/*
Theme Name: ProMedia Economic News 2025
Theme URI: https://promedialb.com
Description: A professional Arabic RTL news theme for economic and technology news with a luxury golden design - Updated 2025 Edition
Author: ProMedia Team
Version: 5.0
Text Domain: promedia-economic-news
Domain Path: /languages
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

This theme is designed for Arabic RTL news websites with focus on economic and technology content.
*/

/* Custom Font Face */
@font-face {
    font-family: 'LBC Regular';
    src: url('lbc-regular-.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
:root {
    --gold-primary-1: #806D49;
    --gold-primary-2: #B7A779;
    --gold-secondary-1: #5A4E32;
    --gold-secondary-2: #D4AF37;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f6f1;
    --text-dark: #333;
    --text-light: #fff;
    --accent-blue: #2E86AB;
    --accent-green: #A23B72;
    --gradient-primary: linear-gradient(135deg, var(--gold-primary-1), var(--gold-primary-2));
    --gradient-secondary: linear-gradient(135deg, var(--gold-secondary-1), var(--gold-secondary-2));
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 8px; /* Reduced from 12px */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'LBC Regular', 'Noto Naskh Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f6f1 0%, #fff 100%);
    color: var(--text-dark);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'LBC Regular', 'Noto Naskh Arabic', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: var(--gold-secondary-1);
    transition: var(--transition);
}

a:hover {
    color: var(--gold-secondary-2);
    transform: translateY(-1px);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px; /* Reduced padding */
    background: var(--gradient-secondary);
    color: white;
    border-radius: 6px; /* Reduced border radius */
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* FIXED: Enhanced Header Styles - REDUCED HEIGHT */
.site-header {
    background: var(--gradient-primary);
    padding: 6px 0; /* Reduced from 8px to 6px */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    margin: 0;
}

.site-header.scrolled {
    background: rgba(128, 109, 73, 0.95);
    padding: 4px 0; /* Reduced scrolled padding */
    box-shadow: var(--shadow-medium);
}

/* FIXED: Proper margin for breaking news - reduced gap */
.site-main {
    margin-top: 0;
}

.breaking-news-modern {
    margin-top: 72px; /* Increased from 56px to fully clear header */
    position: relative;
    z-index: 999;
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

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

.site-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
}

.site-title a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

/* MODERN: Updated website title styling */
.title-main {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #D4AF37, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-family: 'LBC Regular', sans-serif;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.title-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Desktop Navigation - RESTORED */
.main-nav {
    /* Normal desktop display - NO hiding */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
}

.main-nav a {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 8px 15px;
    transition: var(--transition);
    border-radius: 25px;
}

.main-nav a:hover {
    color: #f0f0f0;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-secondary-2);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav a:hover::after {
    width: 100%;
    right: 0;
}

/* Desktop - Hide mobile menu toggle */
.menu-toggle {
    display: none;
}

/* Dropdown Menu Styling */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

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

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

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

.dropdown-menu a {
    color: var(--text-dark) !important;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    border-radius: 0;
    background: transparent !important;
}

.dropdown-menu a:hover {
    background: var(--light-bg) !important;
    color: var(--gold-secondary-1) !important;
    transform: none;
}

.dropdown-menu a::after {
    display: none;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    flex-direction: column;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Fixed Modern Breaking News Design for Arabic RTL */
.breaking-news-modern {
    background: #1a1a1a;
    padding: 8px 0;
    border-bottom: 2px solid var(--gold-secondary-2);
    position: relative;
    overflow: hidden;
}

.breaking-news-content {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 36px;
}

.breaking-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #d32f2f;
    border-radius: 20px;
    flex-shrink: 0;
}

.breaking-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.breaking-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breaking-news-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-left 60s linear infinite;
}

/* Fixed animation for Arabic RTL */
@keyframes scroll-left {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.ticker-item {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 15px;
    transition: var(--transition);
    text-decoration: none;
}

.ticker-item:hover {
    color: var(--gold-secondary-2);
}

.ticker-dot {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin: 0 10px;
}

/* IMPROVED: Hero Section with more space for taller hero image */
.hero-section {
    padding: 50px 0 40px 0; /* Increased padding for taller hero image */
    background: linear-gradient(135deg, rgba(248, 246, 241, 0.8), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 450px; /* Reduced main width further, increased side width */
    gap: 20px;
    position: relative;
    z-index: 2;
}

.main-feature {
    position: relative;
    border-radius: 12px; /* Reduced border radius */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    height: 600px; /* Much taller for desktop - fills section height */
}

.main-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.feature-image {
    height: 100%;
    background: linear-gradient(135deg, #2c1810, #5a4e38, #6b5a38);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
}

.feature-content {
    color: white;
    position: relative;
    z-index: 2;
    width: 100%;
}

.feature-category {
    background: var(--gradient-secondary);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.feature-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 800;
}

.feature-meta {
    display: flex;
    gap: 25px;
    font-size: 1rem;
    opacity: 0.95;
    align-items: center;
}

.feature-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* IMPROVED: Side features with ORIGINAL minimal padding - REVERTED */
.side-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px; /* Back to original minimal gap */
    max-height: 500px; /* Back to original height */
}

.side-feature {
    display: flex;
    gap: 10px; /* Back to original minimal gap */
    padding: 12px; /* Back to original minimal padding */
    background: white;
    border-radius: 10px; /* Reduced border radius */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-right: 4px solid transparent;
    height: 135px; /* Back to original minimal height */
}

.side-feature::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.side-feature:hover::before {
    transform: scaleY(1);
}

.side-feature:hover {
    transform: translateX(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-right-color: var(--gold-secondary-2);
}

.side-image {
    width: 100px; /* Back to original smaller width */
    height: 85px; /* Back to original smaller height */
    background: linear-gradient(135deg, #3a2c15, #6b5a38);
    border-radius: 8px; /* Reduced border radius */
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.side-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px; /* Further reduced gap */
}

.side-category {
    font-size: 0.7rem; /* Further reduced font size */
    color: var(--gold-primary-1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.side-title {
    font-size: 0.95rem; /* Further reduced font size */
    margin-bottom: 4px; /* Further reduced margin */
    line-height: 1.2;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
}

.side-feature:hover .side-title {
    color: var(--gold-secondary-1);
}

.side-meta {
    font-size: 0.75rem; /* Further reduced font size */
    color: #666;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}

/* FIXED: Section headers - keep title and button in same row */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* Further reduced margin */
    padding: 0;
    border: none;
    background: none;
    flex-wrap: nowrap; /* Prevent wrapping on mobile */
}

.section-title-modern {
    font-size: 1.8rem; /* Slightly reduced */
    font-weight: 800;
    color: var(--gold-secondary-1);
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    flex-shrink: 0; /* Prevent shrinking */
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px; /* Reduced width */
    height: 3px; /* Reduced height */
    background: linear-gradient(135deg, var(--gold-secondary-1), var(--gold-secondary-2));
    border-radius: 2px;
}

.section-btn-modern {
    color: var(--gold-secondary-1);
    font-weight: 700;
    font-size: 0.9rem; /* Reduced font size */
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px; /* Significantly reduced padding */
    border-radius: 6px; /* Reduced border radius */
    border: 2px solid var(--gold-secondary-1);
    background: transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap; /* Prevent text wrapping */
    flex-shrink: 0; /* Prevent shrinking */
}

.section-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.4s ease;
    z-index: -1;
}

.section-btn-modern:hover::before {
    left: 0;
}

.section-btn-modern:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 78, 50, 0.3);
}

.section-btn-modern .arrow {
    font-size: 1.2rem;
    transition: var(--transition);
}

.section-btn-modern:hover .arrow {
    transform: translateX(-5px);
}

/* REDUCED: Section margins - minimal spacing */
.category-section {
    padding: 15px 0; /* Further reduced from 25px */
    position: relative;
}

.category-section-alt {
    background: linear-gradient(135deg, #f9f8f5, #ffffff);
    padding: 15px 0; /* Further reduced from 25px */
    position: relative;
}

/* ULTRA CREATIVE: Super Luxury News Cards with Category on Image */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px); /* Fixed width */
    gap: 30px; /* Increased gap for better spacing */
    justify-content: center;
    margin: 0 15px; /* Add side margins */
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    width: 400px; /* Fixed width */
    height: 400px; /* Reduced height due to category move */
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold-secondary-2), var(--gold-primary-1), var(--gold-secondary-2));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        transparent 50%, 
        rgba(212,175,55,0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-radius: 16px;
}

.category-card:hover::before {
    opacity: 1;
    animation: borderPulse 1.5s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

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

.category-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.card-image {
    height: 220px; /* Slightly reduced height */
    background: linear-gradient(135deg, #3a2c15, #6b5a38);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(212,175,55,0.2) 50%, 
        transparent 70%);
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-100%);
}

.category-card:hover .card-image::before {
    opacity: 1;
    animation: luxuryShimmer 2s ease-in-out;
}

/* CREATIVE: Category badge positioned on image bottom right */
.card-category {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 10;
    padding: 4px 8px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(90, 78, 50, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.card-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.category-card:hover .card-category::before {
    left: 100%;
}

.card-content {
    padding: 20px; /* Reduced padding */
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced gap */
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.card-title {
    font-size: 1.3rem; /* Slightly reduced */
    margin-bottom: 10px; /* Reduced margin */
    line-height: 1.3;
    transition: var(--transition);
    font-weight: 800;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background: linear-gradient(135deg, var(--text-dark), var(--gold-secondary-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-excerpt {
    color: #666;
    margin-bottom: 12px; /* Reduced margin */
    line-height: 1.6;
    font-size: 0.95rem; /* Slightly reduced */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Reduced from 3 to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    position: absolute;
    bottom: 8px;
    left: 8px;
    z-index: 10;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

/* Modern Creative Date Icons */
.modern-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
}

.modern-date svg {
    color: var(--gold-secondary-1);
    opacity: 0.8;
}

/* Enhanced Interview Section */
.interview-section {
    padding: 40px 0; /* Reduced from 80px */
    background: linear-gradient(135deg, #f5f2ea, #faf8f3);
    position: relative;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.interview-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.interview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-secondary-2);
}

.interview-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a2c15, #6b5a38);
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--gold-secondary-2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.interview-content {
    flex: 1;
}

.interview-category {
    color: var(--gold-primary-1);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.interview-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
    font-weight: 700;
}

.interview-card:hover .interview-title {
    color: var(--gold-secondary-1);
}

.interview-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced Footer */
.site-footer {
    background: linear-gradient(135deg, var(--dark-bg), #2a2a2a);
    color: #ccc;
    padding: 40px 0 20px; /* Reduced padding */
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Reduced gap */
    position: relative;
    z-index: 2;
}

.footer-widget h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px; /* Reduced margin */
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    transition: var(--transition);
    font-size: 1rem;
    padding: 5px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-secondary-2);
    transform: translateX(-5px);
}

.footer-about p {
    margin-bottom: 20px; /* Reduced margin */
    line-height: 1.7;
    color: #bbb;
}

.social-links {
    display: flex;
    gap: 15px; /* Reduced gap */
    margin-top: 20px;
    justify-content: center;
}

.social-link {
    width: 45px; /* Slightly reduced */
    height: 45px; /* Slightly reduced */
    background: linear-gradient(135deg, #333, #444);
    border-radius: 12px; /* Less circular */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--gold-secondary-2);
}

.social-link i {
    position: relative;
    z-index: 2;
}

/* Specific social media colors on hover */
.social-link.facebook:hover::before { background: #1877F2; }
.social-link.instagram:hover::before { background: linear-gradient(45deg, #E4405F, #FCAF45); }
.social-link.whatsapp:hover::before { background: #25D366; }
.social-link.tiktok:hover::before { background: #000000; }
.social-link.twitter:hover::before { background: #1DA1F2; }

/* Footer bottom styles */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CRITICAL: Fixed Single Post Scrolling */
.single-post-wrapper {
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f6f1 0%, #fff 100%);
    min-height: auto;
    position: relative;
}

.single-post-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.single-post {
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    position: relative;
}

.entry-header {
    padding: 40px 40px 25px;
    border-bottom: 2px solid #f0f0f0;
}

.entry-category {
    margin-bottom: 20px;
}

.category-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(90, 78, 50, 0.3);
}

.category-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* FIXED: Meta in same row even on mobile */
.entry-meta {
    display: flex;
    gap: 25px;
    color: #666;
    font-size: 1rem;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping */
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(90, 78, 50, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    white-space: nowrap; /* Prevent breaking */
}

.entry-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.entry-content {
    padding: 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--gold-secondary-1);
    font-weight: 700;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content a {
    color: var(--gold-secondary-1);
    text-decoration: underline;
    transition: var(--transition);
    font-weight: 600;
}

.entry-content a:hover {
    color: var(--gold-secondary-2);
}

/* WordPress specific styles */
.wp-post-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.entry-tags {
    padding: 25px 40px;
    border-top: 2px solid #f0f0f0;
}

.entry-tags h3 {
    margin-bottom: 20px;
    color: var(--gold-secondary-1);
    font-size: 1.3rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list a {
    padding: 6px 15px;
    background-color: rgba(90, 78, 50, 0.08);
    color: var(--gold-secondary-1);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
    font-weight: 600;
}

.tag-list a:hover {
    background-color: var(--gold-secondary-1);
    color: white;
    transform: translateY(-2px);
}

/* LUXURY: Previous/Next Posts Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;
}

.nav-previous, .nav-next {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.nav-previous a, .nav-next a {
    display: flex;
    align-items: center;
    padding: 20px 25px; /* Reduced height */
    background: linear-gradient(135deg, #fff, #f8f6f1);
    border-radius: 15px; /* Reduced border radius */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    text-decoration: none;
    color: var(--text-dark);
    gap: 15px;
    height: 80px; /* Fixed reduced height */
}

.nav-previous a::before, .nav-next a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
    border-radius: 13px;
}

.nav-previous a:hover::before, .nav-next a:hover::before {
    opacity: 0.1;
}

.nav-previous a:hover, .nav-next a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.nav-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nav-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.nav-label {
    font-size: 0.8rem;
    color: var(--gold-secondary-1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

.nav-title {
    font-size: 1.1rem; /* Reduced font size */
    line-height: 1.3;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-previous a:hover .nav-title, .nav-next a:hover .nav-title {
    color: var(--gold-secondary-1);
}

/* SUPER CREATIVE: Related Posts */
.related-posts {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f6f1, #ffffff);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-posts h3 {
    margin-bottom: 30px;
    color: var(--gold-secondary-1);
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    font-weight: 800;
}

.related-posts h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    gap: 25px;
    justify-content: center;
}

.related-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.related-post-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-secondary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.related-post-card:hover::before {
    opacity: 1;
}

.related-post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.related-post-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.related-post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.related-post-card:hover .related-post-image::after {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

.related-post-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-post-category {
    font-size: 0.8rem;
    color: var(--gold-primary-1);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-post-title {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 700;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.related-post-card:hover .related-post-title a {
    color: var(--gold-secondary-1);
}

.related-post-meta {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

/* LUXURY: Enhanced Sidebar Tabs Design */
.post-sidebar-box {
    margin-top: 40px;
    background: linear-gradient(135deg, #ffffff, #f8f6f1);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid rgba(90, 78, 50, 0.1);
    position: relative;
}

.post-sidebar-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

/* ULTRA-COMPRESSED: Sidebar Tabs with Minimal Padding */
.sidebar-tabs {
    display: flex;
    background: linear-gradient(135deg, #fff, #fafafa);
    padding: 2px 4px 0; /* Ultra reduced padding */
    position: relative;
    gap: 0px; /* No gap */
    overflow-x: auto;
    white-space: nowrap;
}

.tab-button {
    flex: 1;
    padding: 6px 2px; /* Ultra reduced padding */
    background: transparent;
    border: none;
    border-radius: 6px 6px 0 0; /* Smaller border radius */
    cursor: pointer;
    font-size: 0.6rem; /* Even smaller font */
    font-weight: 700;
    color: #666;
    transition: var(--transition);
    text-align: center;
    position: relative;
    margin: 0;
    overflow: hidden;
    font-family: 'LBC Regular', 'Noto Naskh Arabic', serif;
    white-space: nowrap;
    min-width: 0;
    line-height: 1.1;
    /* ULTRA COMPRESSION: Force fit */
    max-width: 33.33%;
    text-overflow: ellipsis;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
    border-radius: 6px 6px 0 0;
}

.tab-button:hover::before {
    opacity: 0.1;
}

.tab-button:hover {
    color: var(--gold-secondary-1);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(90, 78, 50, 0.3);
}

.tab-button.active::before {
    opacity: 0;
}

.tab-content {
    padding: 20px 15px; /* Reduced padding */
    background: white;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.sidebar-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(90, 78, 50, 0.1);
    transition: var(--transition);
    position: relative;
}

.sidebar-post-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gradient-secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.sidebar-post-item:hover::before {
    height: 60%;
}

.sidebar-post-item:hover {
    background: rgba(90, 78, 50, 0.03);
    padding: 18px 15px;
    border-radius: 12px;
    transform: translateX(5px);
}

.sidebar-post-item:last-child {
    border-bottom: none;
}

.sidebar-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--gold-secondary-2);
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 700;
}

.sidebar-post-content h4 a {
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.sidebar-post-item:hover .sidebar-post-content h4 a {
    color: var(--gold-secondary-1);
}

.sidebar-post-meta {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.page-numbers {
    padding: 12px 18px;
    background-color: white;
    border-radius: 10px;
    color: var(--gold-secondary-1);
    font-weight: 700;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 25px;
    }
    
    .hero-grid {
        gap: 20px;
        grid-template-columns: 1fr 420px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, 380px);
        gap: 25px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(auto-fit, 280px);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .side-features {
        grid-template-columns: repeat(3, 1fr);
        max-height: none;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, 360px);
        gap: 20px;
    }
    
    .interview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .header-container {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .main-nav ul {
        gap: 20px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(auto-fit, 280px);
    }

    .breaking-news-modern {
        margin-top: 66px; /* Adjusted for smaller header */
    }
}

@media (max-width: 768px) {
    .breaking-news-modern {
        margin-top: 68px; /* Increased from 52px to fully clear mobile header */
    }

    .header-container {
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding: 0 15px;
    }
    
    .logo {
        flex: 1;
    }
    
    /* FIXED: Mobile Navigation - Only hide on mobile */
    .main-nav {
        display: none; /* Normal hide, not !important */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        z-index: 99999;
        backdrop-filter: blur(15px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(100%);
    }
    
    /* FIXED: Active state for mobile only */
    .main-nav.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        list-style: none;
        margin: 0;
        padding: 40px 20px;
        width: 100%;
        max-width: 400px;
    }
    
    .main-nav a {
        font-size: 1.4rem;
        padding: 15px 25px;
        color: white;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        display: block;
        text-align: center;
        min-width: 200px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .main-nav a:hover {
        background: var(--gradient-secondary);
        transform: scale(1.05);
        border-color: rgba(255,255,255,0.3);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 8px;
        border-radius: 12px;
        box-shadow: none;
    }
    
    .dropdown-menu a {
        font-size: 1.1rem;
        padding: 10px 15px;
        background: transparent;
        color: rgba(255, 255, 255, 0.9);
        min-width: auto;
        border: 1px solid rgba(255,255,255,0.2);
        margin: 2px 0;
    }
    
    /* Mobile Menu Toggle */
    .menu-toggle {
        display: flex;
        z-index: 100000;
        background: rgba(255,255,255,0.15);
        border: 2px solid rgba(255,255,255,0.3);
        color: white;
        cursor: pointer;
        padding: 10px;
        border-radius: 10px;
        transition: all 0.3s ease;
        flex-direction: column;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .hamburger-line {
        width: 22px;
        height: 3px;
        background: white;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    .menu-toggle:hover {
        background: rgba(255,255,255,0.25);
        border-color: rgba(255,255,255,0.5);
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        transform: scale(1.05);
    }

    .menu-toggle.active {
        background: rgba(212, 175, 55, 0.9);
        border-color: rgba(212, 175, 55, 1);
    }

    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .side-features {
        grid-template-columns: 1fr;
    }
    
    .feature-title {
        font-size: 1.6rem; /* Reduced font size */
        margin-bottom: 10px; /* Reduced margin */
    }
    
    /* FIXED: Keep section header elements in same row on mobile */
    .section-header {
        flex-direction: row; /* Keep horizontal */
        gap: 10px;
        text-align: left;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .section-title-modern {
        font-size: 1.4rem; /* Further reduced for mobile */
        text-align: left;
        flex-shrink: 0;
    }
    
    .section-title-modern::after {
        left: 0;
        transform: none;
        width: 40px;
        height: 2px;
        bottom: -4px;
    }
    
    .section-btn-modern {
        padding: 6px 12px; /* Further reduced padding */
        font-size: 0.8rem; /* Smaller font for mobile */
        min-width: auto;
    }
    
    /* FIXED: Mobile category cards with fixed width */
    .category-grid {
        grid-template-columns: repeat(auto-fit, 350px); /* Fixed width on mobile */
        gap: 15px;
        justify-content: center;
    }

    .category-card {
        width: 350px; /* Fixed width for mobile */
        max-width: 90vw; /* Responsive max width */
        margin: 0 auto;
    }
    
    .card-image {
        height: 180px; /* Reduced for mobile */
    }
    
    .card-content {
        padding: 20px;
    }
    
    .interview-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
    
    .interview-image {
        width: 100px;
        height: 100px;
        align-self: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .breaking-news-content {
        gap: 8px;
    }
    
    .breaking-indicator {
        padding: 4px 8px;
        gap: 4px;
    }
    
    .breaking-text {
        font-size: 0.7rem;
    }
    
    .breaking-dot {
        width: 6px;
        height: 6px;
    }
    
    .ticker-wrapper {
        font-size: 0.8rem;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        padding: 0 8px;
    }
    
    .single-post-container {
        padding: 15px;
    }
    
    .entry-header {
        padding: 25px;
    }
    
    .entry-title {
        font-size: 2rem;
    }

    /* MOBILE: Keep meta in same row with smaller elements */
    .entry-meta {
        gap: 15px; /* Reduced gap */
        font-size: 0.9rem; /* Smaller font */
        overflow-x: auto; /* Allow horizontal scroll if needed */
        flex-wrap: nowrap; /* Force same row */
    }

    .entry-meta span {
        padding: 6px 12px; /* Reduced padding */
        font-size: 0.85rem; /* Smaller font */
        flex-shrink: 0; /* Prevent shrinking */
    }
    
    .entry-content {
        padding: 25px;
        font-size: 1.1rem;
    }
    
    .entry-thumbnail {
        height: 250px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .related-post-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .sidebar-tabs {
        flex-direction: column;
        padding: 10px;
        gap: 5px;
    }
    
    .tab-button {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 8px;
        text-align: right;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    /* FIXED: Better mobile sidebar layout - square images */
    .sidebar-post-item {
        flex-direction: row; /* Keep horizontal layout */
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }
    
    .sidebar-post-image {
        width: 80px;
        height: 60px;
        border-radius: 8px; /* Square instead of circular */
        border: 1px solid var(--gold-secondary-2);
    }
    
    .sidebar-post-content {
        flex: 1;
    }
    
    .sidebar-post-content h4 {
        font-size: 1rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .modern-date {
        font-size: 0.8rem;
    }
    
    .modern-date svg {
        width: 14px;
        height: 14px;
    }

    /* MODERN: Website title improvements for mobile */
    .title-main {
        font-size: 1.8rem;
    }

    .title-tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 1.6rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .section-title-modern {
        font-size: 1.2rem; /* Further reduced */
    }

    .section-btn-modern {
        padding: 4px 8px; /* Minimal padding */
        font-size: 0.75rem; /* Very small font */
    }
    
    .side-feature {
        flex-direction: column;
        gap: 8px;
        height: auto;
        padding: 10px; /* Minimal padding */
    }
    
    .side-image {
        width: 100%;
        height: 120px; /* Further reduced height */
    }

    .side-title {
        font-size: 0.9rem; /* Further reduced */
    }

    .side-category {
        font-size: 0.65rem; /* Further reduced */
    }

    .side-meta {
        font-size: 0.7rem; /* Further reduced */
    }

    /* FIXED: Category cards on very small screens */
    .category-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 15px;
    }

    .category-card {
        width: 100%;
        max-width: 320px; /* Smaller max width */
        margin: 0 auto;
    }

    /* Even smaller meta on very small screens */
    .entry-meta {
        gap: 8px;
        font-size: 0.8rem;
    }

    .entry-meta span {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* Admin Bar Adjustment - Updated for smaller header */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .breaking-news-modern {
    margin-top: 104px; /* Header + admin bar (72 + 32) */
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .breaking-news-modern {
        margin-top: 114px; /* Adjusted for mobile admin bar (68 + 46) */
    }
}

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

.category-card,
.side-feature,
.interview-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Hover Effects for Cards */
.category-card,
.side-feature,
.interview-card {
    position: relative;
    overflow: hidden;
}

.category-card::after,
.side-feature::after,
.interview-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.category-card:hover::after,
.side-feature:hover::after,
.interview-card:hover::after {
    width: 300px;
    height: 300px;
}

/* Improved Focus States */
.btn:focus,
.menu-toggle:focus {
    outline: 3px solid var(--gold-secondary-2);
    outline-offset: 2px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--gold-secondary-1), var(--gold-secondary-2));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(to right, var(--gold-primary-1), var(--gold-primary-2));
    transform: translateY(-5px);
}

/* Print Styles */
@media print {
    .site-header,
    .breaking-news-modern,
    .site-footer,
    .header-actions,
    .back-to-top {
        display: none !important;
    }
    
    .hero-section,
    .category-section {
        padding: 20px 0;
    }
    
    .category-card,
    .interview-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
} 

/* Logo styling with SUBTLE contrast */
.site-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    /* SUBTLE: Single elegant shadow for better contrast */
    filter: 
        drop-shadow(0 1px 3px rgba(0,0,0,0.4))
        brightness(1.1) 
        contrast(1.1);
    /* Minimal background glow */
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 6px;
    padding: 1px;
}

.site-logo:hover {
    transform: scale(1.03);
    filter: 
        drop-shadow(0 2px 6px rgba(0,0,0,0.5))
        brightness(1.15) 
        contrast(1.15);
}

/* CREATIVE: Timeline Section - Return to dots */
.timeline-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f6f1, #ffffff);
    position: relative;
}

.timeline-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--gold-secondary-1);
    margin-bottom: 30px;
    font-weight: 800;
    position: relative;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-dot {
    position: absolute;
    left: 22px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.timeline-content {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--gold-secondary-2);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.timeline-post-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.4;
}

.timeline-post-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.timeline-post-title a:hover {
    color: var(--gold-secondary-1);
}

.timeline-meta {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CREATIVE: Top Readers Section */
.top-readers-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    position: relative;
}

.top-readers-header {
    text-align: center;
    margin-bottom: 30px;
}

.top-readers-title {
    font-size: 1.8rem;
    color: var(--gold-secondary-1);
    margin-bottom: 20px;
    font-weight: 800;
}

.readers-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.readers-tab {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--gold-secondary-1);
    border-radius: 25px;
    color: var(--gold-secondary-1);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.readers-tab.active,
.readers-tab:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-2px);
}

.top-readers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reader-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.reader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

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

.reader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.reader-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
}

.reader-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    padding-right: 40px;
}

.reader-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.reader-card:hover .reader-content h4 a {
    color: var(--gold-secondary-1);
}

.reader-meta {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reader-views {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--gold-secondary-1);
} 

/* Mobile sidebar tabs - EXTREME compression */
@media (max-width: 768px) {
    .sidebar-tabs {
        display: flex;
        flex-direction: row;
        padding: 1px 2px 0; /* Minimal padding */
        gap: 0px;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tab-button {
        flex: 1;
        min-width: 60px; /* Ultra reduced minimum width */
        padding: 5px 1px; /* Extreme reduction */
        font-size: 0.55rem; /* Tiny font on mobile */
        border-radius: 4px 4px 0 0;
        text-align: center;
        font-family: 'LBC Regular', 'Noto Naskh Arabic', serif;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.05;
        font-weight: 600;
        max-width: 33.33%;
    }
    
    .tab-button.active {
        background: var(--gradient-secondary);
        color: white;
        transform: translateY(-1px); /* Minimal transform */
        box-shadow: 0 1px 4px rgba(90, 78, 50, 0.3); /* Minimal shadow */
    }

    .tab-content {
        padding: 8px 5px; /* Ultra reduced mobile padding */
    }
}

/* PERFORMANCE: Cache Busting and Auto-Refresh Styles */
body.cache-cleared {
    animation: cacheRefresh 0.5s ease-in-out;
}

@keyframes cacheRefresh {
    0% { opacity: 0.8; }
    50% { opacity: 0.9; }
    100% { opacity: 1; }
}

/* Enhanced cache notification */
.cache-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 999999;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cache-notification.show {
    transform: translateX(0);
}

.feature-title {
    font-size: 1.6rem; /* Reduced font size */
    margin-bottom: 10px; /* Reduced margin */
}

/* MOBILE: Hero section height fixes */
.hero-section {
    padding: 8px 0 5px 0; /* Much reduced padding */
}

.main-feature {
    height: 280px; /* Reduced from 500px to 280px for mobile */
}

.feature-image {
    padding: 20px; /* Reduced padding */
}

.feature-category {
    padding: 6px 12px; /* Smaller category badge */
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.feature-meta {
    gap: 10px; /* Reduced gap */
    font-size: 0.85rem; /* Smaller meta text */
}

.feature-meta span {
    padding: 4px 8px; /* Smaller meta badges */
    font-size: 0.75rem;
}