﻿:root {
            --primary: #1D7BFF;
            --accent: rgb(191,90,242);
            --bg-dark: #070B19;
            --bg-card: rgba(255, 255, 255, 0.04);
            --border-color: rgba(255, 255, 255, 0.08);
            --text-main: #E2E8F0;
            --text-muted: #94A3B8;
            --silver-white: #F8FAFC;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(7, 11, 25, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo img {
            display: block;
            height: 40px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .logo span {
            display: inline-block;
            font-size: 20px;
            font-weight: 800;
            line-height: 1;
            color: var(--silver-white);
            white-space: nowrap;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #FFF 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-menu a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-menu a:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .burger-btn {
            display: none;
            background: none;
            border: none;
            color: var(--silver-white);
            font-size: 24px;
            cursor: pointer;
        }
        
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .drawer {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: var(--bg-dark);
            border-right: 1px solid var(--border-color);
            z-index: 2001;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .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;
            cursor: pointer;
        }
        .drawer-menu {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .drawer-menu a {
            font-size: 16px;
            color: var(--text-main);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .inner-banner {
            padding: 140px 20px 60px;
            background: linear-gradient(180deg, rgba(29, 123, 255, 0.08) 0%, transparent 100%);
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }
        .inner-banner h1 {
            font-size: 42px;
            color: var(--silver-white);
            margin-bottom: 15px;
        }
        .inner-banner p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .about-wrap {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 20px;
        }
        .card-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 50px 40px;
            margin-bottom: 40px;
        }
        .card-panel h2 {
            font-size: 28px;
            color: var(--silver-white);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-panel p {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .timeline {
            position: relative;
            margin-top: 40px;
            padding-left: 30px;
            border-left: 2px solid var(--primary);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -37px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border: 3px solid var(--bg-dark);
            border-radius: 50%;
        }
        .timeline-year {
            font-weight: 700;
            color: var(--silver-white);
            margin-bottom: 5px;
        }
        
        .core-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        .core-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
        }
        .core-card:hover {
            border-color: var(--primary);
        }
        .core-card .icon {
            font-size: 32px;
            margin-bottom: 15px;
        }
        .core-card h4 {
            color: var(--silver-white);
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        footer {
            background: #040711;
            border-top: 1px solid var(--border-color);
            padding: 80px 20px 40px;
        }
        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-brand p {
            color: var(--text-muted);
            margin-top: 20px;
            font-size: 14px;
            max-width: 300px;
        }
        .footer-links h4 {
            color: var(--silver-white);
            font-size: 16px;
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 12px;
        }
        .footer-links ul li a {
            color: var(--text-muted);
            font-size: 14px;
        }
        .footer-links ul li a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--text-muted);
            font-size: 13px;
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .burger-btn { display: block; }
            .footer-grid { grid-template-columns: 1fr; }
        }