﻿: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; }
    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; }

    
    .download-hero { background: linear-gradient(135deg, var(--bg-dark) 0%, #15273F 100%); color: #FFF; padding: 80px 20px; text-align: center; }
    .download-container { max-width: 800px; margin: 0 auto; }
    .download-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
    .download-hero p { font-size: 16px; color: #94A3B8; }

    
    .download-main { max-width: 1200px; margin: 60px auto; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .download-card { background: #FFF; border: 1px solid var(--border-color); border-radius: 12px; padding: 40px 30px; text-align: center; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); transition: all 0.3s; }
    .download-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05); }
    .download-card .icon { font-size: 40px; color: var(--primary-color); margin-bottom: 24px; }
    .download-card h2 { font-size: 22px; font-weight: 800; color: var(--bg-dark); margin-bottom: 16px; }
    .download-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; }
    .download-action-btn { background: var(--primary-color); color: #FFF; padding: 12px 30px; border-radius: 8px; font-weight: 600; display: inline-block; }
    .download-action-btn:hover { background: #3B82F6; }

    
    .guide-section { background: #FFF; padding: 80px 20px; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
    .guide-container { max-width: 900px; margin: 0 auto; }
    .guide-title { text-align: center; margin-bottom: 50px; }
    .guide-title h2 { font-size: 28px; font-weight: 800; color: var(--bg-dark); margin-bottom: 12px; }
    .guide-title p { font-size: 15px; color: var(--text-muted); }
    
    .steps-list { display: flex; flex-direction: column; gap: 30px; }
    .step-item { display: flex; gap: 24px; align-items: flex-start; }
    .step-num { width: 36px; height: 36px; background: rgba(29, 123, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: var(--primary-color); flex-shrink: 0; }
    .step-content h3 { font-size: 18px; font-weight: 700; color: var(--bg-dark); margin-bottom: 8px; }
    .step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    
    .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; }
      .footer-container { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 576px) {
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }