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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .logo {
            position: absolute;
            top: 20px;
            left: 20px;
            height: 40px;
            width: auto;
            filter: brightness(0) invert(1);
            z-index: 1000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Floating elements */
        .floating-prompt {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1rem;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        .floating-prompt:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-prompt:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-prompt:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: #4338ca;
            color: white;
            box-shadow: 0 4px 15px rgba(67, 56, 202, 0.3);
        }

        .btn-primary:hover {
            background: #3730a3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 56, 202, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.9);
            color: #4338ca;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        .btn-primary-no-shadow {
            background: #4338ca;
            color: white;
        }

        .btn-primary-no-shadow:hover {
            background: #3730a3;
            transform: translateY(-2px);
        }

        .btn-secondary-no-shadow {
            background: rgba(255, 255, 255, 0.9);
            color: #4338ca;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary-no-shadow:hover {
            background: white;
            transform: translateY(-2px);
        }

        .top-buttons {
            padding: 20px 0;
            text-align: right;
        }

        .top-buttons-content {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }

        /* Hero Section */
        .hero {
            padding: 8rem 0 6rem;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .terminal-window {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 0;
            margin: 2rem auto 3rem;
            max-width: 600px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transform: perspective(1000px) rotateX(5deg);
        }

        .terminal-header {
            background: #2d2d2d;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .terminal-dot:nth-child(1) {
            background: #ff5f57;
        }

        .terminal-dot:nth-child(2) {
            background: #ffbd2e;
        }

        .terminal-dot:nth-child(3) {
            background: #28ca42;
        }

        .terminal-content {
            padding: 1.5rem;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.9rem;
            line-height: 1.6;
            color: #e5e7eb;
            overflow-x: auto;
        }

        .prompt-line {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            white-space: nowrap;
            overflow-x: auto;
        }

        @media (max-width: 768px) {
            .prompt-line {
                white-space: normal;
                align-items: flex-start;
                flex-wrap: wrap;
            }

            .command {
                text-align: left;
                word-break: break-all;
            }
        }

        .prompt {
            color: #60a5fa;
            margin-right: 0.5rem;
        }

        .command {
            color: #fbbf24;
        }

        .output {
            color: #10b981;
            margin-left: 0rem;
            display: flex;
        }

        .shell-comment {
            color: #9ca3af;
            margin-left: 0rem;
            display: flex;
        }

        .input {
            color: yellow
        }

        .github-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .github-badge:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.2);
        }

        .github-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.02em;
        }

        .hero h1 .highlight {
            color: black;
            text-shadow: none;
        }

        .hero h1 .highlight-2 {
            color: white;
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn-hero {
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 12px;
            font-weight: 700;
        }

        /* Works With section */
        .works-with {
            padding: 4rem 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            text-align: center;
        }

        .works-with-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #6b7280;
            margin-bottom: 3rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .claude-logo,
        .gemini-logo,
        .codex-logo {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 2.6rem;
            font-weight: 500;
            color: #0f0f0d;
        }

        .claude-logo:hover,
        .gemini-logo:hover,
        .codex-logo:hover {
            transform: scale(1.05);
        }

        /* Features section */
        .features {
            padding: 6rem 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
            backdrop-filter: blur(20px);
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        }

        .section-badge {
            display: inline-block;
            background: #4338ca;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: left;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #4338ca, #7c3aed);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(67, 56, 202, 0.15);
        }

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

        .feature-card p {
            color: #6b7280;
            line-height: 1.7;
            font-size: 1rem;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 650px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Installation section */
        .installation {
            padding: 6rem 0;
            background: #1f2937;
            color: white;
            position: relative;
        }

        .installation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .code-window {
            background: #111827;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        .code-header {
            background: #374151;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #d1d5db;
        }

        .code-content {
            padding: 2rem;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.95rem;
            line-height: 1.8;
            overflow-x: auto;
        }

        .code-line {
            display: block;
            margin-bottom: 0.5rem;
            white-space: nowrap;
        }

        .code-comment {
            color: #9ca3af;
        }

        .code-command {
            color: #60a5fa;
        }

        .code-output {
            color: #10b981;
        }

        .code-prompt {
            color: #f59e0b;
        }

        .installation-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
        }

        .installation-content p {
            font-size: 1.1rem;
            color: #d1d5db;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo {
                top: 15px;
                left: 15px;
                height: 32px;
            }

            .top-buttons {
                padding: 15px 0;
            }

            .top-buttons-content {
                gap: 0.5rem;
            }

            .top-buttons .btn {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                top: 10px;
                left: 10px;
                height: 24px;
            }

            .floating-prompt {
                display: none;
            }

            .top-buttons {
                padding: 10px 0;
            }

            .top-buttons-content {
                gap: 0.25rem;
            }

            .top-buttons .btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) and (min-width: 481px) {
            .floating-prompt:nth-child(1) {
                top: 25%;
                left: 5%;
            }
        }

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

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }

            .btn-hero {
                padding: 1rem 2rem;
                font-size: 1rem;
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

            .terminal-window {
                transform: none;
                margin: 1.5rem auto 2rem;
                max-width: 100%;
            }

            .terminal-content {
                padding: 1rem;
                font-size: 0.8rem;
            }

            .installation-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2.5rem;
            }

            .feature-card {
                padding: 2rem;
            }

            .hero {
                min-height: auto;
                padding: 3rem 0 2rem;
            }

            .section-title {
                font-size: 2.2rem;
                line-height: 1.3;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .installation-content h2 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .installation-content p {
                font-size: 1rem;
            }

            .code-content {
                padding: 1.5rem;
                font-size: 0.85rem;
            }

            .github-badge {
                margin-bottom: 1.5rem;
            }

            .logo-container {
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

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

            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .terminal-content {
                font-size: 0.75rem;
                padding: 0.75rem;
            }

            .code-content {
                font-size: 0.8rem;
                padding: 1rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .features-grid {
                gap: 1rem;
                margin-top: 2rem;
            }

            .installation-content h2 {
                font-size: 1.7rem;
            }

            .btn-hero {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        /* Code blocks with syntax highlighting - terminal window style */
        .highlight {
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            background: #1a1a1a;
            position: relative;
        }

        .highlight::before {
            content: '';
            display: block;
            background: #2d2d2d;
            padding: 0.75rem 1rem;
            background-image: radial-gradient(circle at 12px 50%, #ff5f57 6px, transparent 6px),
                              radial-gradient(circle at 32px 50%, #ffbd2e 6px, transparent 6px),
                              radial-gradient(circle at 52px 50%, #28ca42 6px, transparent 6px);
        }

        .highlight pre {
            margin: 0;
            padding: 1.5rem;
            overflow-x: auto;
            font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
            font-size: 0.9rem;
            line-height: 1.6;
            background: #1a1a1a;
        }

        .highlight code {
            font-family: inherit;
            font-size: inherit;
            background: none;
            padding: 0;
        }

        /* Inline code */
        :not(pre) > code {
            background: #f3f4f6;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
            font-size: 0.875em;
            color: #e11d48;
        }

        @media (max-width: 768px) {
            .highlight pre {
                padding: 1rem;
                font-size: 0.8rem;
            }
        }