﻿:root {
            --primary: #1D7BFF;
            --primary-hover: #1565C0;
            --bg-deep: #0A1128;
            --bg-light: #F4F7FC;
            --text-main: #1C2D42;
            --text-muted: #667085;
            --border-color: rgba(29, 123, 255, 0.15);
            --shadow-sm: 0 2px 8px rgba(10, 17, 40, 0.05);
            --shadow-md: 0 8px 24px rgba(10, 17, 40, 0.08);
            --shadow-lg: 0 16px 48px rgba(10, 17, 40, 0.12);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background: var(--bg-light); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; height: 70px; display: flex; align-items: center; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--bg-deep); white-space: nowrap; }
        .nav-menu { display: flex; align-items: center; gap: 32px; }
        .nav-item { font-size: 15px; font-weight: 500; color: var(--text-main); }
        .nav-item:hover { color: var(--primary); }
        .mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--bg-deep); }

        .inner-banner { background: linear-gradient(135deg, var(--bg-deep) 0%, #152C5B 100%); color: #fff; padding: 60px 0; }
        .inner-banner-title { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
        .breadcrumb { font-size: 14px; color: #A5C0E6; }
        .breadcrumb a:hover { color: #FFF; }

        .section { padding: 60px 0; }
        .tag-info-bar { margin-bottom: 40px; background: #FFF; border: 1px solid var(--border-color); padding: 24px 30px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-sm); }
        .tag-info-bar h2 { font-size: 20px; font-weight: 800; color: var(--bg-deep); }
        .tag-info-bar p { font-size: 14px; color: var(--text-muted); }

        .news-grid-list { display: grid; grid-template-columns: 1fr; gap: 30px; }
        .post-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); display: flex; transition: all 0.3s ease; }
        .post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
        .post-thumb { width: 280px; min-height: 100%; overflow: hidden; background: #eef2f7; position: relative; flex-shrink: 0; }
        .post-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .post-meta-tag { position: absolute; top: 15px; left: 15px; background: var(--primary); color: #fff; padding: 4px 10px; font-size: 11px; font-weight: 600; border-radius: 3px; }
        .post-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .post-title { font-size: 20px; font-weight: 700; color: var(--bg-deep); margin-bottom: 12px; line-height: 1.4; }
        .post-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
        .post-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f0f4f8; padding-top: 15px; font-size: 12px; color: var(--text-muted); }
        .post-readmore { font-weight: 600; color: var(--primary); }

        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .page-link { padding: 10px 16px; background: #FFF; border: 1px solid var(--border-color); border-radius: 4px; font-weight: 600; font-size: 14px; color: var(--text-main); }
        .page-link.active, .page-link:hover { background: var(--primary); color: #FFF; border-color: var(--primary); }

        .site-footer { background: var(--bg-deep); color: #A5C0E6; padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 45px; margin-bottom: 50px; }
        .footer-brand .logo span { color: #FFF; }
        .footer-desc { font-size: 14px; margin-top: 20px; line-height: 1.7; }
        .footer-grid h4 { font-size: 16px; color: #FFF; font-weight: 700; margin-bottom: 24px; }
        .footer-grid ul { list-style: none; }
        .footer-grid ul li { margin-bottom: 12px; }
        .footer-grid ul li a:hover { color: #FFF; padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 30px; font-size: 13px; }
        .footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }

        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 17, 40, 0.6); backdrop-filter: blur(4px); z-index: 1999; display: none; }
        .drawer-menu { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: var(--bg-deep); z-index: 2000; box-shadow: 4px 0 24px rgba(0,0,0,0.2); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; }
        .drawer-menu.active { left: 0; }
        .drawer-header { height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .drawer-header .logo span { color: #FFFFFF; }
        .drawer-close { background: none; border: none; font-size: 28px; color: #FFF; cursor: pointer; }
        .drawer-nav { padding: 20px; flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
        .drawer-nav-item { font-size: 16px; font-weight: 600; color: #A5C0E6; padding: 12px 16px; border-radius: 6px; }
        .drawer-nav-item:hover { color: #FFF; background: rgba(29, 123, 255, 0.15); }
        .drawer-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: #667085; }

        @media (max-width: 991px) {
            .nav-menu { display: none; }
            .mobile-toggle { display: block; }
            .tag-info-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
            .post-card { flex-direction: column; }
            .post-thumb { width: 100%; height: 200px; }
            .footer-grid { grid-template-columns: 1fr; }
        }