﻿:root {
      --primary-color: rgb(48, 209, 88);
      --bg-dark: #0a0e17;
      --bg-card: #131a26;
      --text-main: #ffffff;
      --text-muted: #8a99ad;
      --border-color: rgba(255, 255, 255, 0.1);
      --max-width: 1200px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: 0.3s; }
    .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

    
    .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(10, 14, 23, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); height: 72px; }
    .header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
    .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: 18px; font-weight: 800; color: #fff; }
    .desktop-nav { display: flex; gap: 30px; }
    .desktop-nav a { font-size: 15px; color: var(--text-muted); }
    .desktop-nav a:hover { color: var(--primary-color); }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; border: none; }
    .btn-primary { background-color: var(--primary-color); color: #000; }
    .menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background-color: #fff; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s; }
    .drawer-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--bg-card); z-index: 2000; transition: 0.3s; padding: 20px; display: flex; flex-direction: column; }
    .drawer-menu.active { left: 0; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
    .drawer-close { background: none; border: none; color: #fff; font-size: 28px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }

    
    .inner-banner { padding: 120px 0 50px 0; background: linear-gradient(180deg, rgba(48,209,88,0.08) 0%, transparent 100%); text-align: center; }
    .inner-title { font-size: 32px; font-weight: 800; margin-top: 10px; }

    
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; font-weight: 700; margin-bottom: 30px; text-align: center; }

    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .about-text p { margin-bottom: 20px; color: var(--text-muted); font-size: 16px; }

    .stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 40px; margin-top: 50px; text-align: center; }
    .stat-num { font-size: 36px; font-weight: 800; color: var(--primary-color); margin-bottom: 10px; }
    .stat-label { color: var(--text-muted); font-size: 14px; }

    
    .timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }
    .timeline::after { content: ''; position: absolute; width: 2px; background: var(--border-color); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
    .timeline-container { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
    .timeline-container::after { content: ''; position: absolute; width: 16px; height: 16px; right: -8px; background-color: var(--primary-color); border: 4px solid var(--bg-dark); top: 15px; border-radius: 50%; z-index: 1; }
    .left { left: 0; }
    .right { left: 50%; }
    .right::after { left: -8px; }
    .timeline-content { padding: 20px; background: var(--bg-card); position: relative; border-radius: 6px; border: 1px solid var(--border-color); }

    
    .site-footer { background: #06090f; padding: 80px 0 30px 0; border-top: 1px solid var(--border-color); color: var(--text-muted); }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-col h5 { color: var(--text-main); font-size: 16px; margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a:hover { color: var(--primary-color); }
    .footer-about p { font-size: 14px; margin-top: 15px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; font-size: 13px; }

    @media(max-width: 768px) {
      .desktop-nav { display: none; }
      .menu-toggle { display: flex; }
      .grid-2 { grid-template-columns: 1fr; }
      .stats-container { grid-template-columns: repeat(2, 1fr); }
      .timeline::after { left: 31px; }
      .timeline-container { width: 100%; padding-left: 70px; padding-right: 25px; }
      .timeline-container::after { left: 22px; }
      .right { left: 0%; }
      .footer-grid { grid-template-columns: 1fr; }
    }