.language-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-switch a {
  color: #333;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.025rem;
  font-size: 0.90em;
  font-weight: 200;
  padding: 4px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.language-switch a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.language-switch a.active {
  background: #FFD900;
  color: black;
} 
