#gradient-canvas {
  width: 100%;
  height: 100%;
  --gradient-color-1: #5a51eb;
  --gradient-color-2: #4F45E4;
  --gradient-color-3: #4439d6;
  --gradient-color-4: #3a30c7;
}

#gradient-canvas-2 {
  width: 100%;
  height: 100%;
  --gradient-color-1: #5a51eb;
  --gradient-color-2: #4F45E4;
  --gradient-color-3: #4439d6;
  --gradient-color-4: #3a30c7;
}
html { scroll-behavior: smooth; }
:root { --header-height-offset: 5rem; }
.scroll-target-section { scroll-margin-top: var(--header-height-offset); }
.feature-card {
  position: relative;
  overflow: hidden;
}

.category-link {
  position: relative;
}
.category-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.2s ease;
}
.category-link:hover::after {
  width: 100%;
}

.integration-card {
  transition: all 0.3s ease;
}
.integration-card:hover {
  transform: translateY(-4px);
}
.integration-card:hover .card-shadow-effect {
  opacity: 1;
}
.card-shadow-effect {
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 15px;
  background: rgba(79, 70, 229, 0.1);
  filter: blur(10px);
  border-radius: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.new-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  background: linear-gradient(135deg, #4F46E5, #818CF8);
  color: white;
  font-size: 10px;
  font-weight: 600;
  border-radius: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(79, 70, 229, 0.3);
  z-index: 10;
}