﻿:root {
            --primary: rgb(220,38,38);
            --primary-hover: rgb(185,28,28);
            --primary-light: rgba(220,38,38,0.1);
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-body: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            --transition: all 0.3s ease;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        
        
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .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(--text-main); white-space: nowrap; }

        
        .header { background: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 50; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .nav-links { display: none; }
        .nav-links a { font-size: 16px; font-weight: 500; padding: 10px 15px; color: var(--text-main); border-radius: 6px; }
        .nav-links a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-btn { display: block; background: none; border: none; cursor: pointer; padding: 5px; color: var(--text-main); }
        .menu-btn svg { width: 28px; height: 28px; }

        @media (min-width: 768px) {
            .nav-links { display: flex; align-items: center; gap: 10px; }
            .menu-btn { display: none; }
        }

        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 90; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-white); z-index: 100; transition: var(--transition); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; }
        .drawer-close { background: none; border: none; cursor: pointer; color: var(--text-muted); }
        .drawer-close svg { width: 24px; height: 24px; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border-color); color: var(--text-main); }
        .drawer-nav a:hover { color: var(--primary); padding-left: 10px; }

        
        .hero { background: linear-gradient(135deg, var(--bg-white) 0%, #fff1f2 100%); padding: 80px 0; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 50%; height: 200%; background: var(--primary-light); transform: rotate(-15deg); z-index: 0; border-radius: 30%; filter: blur(60px); }
        .hero-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
        @media (min-width: 992px) { .hero-inner { grid-template-columns: 1fr 1fr; } }
        .hero-content h1 { font-size: 38px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #111; }
        .hero-content h1 span { color: var(--primary); }
        .hero-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.8; }
        .hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; font-size: 16px; font-weight: 600; border-radius: 8px; cursor: pointer; transition: var(--transition); }
        .btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 14px 0 rgba(220,38,38,0.39); }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,38,38,0.23); }
        .btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
        .btn-outline:hover { background: var(--primary-light); }
        .hero-visual { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
        .hero-visual img { width: 100%; height: auto; display: block; object-fit: cover; }
        .hero-badge { position: absolute; bottom: 20px; left: -20px; background: white; padding: 15px 25px; border-radius: 12px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 15px; }
        .hero-badge svg { width: 32px; height: 32px; color: var(--primary); }
        .hero-badge div strong { display: block; font-size: 20px; color: var(--primary); }
        .hero-badge div span { font-size: 12px; color: var(--text-muted); }

        
        .stats-bar { background: var(--bg-white); padding: 30px 0; border-bottom: 1px solid var(--border-color); }
        .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
        @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
        .stat-item h4 { font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
        .stat-item p { font-size: 14px; color: var(--text-muted); font-weight: 500; }

        
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 32px; font-weight: 800; color: #111; margin-bottom: 15px; }
        .section-header p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
        .features-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        @media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
        .feature-card { background: var(--bg-white); padding: 40px 30px; border-radius: 16px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid transparent; }
        .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
        .feature-icon { width: 60px; height: 60px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--primary); }
        .feature-icon svg { width: 30px; height: 30px; }
        .feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .feature-card p { color: var(--text-muted); font-size: 15px; }

        
        .bg-gray { background-color: #f3f4f6; }
        .articles-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
        @media (min-width: 1024px) { .articles-layout { grid-template-columns: 350px 1fr; } }
        
        .hot-articles { background: var(--bg-white); padding: 25px; border-radius: 16px; box-shadow: var(--shadow-sm); }
        .hot-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); }
        .hot-header svg { width: 24px; height: 24px; color: var(--primary); }
        .hot-header h3 { font-size: 18px; font-weight: 700; }
        .hot-list { display: flex; flex-direction: column; gap: 15px; }
        .hot-item { display: flex; gap: 15px; align-items: center; transition: var(--transition); }
        .hot-item:hover .hot-title { color: var(--primary); }
        .hot-img { width: 80px; height: 60px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
        .hot-info { flex: 1; min-width: 0; }
        .hot-title { font-size: 14px; font-weight: 600; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 5px; }
        .hot-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 10px; }

        .latest-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
        @media (min-width: 768px) { .latest-grid { grid-template-columns: repeat(2, 1fr); } }
        .article-card { background: var(--bg-white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-color); display: flex; flex-direction: column; height: 100%; }
        .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
        .ac-img-wrap { position: relative; height: 180px; overflow: hidden; }
        .ac-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .article-card:hover .ac-img-wrap img { transform: scale(1.05); }
        .ac-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 5px; z-index: 2; }
        .ac-tag { background: rgba(220,38,38,0.9); color: white; font-size: 12px; padding: 3px 8px; border-radius: 4px; }
        .ac-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
        .ac-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .ac-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .ac-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 15px; font-size: 12px; color: var(--text-muted); }
        .ac-meta-item { display: flex; align-items: center; gap: 5px; }
        .ac-meta-item svg { width: 14px; height: 14px; }

        
        .cta-section { padding: 80px 0; background: linear-gradient(to right, var(--primary), #991b1b); color: white; text-align: center; }
        .cta-inner h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
        .cta-inner p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
        .btn-white { background: white; color: var(--primary); }
        .btn-white:hover { background: #f3f4f6; }

        
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
        .footer-brand .logo span { color: white; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #9ca3af; max-width: 300px; }
        .footer-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; color: #9ca3af; transition: var(--transition); }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; display: flex; flex-direction: column; gap: 15px; align-items: center; font-size: 14px; color: #6b7280; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
        .footer-legal a { margin-left: 15px; color: #9ca3af; }
        .footer-legal a:hover { color: white; }
        {block:home_banner}