/* Custom styles - Tailwind handles most of the styling via CDN */

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

/* Selection colors */
::selection {
  background-color: rgb(237 233 254);
  color: rgb(109 40 217);
}

/* Active nav link */
.nav-link.active {
  color: rgb(109 40 217);
  background-color: rgb(245 243 255);
}

.mobile-nav-link.active {
  color: rgb(109 40 217);
  background-color: rgb(245 243 255);
}

/* Smooth gradient blobs - fix banding */
.gradient-blob-1,
.gradient-blob-2,
.gradient-blob-3 {
  filter: blur(120px);
  /* Force hardware acceleration for smoother rendering */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
