    :root {
      --primary: #3b82f6;
      --primary-dark: #2563eb;
      --primary-light: #60a5fa;
      --secondary: #7c3aed;
      --accent: #06b6d4;
      --dark: #0f172a;
      --darker: #020617;
      --light: #f8fafc;
      --gray: #64748b;
      --light-gray: #cbd5e1;
      --border: #334155;
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --radius: 8px;
      --transition: all 0.3s ease;
      --glow: 0 0 15px rgba(59, 130, 246, 0.5);
    }

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

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      background: var(--darker);
      color: var(--light);
      overflow-x: hidden;
    }

    /* Navigation */
    .navbar {
      background: rgba(15, 23, 42, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 1rem 0;
    }

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

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--light);
    }

    .logo-icon {
      background: var(--primary);
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      box-shadow: var(--glow);
    }

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

    .nav-link {
      color: var(--light-gray);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-light);
    }

    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .bar {
      width: 25px;
      height: 3px;
      background: var(--light);
      margin: 3px 0;
      transition: var(--transition);
      border-radius: 2px;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(124, 58, 237, 0.1));
      border-bottom: 1px solid var(--border);
      padding: 4rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(59,130,246,0.05)" d="M0,0 L100,100 M100,0 L0,100"></path></svg>');
      background-size: 100px 100px;
      opacity: 0.3;
    }

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

    h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      background: linear-gradient(to right, var(--primary-light), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      font-size: 1.25rem;
      color: var(--light-gray);
      margin-bottom: 1.5rem;
    }

    /* Main Content */
    .main-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

    .section {
      margin-bottom: 4rem;
    }

    /* Cards */
    .card {
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 2rem;
      transition: var(--transition);
    }

    .card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-lg);
    }

    .glow-card {
      box-shadow: var(--glow);
      border-color: var(--primary);
    }

    .card-header {
      padding: 1.5rem;
      border-bottom: 1px solid var(--border);
      background: rgba(30, 41, 59, 0.5);
    }

    .card-body {
      padding: 1.5rem;
    }

    /* Code Blocks */
    .code-container {
      position: relative;
      margin: 1.5rem 0;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .code-header {
      background: #1a1f2e;
      color: var(--light-gray);
      padding: 0.75rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      font-family: 'Fira Code', monospace;
    }

    .copy-btn {
      background: none;
      border: none;
      color: var(--light-gray);
      cursor: pointer;
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      transition: var(--transition);
    }

    .copy-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--light);
    }

    pre {
      background: #1e293b;
      color: #e2e8f0;
      padding: 1.5rem;
      overflow-x: auto;
      margin: 0;
      font-family: 'Fira Code', monospace;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    code {
      font-family: 'Fira Code', monospace;
      background: rgba(30, 41, 59, 0.7);
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      font-size: 0.9rem;
      color: var(--primary-light);
    }

    /* Import Badges */
    .import-badge {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: var(--primary);
      color: white;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .import-badge-secondary {
      background: var(--secondary);
    }

    .import-badge-accent {
      background: var(--accent);
    }

    /* Example Output */
    .example-output {
      background: rgba(30, 41, 59, 0.5);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-top: 1.5rem;
      min-height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary-light);
      border: 1px solid var(--primary);
    }

    .btn-outline:hover {
      background: rgba(59, 130, 246, 0.1);
      transform: translateY(-2px);
    }

    /* Example Grid */
    .example-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }

    .example-card {
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
    }

    .example-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }

    .example-card-header {
      padding: 1.25rem;
      border-bottom: 1px solid var(--border);
      background: rgba(30, 41, 59, 0.5);
    }

    .example-card-body {
      padding: 1.25rem;
    }

    /* Demo Elements */
    .demo-box {
      width: 100px;
      height: 100px;
      background: var(--primary);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      margin: 0 auto;
      transition: var(--transition);
    }

    .demo-flex {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }

    /* Footer */
    .footer {
      background: var(--dark);
      border-top: 1px solid var(--border);
      padding: 3rem 0 1.5rem;
      margin-top: 4rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .footer-section h4 {
      margin-bottom: 1rem;
      color: var(--light);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-weight: 700;
      font-size: 1.25rem;
    }

    .footer-links {
      list-style: none;
    }

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

    .footer-links a {
      color: var(--light-gray);
      text-decoration: none;
      transition: var(--transition);
    }

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

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1.5rem 1.5rem 0;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Feature Highlights */
    .feature-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .feature-highlight {
      background: rgba(30, 41, 59, 0.5);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
      transition: var(--transition);
    }

    .feature-highlight:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
      box-shadow: var(--glow);
    }

    /* Toggle Button for Code Examples */
    .toggle-btn {
      margin-left: 0.5rem;
      padding: 0.25rem 0.6rem;
      font-size: 0.8rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid var(--border);
      border-radius: 6px;
      cursor: pointer;
      color: var(--light-gray);
      transition: var(--transition);
    }
    
    .toggle-btn:hover { 
      background: rgba(255, 255, 255, 0.2); 
    }
    
    .hidden { 
      display: none; 
    }

    /* Recommended Badge */
    .recommended-badge {
      background: var(--success);
      color: white;
      padding: 0.3rem 0.7rem;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: bold;
      margin-left: 6px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    /* Alerts */
    .alert {
      padding: 1rem;
      border-radius: 0 var(--radius) var(--radius) 0;
      margin: 1.5rem 0;
      display: flex;
      gap: 12px;
    }

    .note {
      background: rgba(16, 185, 129, 0.1);
      border-left: 4px solid var(--success);
    }

    .warning {
      background: rgba(239, 68, 68, 0.1);
      border-left: 4px solid var(--danger);
    }

    /* File Structure */
    .file-structure {
      background: rgba(30, 41, 59, 0.7);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin: 1.5rem 0;
      font-family: 'Fira Code', monospace;
      font-size: 0.9rem;
    }

    .file-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      padding: 0.5rem;
      border-radius: 4px;
      transition: var(--transition);
    }

    .file-item:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .file-icon {
      color: var(--primary-light);
      width: 20px;
      text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 99;
      }

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

      .nav-toggle {
        display: flex;
      }

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

      .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }

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

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      .example-grid,
      .feature-highlights {
        grid-template-columns: 1fr;
      }
    }

    /* Scroll to top button */
    .scroll-btn {
      background: var(--primary);
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.5);
      opacity: 0.8;
      padding: 10px;
      width: 50px;
      height: 50px;
      position: fixed;
      z-index: 1900;
      right: 20px;
      bottom: 8em;
      animation: animate 1s ease infinite alternate, slideSUp 0.5s ease 1 forwards;
      color: #ddd;
      font-weight: bolder;
      display: none;
      cursor: pointer;
    }

    .scroll-btn.show {
      display: inline-block;
    }

    @keyframes animate {
      from {
        transform: translateY(3px);
      }
      to {
        transform: translateY(0);
      }
    }

    @keyframes slideSUp {
      from {
        bottom: -0.5em;
      }
      to {
        bottom: 8em;
      }
    }
