      :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #0ea5e9;
            --accent: #06b6d4;
            --dark: #0f172a;
            --darker: #020617;
            --light: #f8fafc;
            --gray: #64748b;
            --light-gray: #1e293b;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: transparent;
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(30, 41, 59, 0.5);
        }

        .nav-links {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .nav-links li {
            display: flex;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.02em;
        }

        .logo-img {
            height: 48px;
            width: 48px;
            margin-right: 16px;
            border-radius: 12px;
            box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

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

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

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

        .nav-links a.nav-github {
            font-size: 2.2rem !important;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            width: 40px;
            height: 40px;
        }

        .nav-github:hover {
            color: #ffffff;
            transform: scale(1.1);
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        }

        .nav-links a.nav-github::after {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.98));
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 80px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            border-radius: 24px;
            box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.35);
            border: 3px solid var(--primary);
            transition: all 0.3s ease;
        }

        .hero-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.45);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 24px;
            color: var(--white);
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            color: var(--gray);
            font-weight: 400;
            line-height: 1.6;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--light-gray);
        }

        .btn-secondary:hover {
            background-color: var(--light-gray);
            border-color: var(--primary);
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: var(--dark);
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
            color: var(--white);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-title p {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background-color: var(--light-gray);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(100, 116, 139, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: translateX(0);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--white);
            font-weight: 700;
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Technology Section */
        .technology {
            padding: 100px 0;
            background-color: var(--darker);
        }

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

        .tech-card {
            background-color: var(--light-gray);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(100, 116, 139, 0.1);
            position: relative;
            overflow: hidden;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .tech-card:hover::before {
            transform: translateX(0);
        }

        .tech-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .tech-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }

        .tech-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--white);
            font-weight: 700;
        }

        .tech-card p {
            color: var(--gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .tech-badge {
            display: inline-block;
            background-color: var(--darker);
            color: var(--secondary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 12px;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }

        /* Downloads Section */
        .downloads {
            padding: 100px 0;
            background-color: var(--dark);
        }

        .downloads-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        .download-card {
            background-color: var(--light-gray);
            border-radius: 12px;
            padding: 32px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            border: 1px solid rgba(100, 116, 139, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .download-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .download-card:hover::before {
            transform: translateX(0);
        }

        .download-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .download-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }

        .download-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--white);
            font-weight: 700;
        }

        .download-card p {
            color: var(--gray);
            line-height: 1.6;
            flex-grow: 1;
        }

        .download-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .download-badge {
            display: inline-block;
            background-color: var(--darker);
            color: var(--secondary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }

        .download-badge.pre-release {
            background-color: rgba(251, 146, 60, 0.1);
            color: #fb923c;
            border-color: rgba(251, 146, 60, 0.3);
        }

        .download-badge.source {
            background-color: rgba(34, 197, 94, 0.1);
            color: #22c55e;
            border-color: rgba(34, 197, 94, 0.3);
        }

        .download-arrow {
            font-size: 1.2rem;
            color: var(--gray);
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .download-card:hover .download-arrow {
            color: var(--primary);
            transform: translateX(4px);
        }

        .download-note {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 24px;
            background-color: var(--light-gray);
            border-radius: 12px;
            border: 1px solid rgba(100, 116, 139, 0.1);
        }

        .download-note p {
            color: var(--gray);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .download-note i {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        /* Installation Section */
        .installation {
            padding: 100px 0;
            background-color: var(--darker);
        }

        .install-steps {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--light-gray);
            border-radius: 12px;
            padding: 48px;
            border: 1px solid rgba(100, 116, 139, 0.1);
        }

        .step {
            display: flex;
            margin-bottom: 32px;
            position: relative;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 36px;
            left: 18px;
            width: 2px;
            height: calc(100% + 16px);
            background-color: var(--primary);
            opacity: 0.2;
        }

        .step-number {
            background-color: var(--primary);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 1.125rem;
            box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
        }

        .step-content h3 {
            margin-bottom: 8px;
            color: var(--white);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .step-content p {
            color: var(--gray);
            margin-bottom: 12px;
        }

        .code-block {
            background-color: var(--darker);
            border-radius: 8px;
            padding: 16px;
            margin-top: 12px;
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            overflow-x: auto;
            color: var(--light);
            font-size: 0.875rem;
            line-height: 1.5;
            border: 1px solid rgba(100, 116, 139, 0.1);
        }

        .external-link {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .external-link:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        /* Connection Details */
        .connection-details {
            background-color: var(--darker);
            border-radius: 8px;
            padding: 20px;
            margin-top: 16px;
            border: 1px solid rgba(100, 116, 139, 0.1);
        }

        .connection-details h4 {
            font-size: 1rem;
            color: var(--white);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .connection-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
        }

        .connection-item {
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 12px;
            border: 1px solid rgba(100, 116, 139, 0.1);
            transition: all 0.3s ease;
        }

        .connection-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .connection-item h5 {
            font-size: 0.75rem;
            color: var(--gray);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .connection-item .value {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 700;
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .copy-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            padding: 2px 6px;
            cursor: pointer;
            font-size: 0.625rem;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background-color: var(--primary-dark);
        }

        .copy-btn.copied {
            background-color: var(--accent);
        }

        /* Community Section */
        .community {
            padding: 100px 0;
            background-color: var(--darker);
            text-align: center;
        }

        .community-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 48px;
        }

        .community-card {
            background-color: var(--light-gray);
            border-radius: 12px;
            padding: 32px;
            width: 280px;
            transition: all 0.3s ease;
            border: 1px solid rgba(100, 116, 139, 0.1);
            text-decoration: none;
            color: inherit;
        }

        .community-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .community-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 16px;
            display: inline-block;
        }

        .reddit-icon {
            color: #ff4500;
        }

        .github-icon {
            color: var(--white);
        }

        .community-card h3 {
            margin-bottom: 12px;
            color: var(--white);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .community-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            padding: 64px 0 32px;
            text-align: center;
            border-top: 1px solid rgba(100, 116, 139, 0.1);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 48px;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.02em;
        }

        .footer-logo-img {
            height: 42px;
            width: 42px;
            margin-right: 12px;
            border-radius: 10px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
        }

        .footer-logo-img:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 10px -1px rgba(37, 99, 235, 0.3);
        }

        .footer-links {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .copyright {
            color: var(--gray);
            font-size: 0.875rem;
            padding-top: 32px;
            border-top: 1px solid rgba(100, 116, 139, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--dark);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
            }

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

            .nav-links li {
                margin: 15px 0;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }

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

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

            .section-title h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .tech-grid {
                grid-template-columns: 1fr;
            }

            .connection-info {
                grid-template-columns: repeat(2, 1fr);
            }

            .community-links {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 32px;
            }
        }