﻿: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); }
        
        
        .hero-layout-01 { background: radial-gradient(circle at 50% 20%, #152C5B 0%, var(--bg-deep) 100%); color: #fff; padding: 100px 0 140px; text-align: center; overflow: hidden; position: relative; }
        .hero-layout-01 .hero-bg-glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(29,123,255,0.2) 0%, rgba(29,123,255,0) 70%); pointer-events: none; }
        .hero-layout-01 .hero-tagline { display: inline-block; padding: 6px 16px; background: rgba(29, 123, 255, 0.15); border: 1px solid rgba(29, 123, 255, 0.3); border-radius: 30px; font-size: 14px; font-weight: 600; color: #58A6FF; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
        .hero-layout-01 .hero-title { font-size: 44px; font-weight: 800; line-height: 1.25; margin-bottom: 20px; color: #FFFFFF; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .hero-layout-01 .hero-subtitle { font-size: 18px; color: #A5C0E6; max-width: 800px; margin: 0 auto 40px; font-weight: 400; line-height: 1.6; }
        .hero-layout-01 .hero-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 80px; position: relative; z-index: 10; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 32px; border-radius: 6px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: all 0.3s ease; }
        .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(29, 123, 255, 0.4); }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
        .btn-secondary { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
        .btn-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
        
        
        .hero-layout-01 .hero-visual-panel { position: relative; max-width: 860px; margin: 0 auto; background: rgba(13, 27, 62, 0.8); border: 1px solid rgba(29, 123, 255, 0.25); border-radius: 12px; padding: 40px; box-shadow: var(--shadow-lg); backdrop-filter: blur(15px); }
        .hero-layout-01 .panel-header { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(29, 123, 255, 0.15); padding-bottom: 16px; margin-bottom: 24px; }
        .hero-layout-01 .panel-dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
        .hero-layout-01 .panel-dots span:nth-child(1) { background: #FF5F56; }
        .hero-layout-01 .panel-dots span:nth-child(2) { background: #FFBD2E; }
        .hero-layout-01 .panel-dots span:nth-child(3) { background: #27C93F; }
        .hero-layout-01 .panel-title { font-size: 13px; color: #58A6FF; margin-left: 12px; font-family: monospace; }
        .hero-layout-01 .dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .hero-layout-01 .db-card { background: rgba(10, 20, 47, 0.6); border: 1px solid rgba(29, 123, 255, 0.1); padding: 24px; border-radius: 8px; text-align: left; }
        .hero-layout-01 .db-card h4 { font-size: 13px; color: #A5C0E6; margin-bottom: 8px; font-weight: 500; }
        .hero-layout-01 .db-val { font-size: 24px; font-weight: 700; color: #fff; }
        .hero-layout-01 .text-accent { color: #58A6FF; }
        
        
        .hero-layout-01 .float-card { position: absolute; display: flex; align-items: center; gap: 12px; background: rgba(13, 27, 62, 0.95); border: 1px solid rgba(29, 123, 255, 0.3); border-radius: 8px; padding: 14px 18px; text-align: left; box-shadow: var(--shadow-lg); transition: transform 0.3s; width: 220px; }
        .hero-layout-01 .float-card:hover { transform: translateY(-4px); }
        .hero-layout-01 .float-icon { font-size: 24px; color: var(--primary); }
        .hero-layout-01 .float-info h5 { font-size: 14px; font-weight: 600; color: #FFF; margin-bottom: 2px; }
        .hero-layout-01 .float-info p { font-size: 11px; color: #A5C0E6; margin: 0; }
        
        .hero-layout-01 .float-card-1 { top: -20px; left: -140px; }
        .hero-layout-01 .float-card-2 { top: 120px; left: -180px; }
        .hero-layout-01 .float-card-3 { top: -20px; right: -140px; }
        .hero-layout-01 .float-card-4 { top: 120px; right: -180px; }

        
        .trust-bar { background: #FFFFFF; padding: 30px 0; border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
        .trust-item h3 { font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
        .trust-item p { font-size: 14px; color: var(--text-muted); }

        
        .section { padding: 80px 0; }
        .section-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
        .section-title { font-size: 32px; font-weight: 800; color: var(--bg-deep); margin-bottom: 16px; }
        .section-desc { font-size: 15px; color: var(--text-muted); }

        
        .adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .adv-card { background: #fff; padding: 40px 30px; border-radius: 10px; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: all 0.3s; }
        .adv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
        .adv-icon { font-size: 36px; margin-bottom: 24px; color: var(--primary); }
        .adv-card h3 { font-size: 18px; font-weight: 700; color: var(--bg-deep); margin-bottom: 12px; }
        .adv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        
        .news-grid { display: grid; grid-template-columns: repeat(3, 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; flex-direction: column; transition: all 0.3s ease; }
        .post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
        .post-thumb { position: relative; width: 100%; height: 200px; overflow: hidden; background: #eef2f7; }
        .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: 18px; font-weight: 700; color: var(--bg-deep); margin-bottom: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .post-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .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); }

        
        .banner-cta { background: linear-gradient(135deg, var(--bg-deep) 0%, #152C5B 100%); color: #fff; padding: 60px 0; border-radius: 12px; text-align: center; }
        .banner-cta h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
        .banner-cta p { font-size: 16px; color: #A5C0E6; margin-bottom: 28px; }

        
        .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: 1200px) {
            .hero-layout-01 .float-card { display: none; }
        }
        @media (max-width: 991px) {
            .nav-menu { display: none; }
            .mobile-toggle { display: block; }
            .adv-grid, .news-grid, .footer-grid { grid-template-columns: 1fr; }
            .hero-layout-01 .hero-title { font-size: 32px; }
            .hero-layout-01 .dashboard-grid { grid-template-columns: 1fr; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
        }