/* Custom styles */
body {
  font-family: 'Inter', sans-serif;
}

/* Glowing effect for search bar on focus */
input:focus {
  box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #1e1b4b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6366f1;
}

/* Animation for decentralized network visualization */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-pulse-slow {
  animation: pulse 3s infinite;
}

/* Creator card hover effect */
.creator-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Custom range slider styling */
input[type=range] {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 5px;
  background: #1e1b4b;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #64ffda;
  cursor: pointer;
}

/* Gradient text */
.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, #64ffda, #6366f1);
}