.language-switcher {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .language-switcher {
    top: 20px;
    right: 20px;
    padding: 6px 10px;
  }
}

.language-switcher .lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.language-switcher .lang-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.language-switcher .lang-btn.active {
  color: #ff6b9d;
  background: rgba(255, 107, 157, 0.2);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.language-switcher .lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 300;
  user-select: none;
}

@media (max-width: 768px) {
  .language-switcher .lang-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .language-switcher .lang-divider {
    font-size: 12px;
  }
}
