@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&family=Montserrat:wght@300;400;500;700&display=swap');

        /* Scoped CSS - tất cả style bọc trong #lng-emagazine để tránh xung đột với CafeF */
        #lng-emagazine {
            --bg-color: #0b1325;
            --text-color: #f4f6f9;
            --accent-gold: #cca43b;
            --accent-blue: #0077b6;
            --card-bg: rgba(255, 255, 255, 0.03);
            --border-color: rgba(255, 255, 255, 0.1);
            --color-bds: #0288d1;
            --color-kcn: #ef6c00;

            box-sizing: border-box;
            font-family: 'Merriweather', serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.8;

            /* Phá vỡ padding/margin của container CafeF để tràn full-width */
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        #lng-emagazine *, #lng-emagazine *::before, #lng-emagazine *::after {
            box-sizing: border-box;
        }

        #lng-emagazine h1, #lng-emagazine h2, #lng-emagazine h3, #lng-emagazine h4, #lng-emagazine .font-sans {
            font-family: 'Montserrat', sans-serif;
        }

        /* Hero Section - thay 100vh bằng px cố định để hoạt động trong embed */
        #lng-emagazine .hero {
            position: relative;
            height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(rgba(11, 19, 37, 0.5), rgba(11, 19, 37, 0.95)), 
                        url('https://deltagas.com.vn/wp-content/uploads/2025/11/LNG-VN.jpeg') center/cover no-repeat scroll;
        }

        #lng-emagazine .hero-content {
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            z-index: 2;
        }

        #lng-emagazine .hero-tag {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-weight: 700;
            display: inline-block;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 5px;
        }

        #lng-emagazine .hero h1 {
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 25px;
            color: #ffffff;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        @media (max-width: 768px) {
            #lng-emagazine .hero h1 { font-size: 1.6rem; }
            #lng-emagazine .hero-lead { font-size: 1.1rem !important; }
        }

        #lng-emagazine .hero-lead {
            font-size: 1.4rem;
            font-style: italic;
            color: #d1d5db;
            max-width: 750px;
            margin: 0 auto;
            font-weight: 500;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }

        /* Article Body Container */
        #lng-emagazine .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        #lng-emagazine p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #e5e7eb;
            text-align: justify;
        }

        #lng-emagazine .first-para::first-letter {
            font-size: 3.5rem;
            float: left;
            margin-right: 10px;
            line-height: 1;
            color: var(--accent-gold);
            font-family: 'Montserrat', sans-serif;
        }

        /* Section Breakdown Trigger Visuals - bỏ 100vw, dùng width 100% */
        #lng-emagazine .full-width-img-container {
            width: 100%;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        #lng-emagazine .full-width-img-container img {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            filter: brightness(0.8);
            transition: filter 0.5s ease;
            display: block;
        }

        #lng-emagazine .full-width-img-container:hover img {
            filter: brightness(0.95);
        }

        #lng-emagazine .img-caption {
            text-align: center;
            font-size: 0.9rem;
            font-style: italic;
            color: #9ca3af;
            margin-top: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        #lng-emagazine h2 {
            font-size: 1.7rem;
            color: #ffffff;
            margin-top: 60px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            border-left: 4px solid var(--accent-gold);
            padding-left: 15px;
        }

        /* Stat Box Grid */
        #lng-emagazine .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        #lng-emagazine .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
        }

        #lng-emagazine .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.05);
        }

        #lng-emagazine .stat-num-wrapper {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        #lng-emagazine .stat-num-wrapper span {
            display: inline-block;
        }

        #lng-emagazine .stat-label {
            font-size: 1rem;
            color: #9ca3af;
            font-family: 'Montserrat', sans-serif;
        }

        /* --- PHẦN BẢN ĐỒ SỐ TƯƠNG TÁC (GIỮ NGUYÊN KÍCH THƯỚC BÀI CŨ) --- */
        #lng-emagazine .map-section {
            width: 100%;
            margin-top: 50px;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #111a2e;
            padding: 60px 20px;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        #lng-emagazine .map-header {
            text-align: center;
            margin-bottom: 30px;
            max-width: 800px;
        }

        #lng-emagazine .map-header h3 {
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        #lng-emagazine .map-header p {
            color: #9ca3af;
            font-size: 15px;
            text-align: center;
            margin-bottom: 20px;
        }

        #lng-emagazine .search-container {
            margin: 20px auto 0 auto;
            max-width: 500px;
            position: relative;
            width: 100%;
            z-index: 2000;
        }

        #lng-emagazine .search-input {
            width: 100%;
            padding: 14px 24px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            outline: none;
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        #lng-emagazine .search-input:focus {
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 15px rgba(204, 164, 59, 0.2);
        }

        /* Kích thước chuẩn chỉnh tương chỉnh theo khung bài cũ chống chồng lấn */
        #lng-emagazine .map-container {
            position: relative;
            width: 950px;
            max-width: 98%;
            height: 1200px; /* Chiều cao lớn giúp bản đồ trải dài thoáng đãng */
            background: #cfe3ee;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            box-sizing: border-box;
            overflow: hidden;
        }

        #map {
            width: 100%;
            height: 100%;
            background: #cfe3ee;
        }

        #lng-emagazine .info-boxes-pane {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1000;
        }

        #lng-emagazine .info-box {
            position: absolute;
            background: rgba(255, 255, 255, 0.98);
            border-left: 5px solid;
            padding: 12px 14px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            width: 240px;
            box-sizing: border-box;
            transition: opacity 0.3s ease, transform 0.3s ease;
            white-space: normal;   
            word-wrap: break-word; 
            pointer-events: auto;
            font-family: 'Montserrat', sans-serif;
        }

        #lng-emagazine .info-box:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            transform: scale(1.03);
            z-index: 2000 !important;
        }

        #lng-emagazine .info-box .project-name {
            font-size: 13.5px;
            font-weight: 700;
            color: #111111;
            margin: 0 0 6px 0;
            line-height: 1.3;
        }

        #lng-emagazine .info-box .meta-item {
            font-size: 11px;
            color: #4ea;
            margin: 4px 0;
            display: flex;
            line-height: 1.4;
        }

        #lng-emagazine .info-box .meta-label {
            font-weight: 600;
            color: #666666;
            min-width: 70px;
            display: inline-block;
        }

        #lng-emagazine .info-box .meta-val {
            color: #222222;
            word-break: break-word;
            overflow-wrap: break-word;
            min-width: 0;
            flex: 1;
        }

        #lng-emagazine .info-box .status-badge {
            display: inline-block;
            white-space: normal;
            word-break: break-word;
            line-height: 1.4;
            max-width: 100%;
        }

        /* Custom pulse marker */
        #lng-emagazine .custom-pulse-marker {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            box-shadow: 0 0 0 2px #ffffff, 0 2px 5px rgba(0,0,0,0.5);
            position: relative;
            transition: transform 0.3s ease;
        }

        #lng-emagazine .custom-pulse-marker::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 12px;
            border: 2px solid;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: radarPulse 2.2s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
        }

        @keyframes radarPulse {
            0% { width: 12px; height: 12px; opacity: 0.8; }
            100% { width: 45px; height: 45px; opacity: 0; }
        }

        #lng-emagazine .type-bds .custom-pulse-marker { background-color: var(--color-bds); }
        #lng-emagazine .type-bds .custom-pulse-marker::before { border-color: var(--color-bds); }
        #lng-emagazine .type-bds .info-box { border-left-color: var(--color-bds); }

        #lng-emagazine .type-kcn .custom-pulse-marker { background-color: var(--color-kcn); }
        #lng-emagazine .type-kcn .custom-pulse-marker::before { border-color: var(--color-kcn); }
        #lng-emagazine .type-kcn .info-box { border-left-color: var(--color-kcn); }

        /* SVG Pane chỉ đường phủ lên Leaflet */
        #lng-emagazine .leaflet-connecting-lines-pane {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 900;
        }

        #lng-emagazine .leaflet-connecting-lines-pane line {
            stroke-dasharray: 5,4;
            opacity: 0.5;
            transition: opacity 0.3s, stroke-width 0.3s;
        }
        #lng-emagazine .type-bds line { stroke: var(--color-bds); }
        #lng-emagazine .type-kcn line { stroke: var(--color-kcn); }

        #lng-emagazine .map-legend {
            position: absolute;
            bottom: 25px; 
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.98);
            padding: 12px 28px;
            border-radius: 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            z-index: 2000;
            border: 1px solid #e8eef3;
            pointer-events: none;
            display: flex;
            align-items: center;
            gap: 25px;
            font-family: 'Montserrat', sans-serif;
        }

        #lng-emagazine .legend-title {
            font-size: 12px;
            font-weight: 800;
            color: #555;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            border-right: 2px solid #e0e0e0;
            padding-right: 15px;
            margin: 0;
        }

        #lng-emagazine .legend-item {
            display: flex;
            align-items: center;
            font-size: 12px;
            color: #333;
            font-weight: 600;
        }

        #lng-emagazine .legend-color {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            margin-right: 8px;
            box-shadow: 0 0 0 2px #fff, 0 1px 4px rgba(0,0,0,0.25);
        }

        #lng-emagazine .island-label {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            font-family: sans-serif;
            font-weight: 700;
            font-size: 11.5px;
            color: #1B2A41;
            text-shadow: -1px -1px 0 #cfe3ee, 1px -1px 0 #cfe3ee, -1px 1px 0 #cfe3ee, 1px 1px 0 #cfe3ee, 0 0 6px #cfe3ee;
            padding: 0 0 0 2px !important;
        }

        /* Enterprise Showcase Grid Layout */
        #lng-emagazine .enterprise-section {
            background: rgba(255, 255, 255, 0.02);
            padding: 40px;
            border-radius: 12px;
            margin: 50px 0;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #lng-emagazine .enterprise-title {
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            width: 100%;
        }

        #lng-emagazine .square-logo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 460px;
            margin: 0 auto;
        }

        @media (max-width: 500px) {
            #lng-emagazine .square-logo-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 300px;
            }
        }

        @keyframes floatEffect {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-4px) rotate(0.5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        #lng-emagazine .logo-card {
            background: #ffffff;
            padding: 10px;
            border-radius: 8px;
            width: 130px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            animation: floatEffect 4s ease-in-out infinite;
        }

        #lng-emagazine .square-logo-grid .logo-card:nth-child(2n) { animation-delay: 1s; }
        #lng-emagazine .square-logo-grid .logo-card:nth-child(3n) { animation-delay: 1.8s; }
        #lng-emagazine .square-logo-grid .logo-card:nth-child(4n) { animation-delay: 2.5s; }

        #lng-emagazine .logo-card:hover {
            transform: scale(1.15) translateY(-8px);
            box-shadow: 0 12px 20px rgba(204, 164, 59, 0.4);
            border: 2px solid var(--accent-gold);
            z-index: 5;
            animation-play-state: paused;
        }

        #lng-emagazine .logo-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        #lng-emagazine .logo-tooltip {
            position: absolute;
            bottom: -35px;
            background: #000;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 4px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            white-space: nowrap;
            z-index: 10;
        }

        #lng-emagazine .logo-card:hover .logo-tooltip {
            opacity: 1;
        }

        /* Footer Conclusions */
        #lng-emagazine .conclusion-box {
            border-top: 2px dashed var(--accent-gold);
            padding-top: 30px;
            margin-top: 60px;
            font-style: italic;
        }

        /* Metadata & Credit Style */
        #lng-emagazine .article-credit {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            text-align: right;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            color: #9ca3af;
            line-height: 1.6;
        }

        #lng-emagazine .credit-item {
            margin-bottom: 4px;
        }

        #lng-emagazine .credit-item span {
            color: var(--accent-gold);
            font-weight: 500;
        }

        #lng-emagazine footer {
            background: #060b16;
            text-align: center;
            padding: 40px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            color: #6b7280;
            border-top: 1px solid var(--border-color);
        }

        /* Scroll indicator */
        #lng-emagazine .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 2;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
            40% { transform: translate(-50%, -10px); }
            60% { transform: translate(-50%, -5px); }
        }
