/* Particle background (on top of body, behind content) */
#vt-particles{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.vt-particle-overlay{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(70% 60% at 50% 0%, rgba(255,255,255,0.20), transparent 62%);
}

html[data-bs-theme="dark"] .vt-particle-overlay{
  background: radial-gradient(70% 60% at 50% 0%, rgba(255,255,255,0.12), transparent 62%);
}
