﻿:root {
            --primary-color: rgb(52,168,83);
            --primary-hover: #228b45;
            --text-dark: #111827;
            --text-muted: #6b7280;
            --bg-light: #f9fafb;
            --border-color: #e5e7eb;
            --glacier-blue: #1D7BFF;
            --deep-sea: #0b1528;
            --silver-white: #f5f7fa;
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.15);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-dark); background-color: #fff; line-height: 1.5; -webkit-tap-highlight-color: transparent; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

        
        .header { background: #ffffff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; height: 70px; display: flex; align-items: center; }
        .header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 18px; font-weight: 800; line-height: 1; color: var(--text-dark); white-space: nowrap; }
        .nav-menu { display: flex; align-items: center; gap: 32px; }
        .nav-menu a { font-size: 15px; font-weight: 500; color: #374151; }
        .nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .btn-header { background: var(--primary-color); color: #fff; padding: 8px 18px; border-radius: 6px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
        .btn-header:hover { background: var(--primary-hover); color: #fff; }
        .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); padding: 4px; }

        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; visibility: hidden; transition: all 0.3s ease; backdrop-filter: blur(4px); }
        .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #ffffff; z-index: 201; transition: all 0.3s ease; display: flex; flex-direction: column; box-shadow: 4px 0 20px rgba(0,0,0,0.1); }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); }
        .drawer-content { flex: 1; overflow-y: auto; padding: 20px 0; }
        .drawer-nav { display: flex; flex-direction: column; }
        .drawer-nav a { padding: 14px 24px; font-size: 16px; font-weight: 500; border-left: 3px solid transparent; }
        .drawer-nav a:hover, .drawer-nav a.active { background: var(--bg-light); border-left-color: var(--primary-color); color: var(--primary-color); }
        .drawer-footer { padding: 20px; border-top: 1px solid var(--border-color); font-size: 12px; color: var(--text-muted); }

        
        .hero { background: radial-gradient(circle at 50% 30%, #172a45 0%, var(--deep-sea) 100%); padding: 100px 0 140px; position: relative; overflow: hidden; text-align: center; color: #ffffff; }
        .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(29, 123, 255, 0.1) 0%, transparent 100%); pointer-events: none; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(29, 123, 255, 0.15); border: 1px solid rgba(29, 123, 255, 0.3); color: #8ec2ff; padding: 6px 16px; border-radius: 30px; font-size: 14px; font-weight: 500; margin-bottom: 24px; }
        .hero-title { font-size: 48px; font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 20px; color: #ffffff; }
        .hero-title span { color: var(--glacier-blue); background: linear-gradient(120deg, #64b5f6, #1D7BFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-subtitle { font-size: 18px; color: #a0aec0; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }
        .hero-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 60px; position: relative; z-index: 10; }
        .btn-hero-primary { background: var(--glacier-blue); color: #fff; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; border: none; box-shadow: 0 4px 14px rgba(29, 123, 255, 0.4); }
        .btn-hero-primary:hover { background: #0062cc; transform: translateY(-2px); }
        .btn-hero-secondary { background: rgba(255, 255, 255, 0.1); color: #fff; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }
        .btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
        
        .hero-visual-wrapper { position: relative; max-width: 900px; margin: 0 auto; padding: 0 20px; }
        .hero-main-panel { background: rgba(13, 25, 47, 0.7); border: 1px solid var(--glass-border); border-radius: 16px; padding: 40px; backdrop-filter: blur(20px); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); position: relative; z-index: 2; }
        .panel-data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .panel-data-item { border-right: 1px solid rgba(255,255,255,0.1); }
        .panel-data-item:last-child { border-right: none; }
        .panel-data-num { font-size: 36px; font-weight: 800; color: #64b5f6; margin-bottom: 8px; font-family: 'Courier New', monospace; }
        .panel-data-label { font-size: 14px; color: #a0aec0; }

        
        .float-card { position: absolute; background: rgba(29, 123, 255, 0.08); border: 1px solid rgba(29, 123, 255, 0.2); backdrop-filter: blur(12px); border-radius: 12px; padding: 16px; text-align: left; z-index: 3; box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 12px; transition: transform 0.3s; width: 220px; }
        .float-card:hover { transform: translateY(-5px); background: rgba(29, 123, 255, 0.12); }
        .float-card-icon { width: 40px; height: 40px; background: rgba(29, 123, 255, 0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #64b5f6; flex-shrink: 0; }
        .float-card-info h4 { font-size: 14px; font-weight: 700; color: #ffffff; margin-bottom: 2px; }
        .float-card-info p { font-size: 12px; color: #a0aec0; }
        
        .fc-1 { top: -20px; left: -80px; }
        .fc-2 { top: -20px; right: -80px; }
        .fc-3 { bottom: -20px; left: -100px; }
        .fc-4 { bottom: -20px; right: -100px; }

        
        .trust-section { padding: 60px 0; background: var(--bg-light); border-bottom: 1px solid var(--border-color); }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
        .trust-item { padding: 24px; background: #ffffff; border-radius: 12px; border: 1px solid var(--border-color); transition: all 0.3s ease; }
        .trust-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--primary-color); }
        .trust-icon { font-size: 32px; color: var(--primary-color); margin-bottom: 16px; }
        .trust-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
        .trust-desc { font-size: 14px; color: var(--text-muted); }

        
        .guide-section { padding: 90px 0; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .section-tag { color: var(--primary-color); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; display: block; }
        .section-title { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
        .section-desc { font-size: 16px; color: var(--text-muted); }
        
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
        .step-card { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; padding: 40px 30px; position: relative; overflow: hidden; transition: all 0.3s; }
        .step-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--primary-color); }
        .step-num { font-size: 72px; font-weight: 900; color: rgba(52,168,83,0.08); position: absolute; right: 20px; top: -10px; line-height: 1; }
        .step-icon { width: 56px; height: 56px; background: rgba(52,168,83,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary-color); margin-bottom: 24px; }
        .step-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        
        .comp-section { padding: 90px 0; background: var(--bg-light); }
        .comp-table-wrapper { background: #ffffff; border-radius: 16px; border: 1px solid var(--border-color); overflow-x: auto; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
        .comp-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 800px; }
        .comp-table th { background: #f8fafc; padding: 20px 24px; font-size: 14px; font-weight: 700; color: #475569; border-bottom: 1px solid var(--border-color); }
        .comp-table td { padding: 20px 24px; border-bottom: 1px solid var(--border-color); font-size: 14px; }
        .comp-table tr:last-child td { border-bottom: none; }
        .broker-info { display: flex; align-items: center; gap: 12px; }
        .broker-logo { width: 32px; height: 32px; border-radius: 6px; background: #eee; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 12px; }
        .tag-spread { background: rgba(52,168,83,0.1); color: var(--primary-color); padding: 4px 8px; border-radius: 4px; font-weight: 600; font-size: 12px; }
        .btn-comp-action { display: inline-block; background: var(--primary-color); color: #fff; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; }
        .btn-comp-action:hover { background: var(--primary-hover); color: #fff; }

        
        .news-section { padding: 90px 0; }
        .news-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
        .news-header-flex .section-header { text-align: left; margin: 0; }
        .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .post-card { background: #ffffff; border-radius: 16px; border: 1px solid var(--border-color); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: all 0.3s; }
        .post-card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--primary-color); }
        .post-image { height: 200px; overflow: hidden; background: #e2e8f0; position: relative; }
        .post-image img { width: 100%; height: 100%; object-fit: cover; }
        .post-category { position: absolute; top: 16px; left: 16px; background: rgba(17, 24, 39, 0.8); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; backdrop-filter: blur(4px); }
        .post-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
        .post-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
        .post-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .post-summary { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .post-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border-color); font-size: 13px; font-weight: 600; }
        .post-author { display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
        .post-author-avatar { width: 24px; height: 24px; border-radius: 50%; background: #cbd5e1; }
        .post-link { color: var(--primary-color); display: flex; align-items: center; gap: 4px; }

        
        .cta-section { background: linear-gradient(135deg, var(--deep-sea) 0%, #111827 100%); color: #fff; padding: 80px 0; position: relative; overflow: hidden; border-radius: 24px; margin-bottom: 90px; }
        .cta-container { text-align: center; max-width: 650px; margin: 0 auto; position: relative; z-index: 2; }
        .cta-title { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
        .cta-desc { font-size: 16px; color: #a0aec0; margin-bottom: 32px; line-height: 1.6; }
        .cta-buttons { display: flex; justify-content: center; gap: 16px; }

        
        .footer { background: #0f172a; color: #94a3b8; padding: 80px 0 30px; font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
        .footer-brand { display: flex; flex-direction: column; gap: 20px; }
        .footer .logo span { color: #ffffff; }
        .footer-desc { line-height: 1.6; color: #64748b; }
        .footer-heading { color: #ffffff; font-size: 16px; font-weight: 700; margin-bottom: 24px; }
        .footer-links { display: flex; flex-direction: column; gap: 14px; }
        .footer-links a:hover { color: #ffffff; }
        .footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid #1e293b; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; color: #64748b; }
        .footer-bottom-links { display: flex; gap: 24px; }

        
        @media (max-width: 1024px) {
            .hero-title { font-size: 38px; }
            .fc-1, .fc-2, .fc-3, .fc-4 { display: none; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-menu, .header-actions { display: none; }
            .menu-toggle { display: block; }
            .hero { padding: 60px 0 80px; }
            .panel-data-grid { grid-template-columns: 1fr; gap: 16px; }
            .panel-data-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
            .panel-data-item:last-child { border-bottom: none; padding-bottom: 0; }
            .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }