﻿:root {
      --primary-color: #1D7BFF; 
      --secondary-color: rgb(255, 55, 95); 
      --bg-dark: #0B192C; 
      --bg-light: #F8F9FA; 
      --text-main: #0F172A;
      --text-muted: #64748B;
      --border-color: #E2E8F0;
      --transition-speed: 0.3s;
    }
    * { 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-main); background-color: var(--bg-light); line-height: 1.6; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; transition: all var(--transition-speed); }
    img { max-width: 100%; height: auto; }
    ul { list-style: none; }

    
    .site-header { background: #FFFFFF; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; height: 70px; display: flex; align-items: center; }
    .header-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
    
    
    .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(--bg-dark); white-space: nowrap; }

    .desktop-nav { display: flex; align-items: center; gap: 24px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-main); }
    .desktop-nav a:hover { color: var(--primary-color); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .nav-cta-btn { background: var(--secondary-color); color: #FFF; padding: 10px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; text-align: center; border: none; cursor: pointer; }
    .nav-cta-btn:hover { background: #E0354E; transform: translateY(-1px); }
    
    .burger-menu { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; width: 24px; height: 24px; justify-content: center; z-index: 1100; }
    .burger-menu span { display: block; width: 100%; height: 2px; background: var(--bg-dark); transition: all 0.3s; }

    
    .mobile-drawer-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1050; opacity: 0; pointer-events: none; transition: opacity var(--transition-speed); }
    .mobile-drawer-backdrop.active { opacity: 1; pointer-events: auto; }
    .mobile-drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: #FFF; z-index: 1060; transition: left var(--transition-speed) ease-in-out; display: flex; flex-direction: column; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
    .mobile-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; font-size: 28px; cursor: pointer; color: var(--text-muted); }
    .drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
    .mobile-nav { display: flex; flex-direction: column; gap: 16px; }
    .mobile-nav a { font-size: 16px; font-weight: 600; color: var(--text-main); padding: 8px 0; border-bottom: 1px solid #F1F5F9; }
    .mobile-nav a:hover { color: var(--primary-color); }
    .drawer-footer { padding: 20px; border-top: 1px solid var(--border-color); }
    .drawer-cta-btn { display: block; width: 100%; background: var(--primary-color); color: #FFF; padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; }

    
    .hero-layout-01 { background: linear-gradient(135deg, var(--bg-dark) 0%, #112240 100%); color: #FFF; position: relative; padding: 100px 20px; overflow: hidden; display: flex; justify-content: center; align-items: center; text-align: center; }
    .hero-bg-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(29,123,255,0.15) 0%, transparent 60%); pointer-events: none; }
    .hero-container { width: 100%; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
    
    .hero-manifesto { max-width: 800px; margin-bottom: 60px; }
    .hero-manifesto .badge { background: rgba(29, 123, 255, 0.15); border: 1px solid rgba(29, 123, 255, 0.3); color: #93C5FD; padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; display: inline-block; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
    .hero-manifesto .title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-bottom: 20px; color: #FFF; }
    .hero-manifesto .subtitle { font-size: clamp(15px, 2vw, 18px); color: #94A3B8; margin-bottom: 32px; line-height: 1.7; }
    .hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .hero-actions .btn { padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
    .hero-actions .btn-primary { background: var(--primary-color); color: #FFF; box-shadow: 0 4px 14px rgba(29, 123, 255, 0.4); }
    .hero-actions .btn-primary:hover { background: #3B82F6; transform: translateY(-2px); }
    .hero-actions .btn-secondary { background: rgba(255, 255, 255, 0.08); color: #E2E8F0; border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px); }
    .hero-actions .btn-secondary:hover { background: rgba(255, 255, 255, 0.15); color: #FFF; }

    
    .hero-visual-panel { position: relative; width: 100%; max-width: 800px; margin-top: 40px; padding: 60px 0; }
    .visual-screen-mock { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px; backdrop-filter: blur(20px); width: 85%; margin: 0 auto; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
    .visual-screen-mock::before { content: ''; display: block; width: 80px; height: 80px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%231D7BFF"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>') no-repeat center; background-size: contain; filter: drop-shadow(0 0 10px rgba(29,123,255,0.5)); }
    
    .floating-card { position: absolute; background: rgba(11, 25, 44, 0.85); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; width: 240px; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: transform 0.3s ease; }
    .floating-card:hover { transform: scale(1.05) translateY(-5px); border-color: rgba(29,123,255,0.4); }
    .floating-card .icon { font-size: 24px; color: var(--primary-color); flex-shrink: 0; }
    .floating-card h4 { font-size: 14px; font-weight: 700; color: #FFF; margin-bottom: 2px; }
    .floating-card p { font-size: 11px; color: #94A3B8; }

    
    .card-top-left { top: 0; left: -30px; }
    .card-top-right { top: 0; right: -30px; }
    .card-bottom-left { bottom: 0; left: -30px; }
    .card-bottom-right { bottom: 0; right: -30px; }

    
    .trust-bar { padding: 40px 20px; background: #FFF; border-bottom: 1px solid var(--border-color); text-align: center; }
    .trust-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 30px; }
    .trust-item { text-align: center; }
    .trust-item h3 { font-size: 32px; font-weight: 800; color: var(--primary-color); margin-bottom: 4px; }
    .trust-item p { font-size: 14px; color: var(--text-muted); font-weight: 500; }

    
    .features-section { padding: 100px 20px; background-color: #F8F9FA; }
    .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
    .section-header h2 { font-size: 36px; font-weight: 800; color: var(--bg-dark); margin-bottom: 16px; }
    .section-header p { font-size: 16px; color: var(--text-muted); }
    
    .features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .feature-card { background: #FFF; padding: 40px 30px; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: all 0.3s; }
    .feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: var(--primary-color); }
    .feature-icon { width: 50px; height: 50px; background: rgba(29, 123, 255, 0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 24px; color: var(--primary-color); }
    .feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--bg-dark); }
    .feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

    
    .custom-block-container { max-width: 1200px; margin: 0 auto; padding: 20px; }

    
    .news-section { padding: 100px 20px; background: #FFF; }
    .news-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
    .news-list-block h2, .hot-list-block h2 { font-size: 24px; font-weight: 800; margin-bottom: 30px; border-left: 4px solid var(--primary-color); padding-left: 12px; color: var(--bg-dark); }
    
    .articles-loop-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
    .article-item { display: flex; gap: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 24px; }
    .article-item:last-child { border: none; }
    .article-img { width: 200px; height: 130px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #F1F5F9; }
    .article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
    .article-item:hover .article-img img { transform: scale(1.05); }
    .article-info { display: flex; flex-direction: column; justify-content: space-between; }
    .article-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); align-items: center; }
    .article-meta span { display: flex; align-items: center; gap: 4px; }
    .article-meta .tag { background: rgba(29,123,255,0.08); color: var(--primary-color); padding: 2px 8px; border-radius: 4px; font-weight: 600; }
    .article-title { font-size: 18px; font-weight: 700; margin: 8px 0; color: var(--bg-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-title:hover { color: var(--primary-color); }
    .article-summary { font-size: 14px; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    
    .hot-loop-list { display: flex; flex-direction: column; gap: 20px; }
    .hot-item { display: flex; gap: 16px; align-items: flex-start; }
    .hot-num { width: 24px; height: 24px; background: #F1F5F9; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--text-muted); flex-shrink: 0; }
    .hot-item:nth-child(1) .hot-num { background: var(--secondary-color); color: #FFF; }
    .hot-item:nth-child(2) .hot-num { background: #FFA133; color: #FFF; }
    .hot-item:nth-child(3) .hot-num { background: #FFD433; color: #FFF; }
    .hot-title { font-size: 14px; font-weight: 600; color: var(--bg-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .hot-title:hover { color: var(--primary-color); }

    
    .cta-banner { padding: 80px 20px; background: linear-gradient(135deg, var(--bg-dark) 0%, #152A4A 100%); color: #FFF; text-align: center; border-radius: 0; position: relative; overflow: hidden; }
    .cta-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
    .cta-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
    .cta-banner p { font-size: 16px; color: #94A3B8; margin-bottom: 32px; }
    .cta-btn { background: var(--secondary-color); color: #FFF; padding: 14px 40px; border-radius: 8px; font-weight: 700; display: inline-block; box-shadow: 0 4px 15px rgba(255, 55, 95, 0.4); }
    .cta-btn:hover { background: #E0354E; transform: translateY(-2px); }

    
    .site-footer { background: var(--bg-dark); color: #94A3B8; padding: 80px 20px 40px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 14px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand .logo span { color: #FFF; }
    .footer-brand p { margin-bottom: 24px; max-width: 320px; line-height: 1.7; }
    .footer-socials { display: flex; gap: 12px; }
    .footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #FFF; transition: background 0.3s; }
    .footer-socials a:hover { background: var(--primary-color); }
    
    .footer-col h4 { color: #FFF; font-size: 16px; font-weight: 700; margin-bottom: 24px; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a:hover { color: #FFF; }

    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a:hover { color: #FFF; }

    
    @media (max-width: 992px) {
      .desktop-nav, .nav-cta-btn { display: none; }
      .burger-menu { display: flex; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr 1fr; }
      .floating-card { position: static; width: 100%; margin: 10px 0; }
      .hero-visual-panel { display: flex; flex-direction: column; gap: 15px; padding: 20px 0; }
      .visual-screen-mock { width: 100%; aspect-ratio: auto; padding: 40px 20px; }
    }
    @media (max-width: 576px) {
      .article-item { flex-direction: column; }
      .article-img { width: 100%; height: 200px; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }