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

        :root {
            --blue-400: #60a5fa;
            --blue-500: #3b82f6;
            --blue-600: #2563eb;
            --purple-400: #a855f7;
            --purple-500: #8b5cf6;
            --purple-600: #7c3aed;
            --gray-200: #cbd5e6;
            --gray-400: #9ca3c0;
            --gray-500: #7e8aa2;
            --dark-800: #0a0c12;
            --card-bg: rgba(20, 25, 40, 0.7);
            --card-hover: rgba(25, 32, 48, 0.85);
            --border-subtle: rgba(96, 153, 225, 0.2);
            --border-medium: rgba(96, 165, 250, 0.25);
            --border-strong: rgba(96, 165, 250, 0.5);
            --code-bg: #0b0e14;
            --text-code: #c9d1d9;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', 'Roboto', sans-serif;
            background: #0a0c12;
            color: #eef2ff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .glass-nav {
            background: rgba(10, 12, 18, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
            gap: 1.5rem;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-svg svg {
            filter: drop-shadow(0 0 6px #3b82f6);
            width: 38px;
            height: 38px;
        }

        .logo-text {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #60a5fa, #a855f7);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

        .badge-new {
            background: rgba(96, 165, 250, 0.2);
            border: 1px solid rgba(96, 165, 250, 0.4);
            padding: 0.2rem 0.7rem;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 500;
            color: #93c5fd;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 2.2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #cbd5e6;
            transition: color 0.2s, text-shadow 0.2s;
            font-size: 1rem;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #60a5fa;
            text-shadow: 0 0 4px rgba(96, 165, 250, 0.3);
        }

        .page-hero {
            padding: 3rem 0 2rem;
            text-align: center;
            position: relative;
        }

        .page-hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(125deg, #ffffff, #60a5fa, #c084fc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .page-hero .subtitle {
            font-size: 1.2rem;
            color: #9ca3af;
            max-width: 700px;
            margin: 0 auto 1rem;
            font-weight: 450;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #e0e7ff, #a78bfa);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .content-block {
            margin: 3rem 0;
        }

        .content-block p {
            color: #b9c7e6;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }

        .feature-card {
            background: var(--card-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 1.8rem;
            padding: 1.8rem 1.5rem;
            border: 1px solid var(--border-subtle);
            transition: all 0.25s;
        }

        .feature-card:hover {
            border-color: var(--border-strong);
            transform: translateY(-5px);
            background: var(--card-hover);
            box-shadow: 0 18px 28px -8px rgba(0, 0, 0, 0.5);
        }

        .feature-icon {
            font-size: 2.4rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f0f3fa;
            margin-bottom: 0.7rem;
        }

        .feature-card p {
            color: #9ca3c0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .code-block {
            background: #0b0e14;
            border: 1px solid rgba(96, 165, 250, 0.2);
            border-radius: 1.2rem;
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            font-size: 0.9rem;
            color: #c9d1d9;
            overflow-x: auto;
            white-space: pre;
            line-height: 1.7;
        }

        .code-block .keyword {
            color: #ff79c6;
        }
        .code-block .string {
            color: #f1fa8c;
        }
        .code-block .comment {
            color: #6272a4;
        }

        .cta-card {
            background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
            border: 1px solid var(--border-strong);
            border-radius: 1.8rem;
            padding: 2rem 2rem;
            text-align: center;
            margin: 2.5rem 0;
        }

        .cta-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #f0f3fa;
            margin-bottom: 0.8rem;
        }

        .cta-card p {
            color: #b9c7e6;
            margin-bottom: 1.5rem;
        }

        .btn-primary {
            background: linear-gradient(105deg, #3b82f6, #8b5cf6);
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: 0 6px 14px rgba(59, 130, 246, 0.3);
            border: none;
            display: inline-block;
            font-size: 0.95rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
            background: linear-gradient(105deg, #2563eb, #7c3aed);
        }

        .btn-outline {
            background: transparent;
            color: #cbd5e6;
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid #3b82f6;
            transition: all 0.2s;
            font-size: 0.95rem;
            display: inline-block;
            margin: 0 0.5rem;
        }

        .btn-outline:hover {
            background: rgba(59, 130, 246, 0.1);
            border-color: #60a5fa;
            color: white;
        }

        .site-footer {
            background: #05070c;
            border-top: 1px solid #1e2a44;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }

        .copyright {
            font-size: 0.85rem;
            color: #7a85a6;
        }

        .footer-links a {
            color: #9aa9c7;
            text-decoration: none;
            margin-left: 1.8rem;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #60a5fa;
        }

        .footer-links a:first-child {
            margin-left: 0;
        }

        @media (max-width: 860px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                flex-wrap: wrap;
                gap: 1rem;
            }
        }

        @media (max-width: 680px) {
            .container {
                padding: 0 1.25rem;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-links a {
                margin-left: 1rem;
                display: inline-block;
            }
        }