
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid #2a2a2a;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: #e8dcc4;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #999;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #e8dcc4;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #e8dcc4;
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #e8dcc4;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 120px 40px 80px;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #e8dcc4;
            margin-bottom: 30px;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #bbb;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        .scroll-indicator::after {
            content: '↓';
            font-size: 2.5rem;
            color: #e8dcc4;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-15px);
            }
            60% {
                transform: translateX(-50%) translateY(-8px);
            }
        }

        /* Page Section */
        .page-section {
            padding: 120px 40px 100px;
            max-width: 1600px;
            margin: 0 auto;
            min-height: 100vh;
        }

        .section-title {
            text-align: center;
            margin-bottom: 100px;
        }

        .section-title h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            color: #e8dcc4;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #999;
        }

        /* Documentation Grid Styles */
        .doc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Documentation Card */
        .doc-card {
            background: #1a1a1a;
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(232, 220, 196, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .doc-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(232, 220, 196, 0.3);
            border-color: rgba(232, 220, 196, 0.4);
        }

        /* Thumbnail */
        .doc-thumbnail {
            width: 100%;
            height: 320px;
            position: relative;
            overflow: hidden;
        }

        .doc-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .doc-card:hover .doc-thumbnail img {
            transform: scale(1.15) rotate(2deg);
        }

        .doc-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
            transition: background 0.4s ease;
        }

        .doc-card:hover .doc-thumbnail::after {
            background: linear-gradient(to bottom, transparent 0%, rgba(232, 220, 196, 0.2) 100%);
        }

        /* Content */
        .doc-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .doc-category {
            display: inline-block;
            background: rgba(232, 220, 196, 0.15);
            color: #e8dcc4;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            width: fit-content;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .doc-card:hover .doc-category {
            background: rgba(232, 220, 196, 0.25);
            transform: translateY(-2px);
        }

        .doc-title {
            font-size: 1.5rem;
            color: #e8dcc4;
            margin-bottom: 15px;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .doc-card:hover .doc-title {
            color: #fff;
        }

        .doc-date {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .doc-description {
            color: #bbb;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex: 1;
        }

        .doc-button {
            display: inline-block;
            color: #e8dcc4;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 24px;
            border: 2px solid rgba(232, 220, 196, 0.3);
            border-radius: 10px;
            transition: all 0.3s ease;
            text-align: center;
            background: transparent;
        }

        .doc-button:hover {
            background: rgba(232, 220, 196, 0.1);
            border-color: #e8dcc4;
            transform: translateY(-2px);
        }

        .doc-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: auto;
        }

        .maps-button {
            background: rgba(232, 220, 196, 0.05);
            border-color: rgba(232, 220, 196, 0.4);
        }

        .maps-button:hover {
            background: rgba(232, 220, 196, 0.15);
            border-color: #e8dcc4;
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            padding: 50px 40px;
            text-align: center;
            border-top: 1px solid #2a2a2a;
        }

        footer p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }

        ::-webkit-scrollbar-thumb {
            background: #e8dcc4;
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #d4c8b0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .doc-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                right: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(10, 10, 10, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 40px 0;
                border-top: 1px solid #2a2a2a;
                gap: 20px;
            }

            .nav-links.active {
                right: 0;
            }

            .burger {
                display: flex;
            }

            .doc-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }

            .page-section {
                padding: 100px 20px 80px;
            }

            .section-title {
                margin-bottom: 60px;
            }

            .doc-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 10px;
            }

            .doc-thumbnail {
                height: 280px;
            }

            .doc-content {
                padding: 25px 20px;
            }

            .doc-title {
                font-size: 1.3rem;
            }

            .doc-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 100px 20px 60px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .doc-thumbnail {
                height: 240px;
            }

            .doc-content {
                padding: 25px 20px;
            }

            .doc-title {
                font-size: 1.3rem;
            }

            .doc-description {
                font-size: 0.9rem;
            }

            .doc-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .doc-category {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
        }
   