@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import "tailwindcss";

@theme {
    --font-poppins: "Poppins", sans-serif;
}

body {
    @apply bg-black text-white text-sm font-poppins antialiased;
}

button {
    @apply cursor-pointer;
}
section.has-canvas { position: relative; }
section.has-canvas > * { position: relative; z-index: 1; }
section.has-canvas canvas.bg-canvas { z-index: 0; }

.nav-link {
  position: relative;
  color: #cbd5e1; /* slate-300 */
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active-link {
  color: #8b5cf6;
}

/* Underline effect */
.nav-link.active-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #8b5cf6;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(139,92,246,0.6);
}