/* Language Switcher Styles */
.lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
  background: linear-gradient(90deg, rgba(55, 241, 255, 0.2), rgba(168, 85, 255, 0.2));
  border-color: #37f1ff;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lang-switcher {
    gap: 6px;
  }
  
  .lang-btn {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}
