/* Custom styles extracted from <style> in index.html */
body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  color: #e2e2e2;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.glassmorphism {
  background: rgba(16, 16, 16, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gradient-text {
  background: linear-gradient(90deg, #4f46e5, #c026d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background-color: #4f46e5;
  border-radius: 10px;
  border: 2px solid #1a1a1a;
}
.lang-button.active {
  color: #c026d3;
  font-weight: 700;
}
.gallery-thumbnail.active {
  border-color: #4f46e5;
}
