/* 语言切换器样式 - 对齐模板1 低调半透明设计 */
.language-switcher {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 6px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.language-switcher select {
  min-width: 120px;
  height: 36px;
  background: transparent;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}

.language-switcher select option {
  color: #111;
  background: #fff;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 15px;
    left: 15px;
    padding: 6px;
  }

  .language-switcher select {
    min-width: 110px;
    height: 38px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .language-switcher {
    top: 10px;
    left: 10px;
    padding: 4px;
  }

  .language-switcher select {
    min-width: 100px;
    height: 36px;
    font-size: 12px;
  }
}
