@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* Custom Utility Classes */
.glass-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.rgb-glow {
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.rgb-border {
  position: relative;
  border-radius: inherit;
}

.rgb-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, #ff0000, #ff4444, #ff0000);
  background-size: 200% 200%;
  animation: rgb-move 3s linear infinite;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.5;
}

@keyframes rgb-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.text-gradient-red {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, #dc2626, #f87171);
  font-weight: bold;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #050505;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(220, 38, 38, 0.3);
  border-radius: 9999px;
  transition: background-color 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(220, 38, 38, 0.5);
}

/* Hide scrollbar for categories but keep functionality */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
