/*
Theme Name: Progga News
Theme URI: https://proggabd.com
Author: Progga Media
Author URI: https://proggabd.com
Description: প্রজ্ঞা সংবাদ (Progga News) — একটি প্রিমিয়াম বাংলা নিউজ পোর্টাল ওয়ার্ডপ্রেস থিম। ডার্ক মোড, জেলাভিত্তিক নেভিগেশন ওভারলে, "প্রতিনিধি" কাস্টম পোস্ট টাইপ, বিজ্ঞাপন উইজেট এরিয়া এবং প্রিমিয়াম কার্ড লেআউট সহ।
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: progga-news
Tags: news, blog, two-columns, right-sidebar, custom-menu, featured-images, translation-ready, bengali, dark-mode, custom-post-type

এই ফাইলে থিমের যাবতীয় CSS আছে। WordPress এই ফাইলের উপরের কমেন্ট ব্লক থেকে
থিমের নাম/ভার্সন পড়ে, তাই এই অংশ মুছবেন না।
*/

/* ===== রুট ভেরিয়েবল ===== */
        :root {
            --bg-site: #F4F6F9;
            --bg-white: #FFFFFF;
            --text-primary: #1A1A1A;
            --text-secondary: #3D4A5A;
            --text-muted: #8895A7;
            --accent: #C9A84C;
            --accent-dark: #B8962E;
            --accent-light: #F0E2B0;
            --accent-text: #8A6A1E;
            --border-light: #E8ECF1;
            --red: #E63946;
            --blue: #1877F2;
            --sky: #1DA1F2;
            --green: #25D366;
            --linkedin: #0A66C2;
            --font-serif: 'Playfair Display', Georgia, serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --shadow-soft: 0 8px 30px rgba(0,0,0,0.06);
            --shadow-hover: 0 16px 48px rgba(0,0,0,0.10);
            --radius-card: 12px;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ===== ডার্ক মোড ===== */
        .dark-mode {
            --bg-site: #0F0F0F;
            --bg-white: #1A1A1A;
            --text-primary: #F0F0F0;
            --text-secondary: #C0C0C0;
            --text-muted: #808080;
            --border-light: #2A2A2A;
            --accent-text: #D8BC70;
            --shadow-soft: 0 8px 30px rgba(0,0,0,0.4);
            --shadow-hover: 0 16px 48px rgba(0,0,0,0.6);
        }

        /* ===== রিসেট ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: var(--font-sans);
            background: var(--bg-site);
            color: var(--text-primary);
            line-height: 1.7;
            transition: background 0.4s ease, color 0.4s ease;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; height: auto; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

        /* ===== অ্যানিমেশন ===== */
        @keyframes logoPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(201, 168, 76, 0); }
        }
        @keyframes taglineSlide {
            0% { opacity: 0; transform: translateX(-30px); }
            60% { opacity: 0.5; transform: translateX(5px); }
            100% { opacity: 1; transform: translateX(0); }
        }
        @keyframes livePulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.2; transform: scale(0.6); }
        }
        @keyframes overlayIn {
            0% { opacity: 0; transform: scale(0.9) translateY(20px); }
            100% { opacity: 1; transform: scale(1) translateY(0); }
        }
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }
        @keyframes categorySpring {
            0% { opacity: 0; transform: perspective(400px) rotateX(-10deg) translateY(-20px) scale(0.9); }
            60% { opacity: 1; transform: perspective(400px) rotateX(2deg) translateY(0) scale(1.02); }
            100% { opacity: 1; transform: perspective(400px) rotateX(0deg) translateY(0) scale(1); }
        }

        /* ===== টপ বার ===== */
        .top-bar-premium {
            padding: 6px 0;
            font-size: clamp(0.7rem, 1.2vw, 0.7rem);
            color: #FFFFFF;
            background: #0A1628;
            border-bottom: 2px solid var(--accent);
            transition: var(--transition);
        }
        .top-bar-premium .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px 10px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .top-bar-premium .left-group {
            display: flex;
            align-items: center;
            gap: clamp(4px, 1.5vw, 14px);
            flex-wrap: wrap;
        }
        .top-bar-premium .date {
            color: rgba(255,255,255,0.8);
            font-weight: 400;
            font-size: clamp(0.65rem, 1vw, 0.65rem);
        }
        .top-bar-premium .clock {
            font-weight: 600;
            color: var(--accent);
            background: rgba(201, 168, 76, 0.15);
            padding: 1px clamp(6px, 1vw, 14px);
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
            font-size: clamp(0.65rem, 1vw, 0.65rem);
        }
        .top-bar-premium .clock i { animation: livePulse 1.8s infinite ease-in-out; }
        .live-top {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--red);
            color: #FFFFFF;
            padding: 1px clamp(6px, 1vw, 14px) 1px clamp(4px, 0.8vw, 10px);
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            font-size: clamp(0.6rem, 0.9vw, 0.6rem);
        }
        .dark-toggle {
            background: rgba(255,255,255,0.15);
            color: #FFFFFF;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 2px clamp(6px, 1vw, 12px);
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 3px;
            white-space: nowrap;
            font-size: clamp(0.6rem, 0.9vw, 0.6rem);
        }
        .dark-toggle:hover { 
            background: var(--accent);
            color: #0A1628;
            transform: scale(1.05);
        }
        .dark-mode .dark-toggle {
            background: var(--accent);
            color: #0A1628;
            border-color: var(--accent);
        }

        /* ===== সোশ্যাল মিডিয়া টপ ===== */
        .social-icons-top {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .social-icons-top a {
            color: rgba(255,255,255,0.6);
            transition: var(--transition);
            font-size: clamp(0.7rem, 0.9vw, 0.8rem);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: clamp(22px, 3vw, 28px);
            height: clamp(22px, 3vw, 28px);
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        .social-icons-top a:hover {
            color: var(--accent);
            background: rgba(255,255,255,0.12);
            transform: translateY(-2px);
        }
        .top-bar-premium .right-group {
            display: flex;
            align-items: center;
            gap: clamp(6px, 1.5vw, 16px);
            flex-wrap: wrap;
        }
        .top-bar-premium .lang-switch a {
            padding: 0 4px;
            transition: var(--transition);
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            font-size: clamp(0.6rem, 0.9vw, 0.6rem);
            cursor: pointer;
        }
        .top-bar-premium .lang-switch a.active,
        .top-bar-premium .lang-switch a:hover { 
            color: var(--accent); 
        }
        .top-bar-premium .lang-switch span {
            color: rgba(255,255,255,0.3);
        }

        /* ===== ডার্ক মোডে টপ বার ===== */
        .dark-mode .top-bar-premium {
            background: #0A0A0A !important;
            border-bottom-color: var(--accent) !important;
        }
        .dark-mode .social-icons-top a {
            background: rgba(255,255,255,0.05);
        }
        .dark-mode .social-icons-top a:hover {
            background: rgba(255,255,255,0.1);
        }

        /* ===== হেডার ===== */
        .header-premium {
            background: var(--bg-white);
            padding: clamp(6px, 1.5vw, 16px) 0;
            border-bottom: 2px solid var(--accent);
            transition: var(--transition);
        }
        .header-premium .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: clamp(8px, 2vw, 16px);
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ===== ব্র্যান্ডিং ===== */
        .brand-highlight {
            display: flex;
            align-items: center;
            gap: clamp(8px, 1.5vw, 14px);
            flex: 1 1 auto;
            min-width: 0;
        }
        .brand-highlight .brand-logo {
            width: clamp(40px, 6vw, 60px);
            height: clamp(40px, 6vw, 60px);
            flex-shrink: 0;
            border-radius: 50%;
            background: linear-gradient(145deg, #0A1628, #1A2D42);
            border: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: clamp(18px, 3vw, 28px);
            overflow: hidden;
            animation: logoPulse 4s infinite ease-in-out;
        }
        .brand-highlight .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .brand-highlight .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
            min-width: 0;
        }
        .brand-highlight .brand-title {
            font-family: var(--font-serif);
            font-size: clamp(1.3rem, 4vw, 2.4rem);
            font-weight: 900;
            letter-spacing: 2px;
            line-height: 1.1;
            background: linear-gradient(135deg, #0A1628 0%, #2C3E50 40%, var(--accent) 70%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 20px rgba(201, 168, 76, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            transition: all 0.4s ease;
            position: relative;
        }
        .brand-highlight .brand-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 2px;
            opacity: 0.6;
        }
        .brand-highlight .brand-title a {
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            font-weight: 900;
        }
        .dark-mode .brand-highlight .brand-title {
            background: linear-gradient(135deg, #F0F0F0 0%, #CCCCCC 40%, var(--accent) 70%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 30px rgba(201, 168, 76, 0.2);
        }
        .brand-highlight .brand-tagline {
            font-family: var(--font-sans);
            font-size: clamp(0.7rem, 1vw, 0.7rem);
            font-weight: 600;
            letter-spacing: clamp(2px, 0.4vw, 4px);
            text-transform: uppercase;
            color: var(--accent-text);
            display: flex;
            align-items: center;
            gap: clamp(4px, 1vw, 10px);
            flex-wrap: wrap;
            animation: taglineSlide 1.8s ease forwards;
            margin-top: 2px;
        }
        .brand-highlight .progga-link {
            font-size: clamp(0.6rem, 0.8vw, 0.6rem);
            font-weight: 700;
            color: #FFFFFF;
            background: #0A1628;
            padding: 2px clamp(4px, 1vw, 14px);
            border-radius: 30px;
            border: 1px solid var(--accent);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }
        .brand-highlight .progga-link:hover {
            background: var(--accent);
            color: #0A1628;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
        }
        .dark-mode .brand-highlight .brand-logo {
            background: linear-gradient(145deg, #2A2A2A, #3A3A3A);
            border-color: var(--accent);
        }
        .dark-mode .brand-highlight .brand-tagline {
            color: var(--accent);
        }
        .dark-mode .brand-highlight .progga-link {
            background: #2A2A2A;
            border-color: var(--accent);
            color: var(--accent);
            -webkit-text-fill-color: var(--accent);
        }
        .dark-mode .brand-highlight .progga-link:hover {
            background: var(--accent);
            color: #0A1628;
            -webkit-text-fill-color: #0A1628;
        }

        /* ===== অ্যাড স্পট ===== */
        .ad-spot-dual {
            display: flex;
            gap: clamp(4px, 1.5vw, 12px);
            align-items: center;
            flex-wrap: wrap;
            flex-shrink: 0;
        }
        .ad-spot-dual .ad-item {
            width: clamp(50px, 12vw, 120px);
            height: clamp(30px, 6vw, 60px);
            background: var(--bg-site);
            border: 1.5px dashed var(--accent);
            border-radius: var(--radius-card);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            overflow: hidden;
            position: relative;
        }
        .ad-spot-dual .ad-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
            transform: scale(1.02);
        }
        .ad-spot-dual .ad-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .ad-spot-dual .ad-item .ad-placeholder {
            font-size: clamp(0.65rem, 0.9vw, 0.75rem);
            color: var(--text-muted);
            text-align: center;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .ad-spot-dual .ad-item .ad-placeholder i {
            display: block;
            font-size: clamp(0.7rem, 1.5vw, 1.2rem);
            color: var(--accent);
            opacity: 0.4;
            margin-bottom: 1px;
        }
        .ad-spot-dual .ad-label {
            font-size: clamp(0.55rem, 0.7vw, 0.6rem);
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 600;
            background: var(--bg-white);
            padding: 0 4px;
            position: absolute;
            top: -4px;
            left: 6px;
            border-radius: 20px;
        }

        /* ===== নেভ ===== */
        .nav-understated {
            background: var(--bg-white);
            border-bottom: 2px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 999;
            transition: var(--transition);
            padding: 0 4px;
        }
        .nav-understated .container {
            display: flex;
            align-items: center;
            padding: 2px 0;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
            overflow-x: visible;
            flex-wrap: wrap;
            gap: 0;
        }
        .nav-understated .nav-menu {
            list-style: none;
            display: flex;
            gap: 0;
            flex-wrap: wrap;
            padding: 2px 0;
            flex: 1;
            justify-content: flex-start;
        }
        .nav-understated .nav-menu li {
            flex-shrink: 0;
            animation: categorySpring 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            opacity: 0;
        }
        .nav-understated .nav-menu li:nth-child(1) { animation-delay: 0.05s; }
        .nav-understated .nav-menu li:nth-child(2) { animation-delay: 0.10s; }
        .nav-understated .nav-menu li:nth-child(3) { animation-delay: 0.15s; }
        .nav-understated .nav-menu li:nth-child(4) { animation-delay: 0.20s; }
        .nav-understated .nav-menu li:nth-child(5) { animation-delay: 0.25s; }
        .nav-understated .nav-menu li:nth-child(6) { animation-delay: 0.30s; }
        .nav-understated .nav-menu li:nth-child(7) { animation-delay: 0.35s; }
        .nav-understated .nav-menu li:nth-child(8) { animation-delay: 0.40s; }
        .nav-understated .nav-menu li:nth-child(9) { animation-delay: 0.45s; }
        .nav-understated .nav-menu li:nth-child(10) { animation-delay: 0.50s; }
        .nav-understated .nav-menu li:nth-child(11) { animation-delay: 0.55s; }
        .nav-understated .nav-menu li:nth-child(12) { animation-delay: 0.60s; }
        .nav-understated .nav-menu li:nth-child(13) { animation-delay: 0.65s; }

        .nav-understated .nav-menu li a {
            position: relative;
            padding: clamp(8px, 1.2vw, 14px) clamp(12px, 1.8vw, 22px);
            font-size: clamp(0.7rem, 1.1vw, 0.85rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            display: block;
            cursor: pointer;
            border-radius: 8px 8px 0 0;
            background: transparent;
        }
        .nav-understated .nav-menu li a::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border-radius: 4px;
            box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
        }
        .nav-understated .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            border-radius: 4px;
            filter: blur(6px);
            opacity: 0.6;
        }
        .nav-understated .nav-menu li a:hover,
        .nav-understated .nav-menu li a.active {
            color: var(--text-primary);
            background: rgba(201, 168, 76, 0.06);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(201, 168, 76, 0.10);
        }
        .nav-understated .nav-menu li a:hover::before,
        .nav-understated .nav-menu li a.active::before {
            width: 70%;
            left: 15%;
        }
        .nav-understated .nav-menu li a:hover::after,
        .nav-understated .nav-menu li a.active::after {
            width: 80%;
            left: 10%;
        }
        .nav-understated .nav-menu li a i {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: inline-block;
            margin-right: 4px;
        }
        .nav-understated .nav-menu li a:hover i,
        .nav-understated .nav-menu li a.active i {
            transform: scale(1.2) rotate(-8deg);
            color: var(--accent);
        }
        .nav-understated .nav-menu li a.active {
            background: linear-gradient(135deg, rgba(201, 168, 76, 0.10), rgba(201, 168, 76, 0.04));
            border-bottom-color: var(--accent);
            box-shadow: 0 4px 20px rgba(201, 168, 76, 0.12);
        }
        .district-toggle-btn i.fa-chevron-down {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .district-toggle-btn:hover i.fa-chevron-down {
            transform: rotate(180deg) scale(1.1);
            color: var(--accent);
        }
        .dark-mode .nav-understated .nav-menu li a {
            color: var(--text-secondary);
        }
        .dark-mode .nav-understated .nav-menu li a:hover,
        .dark-mode .nav-understated .nav-menu li a.active {
            color: #FFFFFF;
            background: rgba(201, 168, 76, 0.08);
        }
        .dark-mode .nav-understated .nav-menu li a.active {
            background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
            border-bottom-color: var(--accent);
        }

        /* ===== জেলা ওভারলে ===== */
        .district-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(10px);
            z-index: 99999;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .district-overlay.active {
            display: flex;
            opacity: 1;
        }
        .district-overlay .overlay-content {
            background: var(--bg-white);
            border-radius: 24px;
            padding: clamp(20px, 3vw, 35px) clamp(16px, 3vw, 40px);
            max-width: 820px;
            width: 92%;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
            animation: overlayIn 0.5s ease forwards;
            position: relative;
            border: 2px solid var(--accent);
        }
        .district-overlay .overlay-content::-webkit-scrollbar {
            width: 6px;
        }
        .district-overlay .overlay-content::-webkit-scrollbar-track {
            background: var(--border-light);
            border-radius: 10px;
        }
        .district-overlay .overlay-content::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }
        .district-overlay .close-overlay {
            position: absolute;
            top: 10px;
            right: 14px;
            font-size: 1.6rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
            background: none;
            border: none;
            line-height: 1;
            padding: 4px 10px;
            border-radius: 50%;
        }
        .district-overlay .close-overlay:hover {
            color: var(--accent);
            background: rgba(201, 168, 76, 0.1);
            transform: rotate(90deg);
        }
        .district-overlay .overlay-title {
            font-family: var(--font-serif);
            font-size: clamp(1.1rem, 2vw, 1.6rem);
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 16px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .district-overlay .overlay-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(10px, 1.5vw, 16px) clamp(12px, 1.8vw, 24px);
        }
        .district-overlay .overlay-grid .division-group {
            background: var(--bg-site);
            border-radius: 12px;
            padding: clamp(8px, 1.2vw, 12px) clamp(10px, 1.5vw, 16px);
            transition: var(--transition);
        }
        .district-overlay .overlay-grid .division-group:hover {
            background: rgba(201, 168, 76, 0.06);
        }
        .district-overlay .overlay-grid .division-group .div-title {
            font-weight: 700;
            font-size: clamp(0.7rem, 0.9vw, 0.85rem);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--accent-text);
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 4px;
            margin-bottom: 6px;
        }
        .district-overlay .overlay-grid .division-group .district-list {
            display: flex;
            flex-wrap: wrap;
            gap: 2px 8px;
        }
        .district-overlay .overlay-grid .division-group .district-list a {
            font-size: clamp(0.7rem, 0.85vw, 0.85rem);
            color: var(--text-secondary);
            padding: 2px 0;
            transition: var(--transition);
            font-weight: 500;
            border-bottom: 1px solid transparent;
        }
        .district-overlay .overlay-grid .division-group .district-list a:hover {
            color: var(--accent-text);
            border-bottom-color: var(--accent);
            transform: translateX(3px);
        }
        .dark-mode .district-overlay {
            background: rgba(0, 0, 0, 0.85);
        }
        .dark-mode .district-overlay .overlay-content {
            background: var(--bg-white);
            border-color: var(--accent);
        }
        .dark-mode .district-overlay .overlay-grid .division-group {
            background: var(--bg-site);
        }
        .dark-mode .district-overlay .overlay-grid .division-group .district-list a {
            color: var(--text-secondary);
        }
        .dark-mode .district-overlay .overlay-grid .division-group .district-list a:hover {
            color: var(--accent);
        }

        /* ===== শেয়ার অপশন ===== */
        .share-section {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 10px;
            padding-top: 8px;
            border-top: 1px solid var(--border-light);
        }
        .share-section .share-label {
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--text-muted);
            margin-right: 2px;
        }
        .share-section .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: none;
            color: #FFFFFF;
            font-size: 0.7rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .share-section .share-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .share-btn-facebook { background: var(--blue); }
        .share-btn-twitter { background: var(--sky); }
        .share-btn-whatsapp { background: var(--green); }
        .share-btn-linkedin { background: var(--linkedin); }
        .share-btn-copy { 
            background: var(--text-secondary); 
            position: relative;
        }
        .share-btn-copy.copied {
            background: var(--accent);
        }
        .share-btn-copy .copy-tooltip {
            position: absolute;
            bottom: -26px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--text-primary);
            color: var(--bg-white);
            font-size: 0.5rem;
            padding: 2px 8px;
            border-radius: 4px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .share-btn-copy .copy-tooltip.show {
            opacity: 1;
        }

        /* ===== হিরো ===== */
        .hero-editorial {
            padding: clamp(10px, 2vw, 28px) 0;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: clamp(10px, 2vw, 24px);
        }
        .hero-feature {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }
        .hero-feature:hover { box-shadow: var(--shadow-hover); }
        .hero-feature img {
            width: 100%;
            height: clamp(160px, 30vw, 320px);
            object-fit: cover;
            transition: transform 0.9s ease, filter 0.6s ease;
        }
        .hero-feature:hover img {
            transform: scale(1.05);
            filter: brightness(1.02) contrast(1.02);
        }
        .hero-feature .feature-content {
            padding: clamp(10px, 2vw, 22px) clamp(12px, 2.5vw, 28px) clamp(14px, 2.5vw, 28px);
        }
        .hero-feature .feature-content .meta-cat {
            font-size: clamp(0.65rem, 0.9vw, 0.65rem);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-text);
            font-weight: 700;
        }
        .hero-feature .feature-content h2 {
            font-family: var(--font-serif);
            font-size: clamp(1rem, 2.5vw, 1.8rem);
            font-weight: 700;
            line-height: 1.2;
            margin: 4px 0;
        }
        .hero-feature .feature-content .excerpt {
            font-size: clamp(0.7rem, 1.2vw, 0.95rem);
            color: var(--text-secondary);
        }
        .hero-side {
            display: flex;
            flex-direction: column;
            gap: clamp(6px, 1.2vw, 14px);
        }
        .hero-side-item {
            background: var(--bg-white);
            padding: clamp(8px, 1.5vw, 18px) clamp(10px, 2vw, 22px);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-soft);
            border-left: 4px solid var(--accent);
            transition: var(--transition);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero-side-item:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-hover);
        }
        .hero-side-item .side-number {
            font-size: clamp(0.8rem, 2vw, 1.4rem);
            font-weight: 800;
            color: var(--accent);
            opacity: 0.25;
            line-height: 1;
        }
        .hero-side-item h4 {
            font-family: var(--font-serif);
            font-size: clamp(0.7rem, 1.3vw, 1.05rem);
            font-weight: 700;
            line-height: 1.3;
        }
        .hero-side-item .side-time {
            font-size: clamp(0.7rem, 0.8vw, 0.7rem);
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ===== রিয়েক্ট ===== */
        .reactions {
            display: flex;
            gap: clamp(4px, 0.8vw, 8px);
            margin-top: clamp(4px, 1vw, 10px);
            padding-top: clamp(4px, 0.8vw, 8px);
            border-top: 1px solid var(--border-light);
            flex-wrap: wrap;
        }
        .reactions button {
            background: var(--bg-site);
            border: none;
            padding: 2px clamp(4px, 0.8vw, 12px);
            border-radius: 30px;
            font-size: clamp(0.65rem, 0.8vw, 0.65rem);
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 3px;
        }
        .reactions button:hover {
            background: var(--accent);
            color: #FFFFFF;
            transform: scale(1.05);
        }
        .reactions button:hover i {
            animation: bounce 0.5s ease;
        }

        /* ===== লেটেস্ট পোস্ট ===== */
        .latest-posts-section {
            padding: clamp(10px, 1.5vw, 20px) 0;
        }
        .latest-posts-section .section-title {
            font-family: var(--font-serif);
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .latest-posts-section .section-title i {
            color: var(--accent);
        }
        .latest-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .latest-grid .card-minimal {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
        }
        .latest-grid .card-minimal:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .latest-grid .card-minimal .card-img {
            height: clamp(100px, 14vw, 160px);
            overflow: hidden;
            background: var(--border-light);
        }
        .latest-grid .card-minimal .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease, filter 0.4s ease;
        }
        .latest-grid .card-minimal:hover .card-img img {
            transform: scale(1.04);
        }
        .latest-grid .card-minimal .card-body {
            padding: clamp(8px, 1vw, 14px) clamp(10px, 1.2vw, 16px) clamp(10px, 1.2vw, 16px);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .latest-grid .card-minimal .card-body .meta {
            font-size: clamp(0.55rem, 0.7vw, 0.55rem);
            color: var(--text-muted);
            display: flex;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            font-weight: 600;
            flex-wrap: wrap;
        }
        .latest-grid .card-minimal .card-body .meta .cat { color: var(--accent-text); }
        .latest-grid .card-minimal .card-body h4 {
            font-family: var(--font-serif);
            font-size: clamp(0.75rem, 1vw, 0.95rem);
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .latest-grid .card-minimal .card-body p {
            font-size: clamp(0.7rem, 0.8vw, 0.75rem);
            color: var(--text-secondary);
            margin-top: 3px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .latest-grid .card-minimal .reactions {
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid var(--border-light);
        }
        .latest-grid .card-minimal .reactions button {
            font-size: clamp(0.55rem, 0.7vw, 0.55rem);
            padding: 1px clamp(4px, 0.6vw, 8px);
        }
        .latest-grid .card-minimal .share-section {
            margin-top: 4px;
            padding-top: 4px;
        }
        .latest-grid .card-minimal .share-section .share-btn {
            width: 24px;
            height: 24px;
            font-size: 0.55rem;
        }
        .latest-grid .card-minimal .share-section .share-label {
            font-size: 0.5rem;
        }

        /* ===== টপ ১০ ===== */
        .top10-sidebar {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            max-height: 500px;
            overflow-y: auto;
        }
        .top10-sidebar::-webkit-scrollbar {
            width: 4px;
        }
        .top10-sidebar::-webkit-scrollbar-track {
            background: var(--border-light);
            border-radius: 10px;
        }
        .top10-sidebar::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }
        .top10-sidebar h3 {
            font-family: var(--font-serif);
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
            position: sticky;
            top: 0;
            background: var(--bg-white);
            z-index: 2;
        }
        .top10-sidebar .top10-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }
        .top10-sidebar .top10-item:hover {
            background: rgba(201, 168, 76, 0.06);
            border-left-color: var(--accent);
        }
        .top10-sidebar .top10-number {
            font-weight: 900;
            font-size: clamp(0.7rem, 0.9vw, 0.9rem);
            color: var(--accent-text);
            min-width: 24px;
            text-align: center;
            font-family: var(--font-serif);
            flex-shrink: 0;
        }
        .top10-sidebar .top10-item a {
            font-size: clamp(0.7rem, 0.9vw, 0.85rem);
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            line-height: 1.3;
        }
        .top10-sidebar .top10-item a:hover {
            color: var(--accent-text);
        }

        /* ===== কন্টেন্ট লেআউট ===== */
        .content-with-sidebar {
            display: grid;
            grid-template-columns: 2.5fr 1fr;
            gap: 30px;
        }

        /* ===== সাবস্ক্রাইব ===== */
        .subscribe-section {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            padding: clamp(16px, 2vw, 24px) clamp(16px, 2.5vw, 28px);
            margin: 16px 0 24px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .subscribe-section .sub-text {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .subscribe-section .sub-text i {
            font-size: clamp(1.2rem, 2vw, 2rem);
            color: var(--accent);
        }
        .subscribe-section .sub-text h4 {
            font-family: var(--font-serif);
            font-size: clamp(0.9rem, 1.6vw, 1.2rem);
            font-weight: 700;
        }
        .subscribe-section .sub-text p {
            font-size: clamp(0.7rem, 0.9vw, 0.85rem);
            color: var(--text-muted);
        }
        .subscribe-section .sub-form {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .subscribe-section .sub-form input {
            padding: clamp(6px, 0.8vw, 10px) clamp(12px, 1.5vw, 18px);
            border: 1px solid var(--border-light);
            border-radius: 30px;
            font-size: clamp(0.7rem, 0.85vw, 0.85rem);
            min-width: 140px;
            background: var(--bg-site);
            color: var(--text-primary);
            transition: var(--transition);
            outline: none;
        }
        .subscribe-section .sub-form input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
        }
        .subscribe-section .sub-form button {
            padding: clamp(6px, 0.8vw, 10px) clamp(14px, 2vw, 28px);
            background: var(--accent);
            color: #0A1628;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: clamp(0.7rem, 0.85vw, 0.85rem);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .subscribe-section .sub-form button:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
        }

        /* ===== সাইডবার অ্যাড বক্স ===== */
        .ad-box-sidebar {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            padding: 16px;
            border: 1.5px dashed var(--accent);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .ad-box-sidebar:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }
        .ad-box-sidebar .ad-box-label {
            font-size: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            font-weight: 600;
            background: var(--bg-white);
            padding: 0 10px;
            position: absolute;
            top: -8px;
            left: 16px;
            border-radius: 20px;
        }
        .ad-box-sidebar .ad-box-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid var(--border-light);
            text-decoration: none;
        }
        .ad-box-sidebar .ad-box-item:hover {
            background: rgba(201, 168, 76, 0.05);
            border-color: var(--accent);
            transform: translateX(4px);
        }
        .ad-box-sidebar .ad-box-item img {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .ad-box-sidebar .ad-box-item .ad-box-text {
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--text-secondary);
        }
        .ad-box-sidebar .ad-box-item .ad-box-text strong {
            color: var(--text-primary);
            display: block;
            font-size: 0.75rem;
        }
        .ad-box-sidebar .ad-box-item .ad-box-icon {
            margin-left: auto;
            color: var(--accent);
            font-size: 0.6rem;
        }

        /* ===== প্রতিনিধি ===== */
        .page-representatives {
            display: none;
            padding: clamp(10px, 2vw, 30px) 0;
        }
        .page-representatives.active {
            display: block;
            animation: fadeInUp 0.7s ease;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .representative-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(clamp(130px, 20vw, 220px), 1fr));
            gap: clamp(10px, 1.5vw, 24px);
            padding: clamp(8px, 1.5vw, 20px) 0;
        }
        .rep-card {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            padding: clamp(10px, 1.5vw, 20px);
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
            border: 1px solid var(--border-light);
        }
        .rep-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }
        .rep-card img {
            width: clamp(50px, 10vw, 100px);
            height: clamp(50px, 10vw, 100px);
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 6px;
            border: 3px solid var(--accent);
        }
        .rep-card .rep-name {
            font-family: var(--font-serif);
            font-size: clamp(0.7rem, 1.3vw, 1.1rem);
            font-weight: 700;
        }
        .rep-card .rep-designation {
            font-size: clamp(0.7rem, 0.8vw, 0.75rem);
            color: var(--accent-text);
            font-weight: 600;
        }
        .rep-card .rep-location {
            font-size: clamp(0.7rem, 0.7vw, 0.7rem);
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ===== ফুটার ===== */
        .footer-elegant {
            background: var(--text-primary);
            color: rgba(255,255,255,0.7);
            padding: clamp(16px, 3vw, 40px) 0 clamp(10px, 2vw, 20px);
            margin-top: clamp(12px, 2vw, 30px);
            transition: var(--transition);
        }
        .footer-elegant .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: clamp(12px, 2.5vw, 30px);
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .footer-elegant h4 {
            font-family: var(--font-serif);
            color: #FFFFFF;
            font-size: clamp(0.7rem, 1.5vw, 1.1rem);
            margin-bottom: clamp(6px, 1.2vw, 14px);
        }
        .footer-elegant .brand-footer h1 {
            font-family: var(--font-serif);
            font-size: clamp(1rem, 2vw, 1.6rem);
            color: #FFFFFF;
            font-weight: 700;
        }
        .footer-elegant .brand-footer h1 span { color: var(--accent); }
        .footer-elegant .brand-footer h1 a { color: #FFFFFF; }
        .footer-elegant .brand-footer p {
            font-size: clamp(0.7rem, 1vw, 0.85rem);
            line-height: 1.7;
            margin: 4px 0 8px;
        }
        .footer-elegant .social-icons {
            display: flex;
            gap: 8px;
            font-size: clamp(0.7rem, 1.2vw, 1.1rem);
            margin-top: 8px;
            flex-wrap: wrap;
        }
        .footer-elegant .social-icons a {
            color: rgba(255,255,255,0.5);
            transition: var(--transition);
        }
        .footer-elegant .social-icons a:hover { color: #FFFFFF; }
        .footer-elegant ul { list-style: none; }
        .footer-elegant ul li { margin-bottom: 4px; }
        .footer-elegant ul li a {
            font-size: clamp(0.7rem, 0.9vw, 0.85rem);
            transition: var(--transition);
            position: relative;
            display: inline-block;
        }
        .footer-elegant ul li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.4s ease;
        }
        .footer-elegant ul li a:hover::after {
            width: 100%;
        }
        .footer-elegant ul li a:hover {
            color: #FFFFFF;
            padding-left: 4px;
        }
        .footer-elegant .contact-email {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255,255,255,0.05);
            padding: 4px 10px;
            border-radius: 30px;
            margin-top: 4px;
            font-size: clamp(0.7rem, 0.9vw, 0.8rem);
            flex-wrap: wrap;
        }
        .footer-elegant .contact-email i { color: var(--accent); }
        .footer-elegant .newsletter-box {
            display: flex;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 3px;
        }
        .footer-elegant .newsletter-box input {
            background: transparent;
            border: none;
            color: #FFFFFF;
            padding: 4px 0;
            flex: 1;
            outline: none;
            font-size: clamp(0.7rem, 0.9vw, 0.85rem);
            min-width: 60px;
        }
        .footer-elegant .newsletter-box input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .footer-elegant .newsletter-box button {
            background: transparent;
            border: none;
            color: var(--accent);
            font-size: clamp(0.7rem, 1vw, 1.0rem);
            cursor: pointer;
            transition: var(--transition);
        }
        .footer-elegant .newsletter-box button:hover {
            transform: translateX(4px);
        }
        .footer-elegant .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: clamp(8px, 1.5vw, 24px);
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: clamp(0.7rem, 0.7vw, 0.7rem);
            letter-spacing: 0.3px;
            color: rgba(255,255,255,0.5);
        }
        .footer-elegant .copyright strong { 
            color: #FFFFFF; 
            font-weight: 600;
        }

        /* ===== ডার্ক মোডে ===== */
        .dark-mode .hero-feature,
        .dark-mode .hero-side-item,
        .dark-mode .card-minimal,
        .dark-mode .rep-card,
        .dark-mode .top10-sidebar,
        .dark-mode .ad-box-sidebar,
        .dark-mode .subscribe-section {
            background: var(--bg-white);
            border-color: var(--border-light);
        }
        .dark-mode .nav-understated {
            background: var(--bg-white);
            border-color: var(--border-light);
        }
        .dark-mode .nav-understated .nav-menu li a {
            color: var(--text-secondary);
        }
        .dark-mode .nav-understated .nav-menu li a:hover,
        .dark-mode .nav-understated .nav-menu li a.active {
            color: #FFFFFF;
        }
        .dark-mode .reactions button {
            background: var(--bg-site);
            color: var(--text-secondary);
        }
        .dark-mode .reactions button:hover {
            background: var(--accent);
            color: #FFFFFF;
        }
        .dark-mode .top10-item:hover {
            background: rgba(201, 168, 76, 0.08);
        }
        .dark-mode .top10-item a {
            color: var(--text-secondary);
        }
        .dark-mode .top10-item a:hover {
            color: var(--accent);
        }
        .dark-mode .footer-elegant {
            background: #0A0A0A;
        }
        .dark-mode .footer-elegant .brand-footer h1 a { color: #FFFFFF; }
        .dark-mode .footer-elegant .brand-footer h1 span { color: var(--accent); }
        .dark-mode .district-overlay .overlay-content {
            background: var(--bg-white);
        }
        .dark-mode .district-overlay .overlay-grid .division-group {
            background: var(--bg-site);
        }
        .dark-mode .district-overlay .overlay-grid .division-group .district-list a {
            color: var(--text-secondary);
        }
        .dark-mode .district-overlay .overlay-grid .division-group .district-list a:hover {
            color: var(--accent);
        }

        /* ===== ফেড-আপ ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== ডেমো ইনফো ===== */
        .demo-info {
            text-align: center;
            padding: 12px 16px;
            font-size: clamp(0.7rem, 0.9vw, 0.8rem);
            color: var(--text-muted);
            border-top: 1px solid var(--border-light);
            background: var(--bg-white);
            transition: var(--transition);
        }
        .demo-info strong { color: var(--accent-text); }

        /* ===== রেসপন্সিভ ===== */
        @media (max-width: 1199px) {
            .content-with-sidebar { grid-template-columns: 1.8fr 1fr; }
            .latest-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 991px) {
            .content-with-sidebar { grid-template-columns: 1fr; }
            .hero-grid { grid-template-columns: 1fr; }
            .hero-feature img { height: 250px; }
            .footer-elegant .footer-grid { grid-template-columns: 1fr 1fr; }
            .ad-spot-dual .ad-item { width: 80px; height: 40px; }
            .district-overlay .overlay-grid { grid-template-columns: 1fr 1fr; }
            .subscribe-section { flex-direction: column; text-align: center; }
            .subscribe-section .sub-text { flex-direction: column; text-align: center; }
            .subscribe-section .sub-form { justify-content: center; }
            .latest-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
            .top10-sidebar { max-height: 300px; }
        }
        @media (max-width: 767px) {
            .container { padding: 0 12px; }
            .top-bar-premium .right-group {
                width: 100%;
                justify-content: center;
                padding-top: 4px;
                border-top: 1px solid rgba(255,255,255,0.08);
            }
            .social-icons-top a { width: 22px; height: 22px; font-size: 0.55rem; }
            .header-premium .container { flex-direction: column; align-items: stretch; gap: 8px; }
            .brand-highlight { justify-content: center; }
            .brand-highlight .brand-title { font-size: 1.2rem; }
            .brand-highlight .brand-logo { width: 40px; height: 40px; font-size: 18px; }
            .ad-spot-dual { justify-content: center; }
            .ad-spot-dual .ad-item { width: 70px; height: 35px; }
            .hero-feature img { height: 200px; }
            .hero-feature .feature-content h2 { font-size: 1.2rem; }
            .nav-understated .nav-menu li a { padding: 6px 10px; font-size: 0.68rem; }
            .footer-elegant .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
            .top-bar-premium .container { flex-direction: column; align-items: stretch; text-align: center; }
            .top-bar-premium .left-group { justify-content: center; }
            .top-bar-premium .date { display: none; }
            .district-overlay .overlay-content { padding: 16px; max-height: 90vh; }
            .district-overlay .overlay-grid { grid-template-columns: 1fr 1fr; }
            .subscribe-section .sub-form input { min-width: 120px; }
            .latest-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .top10-sidebar { max-height: 250px; }
            .content-with-sidebar { grid-template-columns: 1fr; }
        }
        @media (max-width: 575px) {
            .brand-highlight .brand-title { font-size: 1rem; }
            .brand-highlight .brand-logo { width: 34px; height: 34px; font-size: 15px; }
            .brand-highlight .brand-tagline { font-size: 0.62rem; letter-spacing: 1px; }
            .brand-highlight .progga-link { font-size: 0.6rem; padding: 2px 8px; }
            .hero-feature .feature-content { padding: 10px; }
            .hero-feature img { height: 160px; }
            .representative-grid { grid-template-columns: 1fr 1fr; }
            .ad-spot-dual .ad-item { width: 64px; height: 32px; }
            .ad-spot-dual .ad-item .ad-placeholder span { display: none; }
            .ad-spot-dual .ad-item .ad-placeholder i { font-size: 1rem; margin-bottom: 0; }
            .footer-elegant .footer-grid { grid-template-columns: 1fr; gap: 12px; }
            .district-overlay .overlay-grid { grid-template-columns: 1fr; }
            .nav-understated .nav-menu li a { padding: 5px 9px; font-size: 0.68rem; }
            .social-icons-top { gap: 2px; }
            .social-icons-top a { width: 18px; height: 18px; font-size: 0.5rem; }
            .subscribe-section { padding: 12px; }
            .subscribe-section .sub-text i { font-size: 1.2rem; }
            .subscribe-section .sub-text h4 { font-size: 0.85rem; }
            .subscribe-section .sub-form input { min-width: 100px; padding: 6px 10px; font-size: 0.65rem; }
            .subscribe-section .sub-form button { padding: 6px 12px; font-size: 0.65rem; }
            .latest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .latest-grid .card-minimal .card-img { height: 100px; }
            .top10-sidebar { max-height: 200px; padding: 12px; }
            .content-with-sidebar { grid-template-columns: 1fr; }
        }
        @media (max-width: 479px) {
            .brand-highlight .brand-title { font-size: 0.85rem; }
            .brand-highlight .brand-logo { width: 30px; height: 30px; font-size: 12px; }
            .hero-feature img { height: 140px; }
            .representative-grid { grid-template-columns: 1fr; }
            .ad-spot-dual .ad-item { width: 56px; height: 28px; }
            .district-overlay .overlay-title { font-size: 1rem; }
            .latest-grid { grid-template-columns: 1fr; }
            .latest-grid .card-minimal .card-img { height: 80px; }
        }
        @media (min-width: 1600px) {
            .district-overlay .overlay-content {
                max-width: 1000px;
                padding: 45px 55px;
            }
            .district-overlay .overlay-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px 28px;
            }
            .latest-grid { grid-template-columns: repeat(4, 1fr); }
        }

/* ===== ফিচার্ড ইমেজ না থাকলে প্লেসহোল্ডার (থিম-সংযোজন) ===== */
.progga-no-thumb {
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--border-light), var(--bg-site));
    color: var(--accent);
    font-size: 1.8rem;
    opacity: 0.5;
}
