﻿:root {
            --primary: rgb(175,82,222);
            --primary-light: rgb(245,235,255);
            --primary-hover: rgb(150,60,200);
            --dark-bg: rgb(15, 8, 25);
            --dark-card: rgb(26, 17, 40);
            --text-main: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --border-color: #eaeaea;
            --bg-light: #f8f9fa;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); line-height: 1.6; background-color: #ffffff; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        li { list-style: none; }
        .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: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .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: 20px; font-weight: 800; line-height: 1; color: var(--primary); white-space: nowrap; letter-spacing: -0.5px; }
        
        .nav-desktop { display: flex; align-items: center; gap: 30px; }
        .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-light); }
        .nav-desktop a:hover, .nav-desktop a.active { color: var(--primary); }
        .nav-btn { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #ffffff !important; padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: 14px; transition: background 0.3s ease; }
        .nav-btn:hover { background: var(--primary-hover); }
        
        .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1010; }
        .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); margin-bottom: 5px; transition: all 0.3s ease; }
        .hamburger span:last-child { margin-bottom: 0; }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        
        
        .drawer { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: #ffffff; z-index: 1009; transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 5px 0 25px rgba(0,0,0,0.15); display: flex; flex-direction: column; padding: 30px 20px; }
        .drawer.active { left: 0; }
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); z-index: 1008; display: none; opacity: 0; transition: opacity 0.3s ease; }
        .drawer-overlay.active { display: block; opacity: 1; }
        .drawer .logo { margin-bottom: 40px; }
        .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
        .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--text-main); padding: 8px 0; border-bottom: 1px solid var(--bg-light); }
        .drawer-nav a:hover { color: var(--primary); }
        .drawer-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border-color); font-size: 12px; color: var(--text-muted); }

        
        .inner-banner { background: radial-gradient(circle at 100% 0%, var(--dark-card) 0%, var(--dark-bg) 100%); color: #ffffff; padding: 50px 0; position: relative; }
        .breadcrumbs { font-size: 13px; color: #bca8d8; margin-bottom: 15px; display: flex; align-items: center; gap: 6px; }
        .breadcrumbs a:hover { color: #ffffff; }
        .banner-title { font-size: 28px; font-weight: 800; line-height: 1.3; }

        
        .list-layout { padding: 60px 0; }
        .list-grid { display: grid; grid-template-columns: 1.8fr 0.8fr; gap: 40px; }

        
        .article-list { display: grid; gap: 30px; }
        .list-item-card { display: grid; grid-template-columns: 240px 1fr; gap: 25px; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; background: #ffffff; transition: all 0.3s ease; }
        .list-item-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: rgba(175,82,222,0.2); }
        .list-item-img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; background: var(--bg-light); }
        .list-item-body { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
        .list-item-meta { display: flex; align-items: center; gap: 15px; font-size: 12px; color: var(--text-muted); }
        .list-item-title { font-size: 18px; font-weight: 700; color: var(--text-main); line-height: 1.4; margin: 10px 0; }
        .list-item-desc { font-size: 14px; color: var(--text-light); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 15px; }
        .list-item-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--bg-light); padding-top: 15px; }
        .list-item-tag { font-size: 11px; background: var(--primary-light); color: var(--primary); padding: 3px 8px; border-radius: 4px; font-weight: 600; }
        .list-item-link { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }

        
        .pagination-container { margin-top: 50px; display: flex; justify-content: center; }
        .pagination { display: flex; gap: 8px; }
        .pagination-btn { min-width: 40px; height: 40px; border: 1px solid var(--border-color); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; background: #ffffff; transition: all 0.3s ease; }
        .pagination-btn:hover, .pagination-btn.active { background: var(--primary); color: #ffffff; border-color: var(--primary); }
        .pagination-btn.disabled { color: var(--text-muted); background: var(--bg-light); cursor: not-allowed; border-color: var(--border-color); }

        
        .sidebar { display: flex; flex-direction: column; gap: 35px; }
        .widget { background: #ffffff; border: 1px solid var(--border-color); border-radius: 12px; padding: 25px; }
        .widget-title { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-light); display: flex; align-items: center; gap: 8px; }
        .widget-title::before { content: ''; width: 3px; height: 16px; background: var(--primary); border-radius: 2px; }
        
        .broker-list-widget { display: flex; flex-direction: column; gap: 15px; }
        .sidebar-broker-item { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px dashed var(--border-color); }
        .sidebar-broker-item:last-child { padding-bottom: 0; border-bottom: none; }
        .broker-mini-info { display: flex; align-items: center; gap: 10px; }
        .broker-mini-logo { width: 35px; height: 35px; border-radius: 6px; background: var(--bg-light); color: var(--primary); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 13px; }
        .broker-mini-name { font-size: 13px; font-weight: 700; }
        .broker-mini-lic { font-size: 11px; color: var(--text-muted); }

        
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
        .tag-cloud-item { font-size: 12px; background: var(--bg-light); padding: 6px 12px; border-radius: 4px; color: var(--text-light); }
        .tag-cloud-item:hover { background: var(--primary); color: #ffffff; }

        
        .footer { background: #11091c; color: #d0c5df; padding: 70px 0 30px; border-top: 3px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
        .footer-info .logo span { color: #ffffff; }
        .footer-desc { font-size: 13px; line-height: 1.6; margin: 20px 0; color: #a291b8; }
        .footer-title { font-size: 15px; font-weight: 700; color: #ffffff; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--primary); }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { font-size: 13px; color: #a291b8; }
        .footer-links a:hover { color: #ffffff; padding-left: 5px; }
        .footer-warning { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 30px; font-size: 11px; line-height: 1.8; color: #7f6e94; text-align: justify; }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 30px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; font-size: 12px; color: #7f6e94; }
        .footer-map-links { display: flex; gap: 15px; }

        @media (max-width: 991px) {
            .list-grid { grid-template-columns: 1fr; gap: 40px; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            .list-item-card { grid-template-columns: 1fr; }
            .list-item-img { height: 180px; }
        }
        @media (max-width: 576px) {
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
        }