 /* Asosiy o'zgaruvchilarni index.html'dan olamiz */
        :root {
            --navy: #1B2A6B;
            --gold: #C9941A;
            --gold-light: #E8B84B;
            --bg: #07091A;
            --text: #FFFFFF;
            --border: rgba(201,148,26,0.2);
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            margin: 0;
            overflow-x: hidden;
        }

        .native-cursor body,
        .native-cursor body * { cursor: auto !important; }

        .native-cursor .cursor-dot,
        .native-cursor .cursor-ring { display: none !important; }

        /* CUSTOM CURSOR (index.html bilan bir xil) */
        .cursor-dot { width: 8px; height: 8px; background: var(--gold-light); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); }
        .cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998; transform: translate(-50%, -50%); transition: transform 0.12s ease; }

        /* HISTORY HERO */
        .history-hero {
            height: 50vh;
            background: linear-gradient(rgba(7,9,26,0.8), rgba(7,9,26,0.9)), url('https://images.unsplash.com/photo-1541339907198-e08756ebafe1?w=1600&q=80') center/cover;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }

        .history-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            color: var(--gold-light);
            margin-bottom: 10px;
        }

        .back-btn {
            position: absolute;
            top: 40px;
            left: 5%;
            color: var(--text);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--border);
            padding: 10px 20px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .back-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

        /* TIMELINE SECTION */
        .history-container {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 5%;
            position: relative;
        }

        .history-container::before {
            content: '';
            position: absolute;
            left: 50%;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-bottom: 100px;
            position: relative;
        }

        .timeline-item:nth-child(even) { flex-direction: row-reverse; }

        .timeline-img {
            width: 45%;
            aspect-ratio: 16/9;
            background: var(--navy);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            display: flex; align-items: center; justify-content: center;
            font-size: 40px;
        }

        .timeline-content {
            width: 45%;
            padding: 20px;
        }

        .timeline-date {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 15px;
            display: block;
        }

        .timeline-content h3 { font-size: 24px; margin-bottom: 15px; color: var(--gold-light); }
        .timeline-content p { line-height: 1.8; color: rgba(255,255,255,0.7); font-weight: 300; }

        /* Scroll Animation */
        .reveal { opacity: 0; transform: translateY(50px); transition: 0.8s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 768px) {
            .history-container::before { left: 20px; }
            .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; }
            .timeline-img, .timeline-content { width: 100%; padding-left: 50px; }
            .timeline-img { margin-bottom: 20px; }
        }
