
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');
body {
  --lpb-pink: #ff69b4;
  --lpb-cyan: #00ffff;
  --lpb-purple: #9b59b6;
}
.lpb-profile-blocks-wrapper {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #0a0a0a;
}
html { scroll-behavior: smooth; }
.lpb-gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lpb-gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lpb-gallery-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}
