body {
  font-family: "Inter", sans-serif;
}
.skill-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.skill-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.section-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.lang-button.active {
  color: #22d3ee; /* text-cyan-400 */
}
