﻿:root {
      --primary-color: #1D7BFF;
      --accent-purple: rgb(187,134,252);
      --bg-dark: #0A0F1D;
      --bg-card: #131B31;
      --text-main: #E2E8F0;
      --text-muted: #8A99AD;
      --border-color: rgba(29, 123, 255, 0.15);
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-family); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    img { max-width: 100%; height: auto; display: block; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    
    .site-header { position: sticky; top: 0; z-index: 1000; background: rgba(10, 15, 29, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); height: 72px; }
    .header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; max-width: 1200px; 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; background: linear-gradient(135deg, #FFF 0%, var(--primary-color) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .desktop-nav { display: flex; gap: 32px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); padding: 8px 0; }
    .desktop-nav a:hover { color: var(--primary-color); }
    .nav-btn { background: linear-gradient(135deg, var(--primary-color) 0%, rgba(29, 123, 255, 0.8) 100%); color: #fff; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; }
    .drawer-trigger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
    .drawer-trigger span { display: block; width: 24px; height: 2px; background-color: var(--text-main); }

    .mobile-drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; background: var(--bg-card); z-index: 2000; padding: 24px; display: flex; flex-direction: column; gap: 32px; transition: all 0.3s ease; border-right: 1px solid var(--border-color); }
    .mobile-drawer.active { left: 0; }
    .drawer-close { background: none; border: none; color: var(--text-main); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

    
    .about-section {
      padding: 80px 0 120px 0;
    }
    .text-center {
      text-align: center;
      margin-bottom: 60px;
    }
    .text-center h1 {
      font-size: 40px;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 16px;
    }
    .text-center p {
      color: var(--text-muted);
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto;
    }
    
    
    .split-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      margin-bottom: 100px;
    }
    .split-text h2 {
      font-size: 28px;
      color: #FFF;
      margin-bottom: 20px;
    }
    .split-text p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .split-visual {
      background: linear-gradient(135deg, rgba(29, 123, 255, 0.1) 0%, rgba(187,134,252,0.1) 100%);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .split-graphic {
      font-size: 80px;
      filter: drop-shadow(0 0 20px rgba(29, 123, 255, 0.3));
    }

    
    .timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 50px;
    }
    .timeline-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 30px 24px;
    }
    .timeline-card h3 {
      font-size: 18px;
      color: #FFF;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .timeline-card h3 span {
      background: var(--primary-color);
      color: #FFF;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }
    .timeline-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    
    .site-footer { background: #060912; border-top: 1px solid var(--border-color); padding: 60px 0 30px 0; color: var(--text-muted); font-size: 14px; }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
    .footer-brand p { margin-top: 16px; font-size: 13px; line-height: 1.6; }
    .footer-col h4 { color: #FFF; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col a:hover { color: var(--primary-color); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
    .footer-links { display: flex; gap: 20px; }

    @media (max-width: 992px) {
      .desktop-nav { display: none; }
      .drawer-trigger { display: flex; }
      .split-content { grid-template-columns: 1fr; }
      .timeline { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .timeline { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    }