@keyframes pulse-subtle {
    0%, 100% {
      opacity: 0.4;
    }
    50% {
      opacity: 0.6;
    }
  }
  
  .animate-pulse-subtle {
    animation: pulse-subtle 4s ease-in-out infinite;
  }
  
  :root {
    --background: 0 0% 100%;
    --foreground: 240 10% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 240 10% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 240 10% 3.9%;
    --primary: 240 5.9% 10%;
    --primary-foreground: 0 0% 98%;
    --secondary: 240 4.8% 95.9%;
    --secondary-foreground: 240 5.9% 10%;
    --muted: 240 4.8% 95.9%;
    --muted-foreground: 240 3.8% 46.1%;
    --accent: 240 4.8% 95.9%;
    --accent-foreground: 240 5.9% 10%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 240 5.9% 90%;
    --input: 240 5.9% 90%;
    --ring: 240 5.9% 10%;
    --radius: 0.5rem;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
  }
  
  .dark {
    --background: 240 10% 3.9%;
    --foreground: 0 0% 98%;
    --card: 240 10% 3.9%;
    --card-foreground: 0 0% 98%;
    --popover: 240 10% 3.9%;
    --popover-foreground: 0 0% 98%;
    --primary: 0 0% 98%;
    --primary-foreground: 240 5.9% 10%;
    --secondary: 240 3.7% 15.9%;
    --secondary-foreground: 0 0% 98%;
    --muted: 240 3.7% 15.9%;
    --muted-foreground: 240 5% 64.9%;
    --accent: 240 3.7% 15.9%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 240 3.7% 15.9%;
    --input: 240 3.7% 15.9%;
    --ring: 240 4.9% 83.9%;
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
  }
  
  body {
    background-color: #111;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: #111;
  }
  
  .bg-network {
    background-image: 
      radial-gradient(circle at 25% 25%, rgba(46, 143, 255, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(46, 143, 255, 0.2) 0%, transparent 50%),
      linear-gradient(to bottom right, rgba(46, 143, 255, 0.05) 0%, transparent 70%);
  }
  
  .bg-grid {
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
  }
  
  .bg-code {
    background-image: 
      linear-gradient(90deg, rgba(46, 143, 255, 0.1) 25%, transparent 25%),
      linear-gradient(rgba(46, 143, 255, 0.1) 25%, transparent 25%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
  }
  
  .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  
  @media (min-width: 1400px) {
    .container {
      max-width: 1400px;
    }
  }
  /* Section Navigation Dots */
.section-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.section-dot.active {
  background-color: #3b82f6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Product Cards Hover Effect */
.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion) {
  html {
    scroll-behavior: auto;
  }
}
/* ... existing code ... */

.project-media {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.desktop-image {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-image {
  display: none;
}

/* Show smaller images on mobile */
@media (max-width: 768px) {
  .desktop-image {
    display: none;
  }
  
  .mobile-image {
    display: block;
    width: 100%;
    height: auto;
  }
}

.development-notice {
  color: #ff6b6b;
  font-weight: 500;
  margin-top: 1rem;
}

/* ... existing code ... */