﻿:root {
      --primary: rgb(147, 51, 234);
      --primary-hover: rgb(124, 58, 237);
      --glacier-blue: #1D7BFF;
      --deep-ink: #0B0F19;
      --card-bg: rgba(255, 255, 255, 0.04);
      --border-color: rgba(255, 255, 255, 0.08);
      --text-main: #E2E8F0;
      --text-muted: #94A3B8;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background-color: var(--deep-ink); color: var(--text-main); font-family: var(--font-family); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    
    .header { background-color: rgba(11, 15, 25, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; height: 70px; display: flex; align-items: center; }
    .header-box { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 40px; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 18px; font-weight: 800; color: #FFF; }
    .nav-list { display: flex; gap: 24px; align-items: center; }
    .nav-list a { font-size: 15px; color: var(--text-muted); }
    .nav-list a:hover { color: var(--glacier-blue); }
    .menu-toggle { display: none; background: none; border: none; color: #FFF; font-size: 24px; cursor: pointer; }

    
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--deep-ink); border-right: 1px solid var(--border-color); z-index: 200; transition: left 0.3s ease; padding: 24px; display: flex; flex-direction: column; gap: 30px; }
    .mobile-drawer.active { left: 0; }
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); z-index: 199; display: none; }
    .drawer-overlay.active { display: block; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; }
    .drawer-close { background: none; border: none; color: #FFF; font-size: 24px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 16px; color: #FFF; }

    
    .about-hero {
      background: linear-gradient(180deg, rgba(29, 123, 255, 0.08) 0%, rgba(11, 15, 25, 1) 100%);
      padding: 80px 0;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
    }
    .about-hero h1 { font-size: 40px; color: #FFF; font-weight: 800; margin-bottom: 16px; }
    .about-hero p { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

    
    .about-content { padding: 80px 0; }
    .about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }
    .about-text h2 { font-size: 28px; color: #FFF; font-weight: 700; margin-bottom: 24px; }
    .about-text p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; line-height: 1.7; }
    .about-media {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    .about-media-title { font-size: 18px; color: #FFF; font-weight: 600; margin-bottom: 30px; }

    
    .timeline { padding: 60px 0; border-top: 1px solid var(--border-color); }
    .timeline-title { text-align: center; font-size: 28px; color: #FFF; font-weight: 700; margin-bottom: 50px; }
    .timeline-wrapper { position: relative; max-width: 800px; margin: 0 auto; }
    .timeline-wrapper::before {
      content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
      width: 2px; background: var(--border-color); transform: translateX(-50%);
    }
    .timeline-item { position: relative; width: 50%; padding: 0 30px 40px 0; text-align: right; }
    .timeline-item:nth-child(even) { left: 50%; padding: 0 0 40px 30px; text-align: left; }
    .timeline-item::after {
      content: ''; position: absolute; right: -6px; top: 6px;
      width: 12px; height: 12px; background: var(--primary); border-radius: 50%;
    }
    .timeline-item:nth-child(even)::after { left: -6px; right: auto; }
    .timeline-year { font-size: 20px; font-weight: 700; color: #FFF; margin-bottom: 8px; }
    .timeline-desc { font-size: 14px; color: var(--text-muted); }

    
    .footer { background-color: #060911; border-top: 1px solid var(--border-color); padding: 60px 0 30px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-about p { margin-top: 15px; color: var(--text-muted); font-size: 14px; }
    .footer-col h4 { color: #FFF; font-size: 16px; margin-bottom: 20px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul a { color: var(--text-muted); font-size: 14px; }
    .footer-col ul a:hover { color: var(--glacier-blue); }
    .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 13px; flex-wrap: wrap; gap: 15px; }

    @media (max-width: 768px) {
      .nav-list { display: none; }
      .menu-toggle { display: block; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .timeline-wrapper::before { display: none; }
      .timeline-item { width: 100%; text-align: left; padding: 0 0 30px 20px; }
      .timeline-item:nth-child(even) { left: 0; padding: 0 0 30px 20px; }
      .timeline-item::after { left: -6px; right: auto; }
      .footer-grid { grid-template-columns: 1fr; }
    }