﻿:root {
            --primary: rgb(189,147,249);
            --primary-hover: rgba(189,147,249, 0.8);
            --bg-dark: #0c0a14;
            --bg-card: #161224;
            --bg-light: #f7f6fb;
            --text-light: #f8f8f2;
            --text-dark: #2d2a3a;
            --text-muted: #8b869c;
            --border: rgba(189,147,249, 0.15);
            --glass: rgba(22, 18, 36, 0.7);
            --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .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: 18px;
            font-weight: 800;
            line-height: 1;
            color: var(--primary);
            white-space: nowrap;
        }
        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-menu a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
        }
        .nav-menu a:hover, .nav-menu a.active {
            color: var(--primary);
        }
        .btn-cta {
            background: var(--primary);
            color: var(--bg-dark) !important;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(189,147,249, 0.4);
        }
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(189,147,249, 0.6);
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 110;
        }
        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .drawer {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background: var(--bg-card);
            z-index: 150;
            transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1);
            padding: 40px 30px;
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .drawer.active {
            left: 0;
        }
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.6);
            z-index: 140;
            display: none;
            backdrop-filter: blur(4px);
        }
        .drawer-overlay.active {
            display: block;
        }
        .drawer-close {
            align-self: flex-end;
            cursor: pointer;
            color: var(--primary);
            font-size: 24px;
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .drawer-nav a {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-light);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .about-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, rgba(189,147,249,0.1) 0%, rgba(12,10,20,1) 100%);
            text-align: center;
        }
        .about-hero h1 {
            font-size: 44px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .about-hero p {
            color: var(--text-muted);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        .about-section {
            padding: 80px 0;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .about-visual {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px;
            position: relative;
        }
        .about-visual img {
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .about-content h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--primary);
        }
        .about-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 16px;
        }
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 60px auto 0;
            padding: 20px 0;
        }
        .timeline-item {
            padding: 20px 30px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .timeline-year {
            font-size: 20px;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        footer {
            background: var(--bg-dark);
            border-top: 1px solid var(--border);
            padding: 80px 0 30px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-brand .logo {
            margin-bottom: 20px;
        }
        .footer-brand p {
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .footer-title {
            color: var(--text-light);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            .about-hero h1 {
                font-size: 32px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }