﻿:root {
      --primary-color: #1D7BFF;
      --accent-color: rgb(0,184,148);
      --bg-dark: #070B19;
      --bg-card: #10162D;
      --text-light: #F3F4F6;
      --text-muted: #9CA3AF;
      --border-color: rgba(255, 255, 255, 0.08);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

    
    header { background: rgba(7, 11, 25, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; height: 70px; }
    .header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 100%; 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: #FFF; }
    .nav-menu { display: flex; align-items: center; gap: 30px; }
    .nav-menu a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    .nav-menu a:hover { color: var(--primary-color); }
    .nav-btn { background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); padding: 8px 20px; border-radius: 20px; color: #fff !important; font-weight: 600; }
    .menu-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.3s; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-card); z-index: 1002; transition: all 0.3s; display: flex; flex-direction: column; padding: 24px; }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
    .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }

    
    .about-hero {
      background: radial-gradient(circle at 50% 50%, rgba(29, 123, 255, 0.1), transparent), var(--bg-dark);
      padding: 100px 20px; text-align: center; border-bottom: 1px solid var(--border-color);
    }
    .about-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
    .about-hero p { font-size: 18px; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

    .about-content { max-width: 900px; margin: 80px auto; padding: 0 20px; }
    .story-block { margin-bottom: 60px; }
    .story-block h2 { font-size: 28px; margin-bottom: 20px; border-left: 4px solid var(--accent-color); padding-left: 15px; }
    .story-block p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

    .history-timeline {
      display: flex; flex-direction: column; gap: 30px; margin-top: 40px; position: relative;
    }
    .history-timeline::before {
      content: ''; position: absolute; left: 19px; top: 0; height: 100%; width: 2px; background: var(--border-color);
    }
    .timeline-item { display: flex; gap: 30px; position: relative; }
    .timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; color: var(--primary-color); z-index: 1; flex-shrink: 0; }
    .timeline-content { background: var(--bg-card); border: 1px solid var(--border-color); padding: 20px; border-radius: 8px; flex-grow: 1; }
    .timeline-time { font-size: 16px; font-weight: 700; color: var(--accent-color); margin-bottom: 5px; }
    .timeline-title { font-size: 16px; font-weight: 600; color: #FFF; margin-bottom: 5px; }
    .timeline-desc { font-size: 14px; color: var(--text-muted); }

    
    footer { background: #040712; border-top: 1px solid var(--border-color); padding: 80px 20px 40px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-desc { font-size: 14px; color: var(--text-muted); max-width: 320px; }
    .footer-links h4 { font-size: 16px; font-weight: 600; color: #FFFFFF; margin-bottom: 25px; }
    .footer-links ul { list-style: none; }
    .footer-links ul li { margin-bottom: 15px; }
    .footer-links ul li a { font-size: 14px; color: var(--text-muted); }
    .footer-links ul li a:hover { color: var(--primary-color); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .footer-info { font-size: 13px; color: var(--text-muted); }

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