
      /* Reset and Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #e2e8f0;
        background: #0f172a;
        overflow-x: hidden;
      }

      /* Navigation */
      .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #1e293b;
        z-index: 1000;
        padding: 1rem 0;
      }

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

      .logo-text {
        font-size: 1.5rem;
        font-weight: 800;
        color: #38bdf8;
        font-family: 'JetBrains Mono', monospace;
      }

      .nav-links {
        display: flex;
        gap: 2rem;
      }

      .nav-links a {
        color: #cbd5e1;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .nav-links a:hover {
        color: #38bdf8;
      }

      /* Hero Section */
      .hero {
        padding: 8rem 0 4rem;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
        pointer-events: none;
      }

      .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
      }

      .hero-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
      }

      .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
      }

      /* Table Styles */
      table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
        background: #1e293b;
        border-radius: 8px;
        overflow: hidden;
      }

      th, td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #334155;
      }

      th {
        background: #0f172a;
        color: #38bdf8;
        font-weight: 600;
      }

      tr:last-child td {
        border-bottom: none;
      }

      /* FAQ Grid */
      .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .faq-item {
        background: #1e293b;
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid #334155;
      }

      .faq-item h3 {
        color: #38bdf8;
        margin-bottom: 1rem;
        font-size: 1.25rem;
      }

      .faq-item p {
        color: #94a3b8;
      }

      /* Configuration Styles */
      #configuration ol {
        margin: 1rem 0 2rem 2rem;
        color: #cbd5e1;
      }

      #configuration li {
        margin-bottom: 0.5rem;
      }

      #configuration li code {
        background: #334155;
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.9em;
        color: #e2e8f0;
      }

      .highlight {
        background: linear-gradient(135deg, #38bdf8, #818cf8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero-subtitle {
        font-size: 1.25rem;
        color: #94a3b8;
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

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

      .btn {
        padding: 0.875rem 2rem;
        border-radius: 0.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        border: 2px solid transparent;
        cursor: pointer;
      }

      .btn-primary {
        background: linear-gradient(135deg, #38bdf8, #818cf8);
        color: white;
      }

      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
      }

      .btn-secondary {
        background: transparent;
        color: #38bdf8;
        border-color: #38bdf8;
      }

      .btn-secondary:hover {
        background: #38bdf8;
        color: #0f172a;
      }

      .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.125rem;
      }

      /* Terminal Demo */
      .hero-terminal {
        background: #1e293b;
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        max-width: 600px;
        margin: 0 auto;
        border: 1px solid #334155;
      }

      .terminal-header {
        background: #334155;
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .terminal-buttons {
        display: flex;
        gap: 0.5rem;
      }

      .terminal-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block;
      }

      .terminal-btn.close { background: #ef4444; }
      .terminal-btn.minimize { background: #f59e0b; }
      .terminal-btn.maximize { background: #10b981; }

      .terminal-title {
        color: #94a3b8;
        font-size: 0.875rem;
        font-weight: 500;
      }

      .terminal-body {
        padding: 1rem;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.875rem;
      }

      .terminal-line {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .prompt {
        color: #10b981;
        font-weight: 500;
      }

      .command {
        color: #38bdf8;
      }

      .output {
        color: #94a3b8;
      }

      /* Features Section */
      .features {
        padding: 5rem 0;
        background: #0f172a;
      }

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

      .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        color: #f8fafc;
      }

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

      .feature-card {
        background: #1e293b;
        padding: 2rem;
        border-radius: 0.75rem;
        border: 1px solid #334155;
        transition: all 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-5px);
        border-color: #38bdf8;
        box-shadow: 0 20px 40px rgba(56, 189, 248, 0.1);
      }

      .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }

      .feature-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #f8fafc;
      }

      .feature-card p {
        color: #94a3b8;
        line-height: 1.6;
      }

      /* Key Features Detail */
      .key-features {
        padding: 5rem 0;
        background: #1e293b;
      }

      .key-feature {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-bottom: 5rem;
      }

      .key-feature.reverse {
        direction: rtl;
      }

      .key-feature.reverse > * {
        direction: ltr;
      }

      .key-feature-content h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #f8fafc;
      }

      .key-feature-content p {
        font-size: 1.125rem;
        color: #94a3b8;
        margin-bottom: 2rem;
        line-height: 1.7;
      }

      .feature-demo {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .feature-demo code {
        background: #0f172a;
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        font-family: 'JetBrains Mono', monospace;
        color: #38bdf8;
        font-size: 0.875rem;
        border: 1px solid #334155;
      }

      .feature-demo span {
        color: #cbd5e1;
        font-size: 0.875rem;
      }

      .demo-terminal {
        background: #0f172a;
        border-radius: 0.75rem;
        padding: 1.5rem;
        border: 1px solid #334155;
      }

      .terminal-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        height: 200px;
      }

      .terminal-pane {
        background: #334155;
        border-radius: 0.375rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.875rem;
        border: 1px solid #475569;
      }

      .session-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .session-item {
        background: #334155;
        padding: 0.75rem 1rem;
        border-radius: 0.375rem;
        color: #94a3b8;
        font-family: 'JetBrains Mono', monospace;
        border: 1px solid #475569;
      }

      .session-item.active {
        background: #38bdf8;
        color: #0f172a;
        border-color: #38bdf8;
      }

      /* Installation Section */
      .installation {
        padding: 5rem 0;
        background: #0f172a;
      }

      .installation-methods {
        display: grid;
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
      }

      .install-method h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #f8fafc;
      }

      .code-block {
        position: relative;
        background: #1e293b;
        border-radius: 0.5rem;
        padding: 1rem;
        border: 1px solid #334155;
        font-family: 'JetBrains Mono', monospace;
        color: #38bdf8;
        overflow-x: auto;
      }

      .copy-btn {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        background: #334155;
        color: #94a3b8;
        border: none;
        padding: 0.375rem 0.75rem;
        border-radius: 0.375rem;
        font-size: 0.75rem;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .copy-btn:hover {
        background: #38bdf8;
        color: #0f172a;
      }

      /* Usage Section */
      .usage {
        padding: 5rem 0;
        background: #1e293b;
      }

      .usage-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }

      .usage-examples h3,
      .keybindings h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: #f8fafc;
      }

      .usage-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .usage-item h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #cbd5e1;
      }

      .keybindings p {
        color: #94a3b8;
        margin-bottom: 1.5rem;
      }

      .keybindings p code {
        background: #0f172a;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        color: #38bdf8;
        font-family: 'JetBrains Mono', monospace;
      }

      .keybindings-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .keybinding {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem;
        background: #0f172a;
        border-radius: 0.375rem;
        border: 1px solid #334155;
      }

      .key {
        background: #334155;
        padding: 0.375rem 0.75rem;
        border-radius: 0.25rem;
        font-family: 'JetBrains Mono', monospace;
        color: #38bdf8;
        font-size: 0.875rem;
      }

      .desc {
        color: #94a3b8;
        font-size: 0.875rem;
      }

      /* CTA Section */
      .cta {
        padding: 5rem 0;
        background: linear-gradient(135deg, #38bdf8, #818cf8);
        text-align: center;
      }

      .cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
      }

      .cta p {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
      }

      .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      .cta .btn-primary {
        background: white;
        color: #38bdf8;
      }

      .cta .btn-secondary {
        background: transparent;
        color: white;
        border-color: white;
      }

      .cta .btn-secondary:hover {
        background: white;
        color: #38bdf8;
      }

      /* Footer */
      .footer {
        background: #0f172a;
        padding: 3rem 0 1rem;
        border-top: 1px solid #1e293b;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer-section h4 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #f8fafc;
      }

      .footer-section p {
        color: #94a3b8;
        line-height: 1.6;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 0.5rem;
      }

      .footer-section ul li a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-section ul li a:hover {
        color: #38bdf8;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #1e293b;
        color: #64748b;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }

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

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

        .key-feature {
          grid-template-columns: 1fr;
        }

        .key-feature.reverse {
          direction: ltr;
        }

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

        .installation-methods {
          grid-template-columns: 1fr;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }

        .footer-content {
          grid-template-columns: 1fr;
          text-align: center;
        }
      }

      /* Smooth scrolling */
      html {
        scroll-behavior: smooth;
      }

      /* Animation States */
      .feature-card, 
      .key-feature, 
      .install-method {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .feature-card.visible, 
      .key-feature.visible, 
      .install-method.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Loading animation */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-content > * {
        animation: fadeInUp 0.8s ease-out;
      }

      .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
      .hero-content > *:nth-child(3) { animation-delay: 0.4s; }
      .hero-content > *:nth-child(4) { animation-delay: 0.6s; }
