
        /* ================= ULTRA PREMIUM 3D THEME ================= */
        :root {
            --bg-glass: rgba(255, 255, 255, 0.90);
            --border-glass: rgba(255, 255, 255, 0.6);
            --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
            
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --accent-blue: #2563eb;
            
            /* Chip Colors */
            --col-gold: #b45309;   
            --col-green: #15803d;  
            --col-blue: #1d4ed8;   
            --col-purple: #7e22ce; 
            --col-teal: #0f766e;   
            --col-orange: #c2410c; 
        }

        body {
            background-color: #f3f4f6;
            background-image: 
                radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
                radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
                radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
            background: 
                radial-gradient(circle at 15% 50%, rgba(238, 242, 255, 0.8), transparent 25%), 
                radial-gradient(circle at 85% 30%, rgba(243, 232, 255, 0.8), transparent 25%), 
                linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #fdf4ff 100%);
            background-attachment: fixed;
            font-family: 'Inter', sans-serif;
            color: var(--text-primary);
            margin: 0; padding: 0; min-height: 100vh;
        }

        .news-page-container { max-width: 1240px; margin: 0 auto; padding: 18px 16px; }

        /* HEADER */
        .premium-header { 
            background: var(--bg-glass);
            backdrop-filter: blur(16px);
            padding: 18px 20px; 
            border-radius: 16px;
            border: 1px solid var(--border-glass); 
            margin-bottom: 20px; 
            box-shadow: var(--shadow-glass);
            display: flex; flex-direction: column; gap: 16px; 
        }

        .header-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
        
        .header-content h1 { 
            font-size: 1.5rem; font-weight: 800; margin: 0; 
            background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .header-content p { color: var(--text-secondary); margin-top: 4px; font-size: 0.85rem; font-weight: 500; }

        /* Search Bar */
        .search-wrapper { position: relative; width: 100%; max-width: 420px; }
        .search-wrapper input { 
            width: 100%; padding: 10px 16px 10px 42px; border-radius: 12px; 
            background: rgba(255,255,255,0.8); border: 1px solid rgba(203, 213, 225, 0.6); 
            color: var(--text-primary); font-family: inherit; font-size: 0.88rem; 
            outline: none; transition: all 0.3s; box-sizing: border-box; 
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
        }
        .search-wrapper input:focus { background: #ffffff; border-color: var(--accent-blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15); }
        .search-wrapper i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-secondary); font-size: 1rem; }

        /* FILTERS */
        .filters-wrapper { display: flex; flex-direction: column; gap: 16px; }

        .main-cats-row { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,0.05); }
        .main-cats-row::-webkit-scrollbar { display: none; }

        .main-tab { padding: 7px 16px; border-radius: 12px; cursor: pointer; font-weight: 700; font-size: 0.85rem; white-space: nowrap; transition: all 0.2s ease; display: flex; align-items: center; gap: 7px; border: 1px solid transparent; }
        .mt-all.active { background: #1e293b; color: #fff; box-shadow: 0 8px 20px rgba(30, 41, 59, 0.25); }
        .mt-india.active { background: #ea580c; color: #fff; box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25); }
        .mt-global.active { background: #2563eb; color: #fff; box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25); }
        .mt-comm.active { background: #ca8a04; color: #fff; box-shadow: 0 8px 20px rgba(202, 138, 4, 0.25); }
        .mt-crypto.active { background: #9333ea; color: #fff; box-shadow: 0 8px 20px rgba(147, 51, 234, 0.25); }
        .main-tab { background: rgba(255,255,255,0.6); color: var(--text-secondary); border: 1px solid rgba(0,0,0,0.05); }
        .main-tab:hover { background: #fff; transform: translateY(-1px); }

        .events-row-label { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; color: #94a3b8; margin-bottom: 12px; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
        .events-row-label::after { content:''; height:1px; background: rgba(0,0,0,0.05); flex:1; }
        
        .scroll-container-wrapper { position: relative; display: flex; align-items: center; }
        .scroll-arrow { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); background: #fff; color: var(--text-secondary); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.05); z-index: 2; transition: all 0.2s; flex-shrink: 0; font-size: 0.8rem; }
        .scroll-arrow:hover { background: var(--accent-blue); color: #fff; border-color: var(--accent-blue); transform: scale(1.1); }
        
        .events-row { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding: 4px 4px 10px 4px; scroll-behavior: smooth; margin: 0 12px; width: 100%; }
        .events-row::-webkit-scrollbar { display: none; }

        .event-chip { padding: 7px 15px; border-radius: 50px; cursor: pointer; font-weight: 600; font-size: 0.8rem; white-space: nowrap; transition: all 0.2s ease; display: flex; align-items: center; gap: 7px; border: 1px solid transparent; flex-shrink: 0; background: rgba(255,255,255,0.7); box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
        .chip-gold:hover, .chip-gold.active { background: var(--col-gold); color: #fff; box-shadow: 0 5px 15px rgba(202, 138, 4, 0.3); }
        .chip-green:hover, .chip-green.active { background: var(--col-green); color: #fff; box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3); }
        .chip-blue:hover, .chip-blue.active { background: var(--col-blue); color: #fff; box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3); }
        .chip-purple:hover, .chip-purple.active { background: var(--col-purple); color: #fff; box-shadow: 0 5px 15px rgba(126, 34, 206, 0.3); }
        .chip-teal:hover, .chip-teal.active { background: var(--col-teal); color: #fff; box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3); }
        .chip-orange:hover, .chip-orange.active { background: var(--col-orange); color: #fff; box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3); }
        .chip-gold { color: var(--col-gold); border-color: #fde047; background: #fefce8; }
        .chip-green { color: var(--col-green); border-color: #bbf7d0; background: #f0fdf4; }
        .chip-blue { color: var(--col-blue); border-color: #bfdbfe; background: #eff6ff; }
        .chip-purple { color: var(--col-purple); border-color: #e9d5ff; background: #faf5ff; }
        .chip-teal { color: var(--col-teal); border-color: #99f6e4; background: #f0fdfa; }
        .chip-orange { color: var(--col-orange); border-color: #fed7aa; background: #fff7ed; }

        /* NEWS GRID */
        .news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; padding-bottom: 24px; }
        
        .news-card { 
            background: rgba(255, 255, 255, 0.9); 
            border-radius: 14px; 
            overflow: hidden; 
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            display: flex; flex-direction: column; 
            box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.06); 
            height: auto; position: relative;
        }
        .news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px -5px rgba(37, 99, 235, 0.15); border-color: rgba(37, 99, 235, 0.3); }
        
        /* Image with clear centered company name */
        .card-image-wrap { height: 150px; width: 100%; position: relative; overflow: hidden; background: #0f172a; transition: height 0.3s ease; }
        .card-image-wrap img.card-photo { width: 100%; height: 100%; object-fit: cover; opacity: 0.40; transition: transform 0.7s ease, opacity 0.3s ease; }
        .news-card:hover .card-image-wrap img.card-photo { transform: scale(1.08); opacity: 0.52; }
        /* dark wash so the white name pops clearly */
        .card-image-wrap::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at center, rgba(15,23,42,0.25) 0%, rgba(15,23,42,0.55) 100%); z-index:1; }
        /* clear, centered company name — premium style */
        .img-watermark {
            position:absolute; inset:0; z-index:2;
            display:flex; flex-direction:column; align-items:center; justify-content:center;
            text-align:center; padding: 0 18px; gap: 8px;
            pointer-events:none;
        }
        .img-watermark .wm-name {
            font-size: 1.28rem; font-weight: 900; line-height: 1.2;
            letter-spacing: 0.4px; text-transform: uppercase;
            background: linear-gradient(180deg, #ffffff 0%, #dbeafe 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 6px rgba(0,0,0,0.65));
            display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
        }
        .img-watermark .wm-accent {
            width: 46px; height: 3px; border-radius: 3px;
            background: linear-gradient(90deg, transparent, #60a5fa, transparent);
            box-shadow: 0 0 8px rgba(96,165,250,0.6);
            transition: width 0.3s ease;
        }
        .news-card:hover .img-watermark .wm-accent { width: 72px; }
        .img-logo { position:absolute; top:8px; left:8px; z-index:3; height:22px; width:auto; object-fit:contain; opacity:0.95; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.6)); }

        .card-content { padding: 14px 16px 16px; flex-grow: 1; display: flex; flex-direction: column; }
        .card-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
        
        .card-tag-container { display: flex; flex-wrap: wrap; gap: 5px; max-width: 100%; }
        .card-tag { padding: 4px 9px; border-radius: 7px; font-weight: 700; font-size: 0.62rem; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; letter-spacing: 0.4px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }

        .time-stamp { color: var(--text-secondary); font-size: 0.78rem; display: flex; align-items: center; gap: 5px; font-weight: 600; }
        
        .news-title { font-size: 1.02rem; font-weight: 800; margin: 0 0 10px 0; line-height: 1.35; color: var(--text-primary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; letter-spacing:-0.2px; }
        
        .news-desc { font-size: 0.85rem; color: #64748b; margin: 0 0 14px 0; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: all 0.3s; }

        .news-card.expanded { height: auto !important; min-height: fit-content !important; }
        .news-card.expanded .news-desc { display: none; }
        .news-card.expanded .card-image-wrap { display: none; }
        .news-card.expanded .expanded-content { display: block; opacity: 1; }
        
        .expanded-content { display: none; margin-top: 12px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 14px; animation: fadeIn 0.4s ease; }
        
        .card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.05); margin-top: auto; }
        .read-more-btn { background: none; border: none; padding: 0; color: var(--accent-blue); font-size: 0.85rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: 0.2s; }
        .read-more-btn:hover { gap: 10px; text-decoration: none; color: #1e40af; }

        .scroll-loader, .mnews-loading, .mnews-empty { text-align: center; padding: 80px; color: var(--text-secondary); grid-column: 1/-1; background: rgba(255,255,255,0.6); border-radius: 20px; backdrop-filter: blur(5px); }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        @media (max-width: 768px) {
            .news-grid { grid-template-columns: 1fr; }
            .header-top { flex-direction: column; align-items: flex-start; }
            .search-wrapper { max-width: 100%; }
            .scroll-arrow { display: none; }
            .premium-header { padding: 20px; }
        }
   