﻿:root {
      --primary: #1D7BFF;
      --accent: rgb(225,29,72);
      --bg-dark: #0B0F19;
      --bg-card: rgba(17, 24, 39, 0.7);
      --border-color: rgba(29, 123, 255, 0.15);
      --text-main: #E2E8F0;
      --text-muted: #94A3B8;
      --glacier-white: #F8FAFC;
      --max-width: 1200px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background-color: var(--bg-dark); color: var(--text-main); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: 0.3s; }
    header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(11, 15, 25, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); }
    .nav-container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--glacier-white); }
    .nav-menu { display: flex; align-items: center; gap: 28px; }
    .nav-menu a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    .nav-menu a:hover { color: var(--primary); }
    .btn-download { background: linear-gradient(135deg, var(--primary), #0052D4); color: #fff; padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; }
    
    
    .menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background-color: var(--text-main); }
    .drawer-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 199; opacity: 0; pointer-events: none; transition: 0.3s; }
    .drawer-backdrop.active { opacity: 1; pointer-events: auto; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: var(--bg-dark); border-right: 1px solid var(--border-color); z-index: 200; padding: 24px; display: flex; flex-direction: column; gap: 32px; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 24px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }

    
    .about-hero { padding: 160px 20px 80px 20px; background: radial-gradient(circle at top center, rgba(29, 123, 255, 0.1), transparent 60%); text-align: center; }
    .about-hero h1 { font-size: 42px; color: var(--glacier-white); margin-bottom: 20px; }
    .about-hero p { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

    
    .about-content { max-width: 800px; margin: 0 auto; padding: 60px 20px 100px 20px; }
    .about-block { margin-bottom: 60px; }
    .about-block h2 { font-size: 28px; color: var(--glacier-white); margin-bottom: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 12px; }
    .about-block p { font-size: 16px; color: var(--text-main); margin-bottom: 20px; line-height: 1.8; }
    
    
    .timeline { position: relative; padding-left: 30px; margin-top: 30px; }
    .timeline::before { content: ''; position: absolute; left: 0; top: 0; width: 2px; height: 100%; background: var(--border-color); }
    .timeline-item { position: relative; margin-bottom: 30px; }
    .timeline-item::before { content: ''; position: absolute; left: -34px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); border: 2px solid var(--bg-dark); }
    .timeline-date { font-weight: 800; color: var(--primary); font-size: 18px; margin-bottom: 6px; }
    .timeline-desc { font-size: 14px; color: var(--text-muted); }

    
    footer { background: #06090F; border-top: 1px solid var(--border-color); padding: 80px 0 40px 0; color: var(--text-muted); }
    .footer-grid { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-brand p { margin-top: 16px; font-size: 14px; max-width: 280px; }
    .footer-links h4 { color: var(--glacier-white); font-size: 16px; margin-bottom: 20px; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: var(--primary); }
    .footer-bottom { max-width: var(--max-width); margin: 0 auto; padding: 40px 20px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }

    @media (max-width: 768px) {
      .nav-menu, .nav-actions { display: none; }
      .menu-toggle { display: flex; }
      .footer-grid { grid-template-columns: 1fr; }
    }